* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
    Arial, sans-serif;
  background-color: #f5f5f5;
}


/* Loading Screen */
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(47, 68, 109) 0%, rgb(67, 88, 129) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  text-align: center;
}

.loader-logo {
  font-size: 72px;
  font-weight: bold;
  color: white;
  letter-spacing: 8px;
  margin-bottom: 30px;
  animation: fadeInScale 1s ease-in-out;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

.loader-text {
  color: white;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 0.9; }
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  z-index: 1000;
  transition: all 0.4s ease;
  border-radius: 0;
}

header.scrolled {
  background: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 20px 20px;
  padding: 15px 50px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  
}

header.scrolled .logo {
  color: rgb(47, 68, 109);
}

.logo a {
  position: relative;
  display: block;
  height: 50px;
}

.logo img {
  height: 30px;
  width: auto;
  transition: opacity 0.4s ease;
  position: absolute;
  left: 0;
  top: 10px;
}

.logo-white {
  opacity: 1;
}

.logo-blue {
  opacity: 0;
}

header.scrolled .logo-white {
  opacity: 0;
}

header.scrolled .logo-blue {
  opacity: 1;
}

.logo-placeholder {
  color: white;
  transition: color 0.4s ease;
}

header.scrolled .logo-placeholder {
  color: rgb(47, 68, 109);
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
}

nav a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

header.scrolled nav a {
  color: rgb(47, 68, 109);
}

nav a:hover {
  opacity: 0.7;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(58, 58, 58);
  font-size: 18px;
  transition: all 0.4s ease;
  text-decoration: none;
}

header.scrolled .social-icons a {
  background: rgb(47, 68, 109);
  color: white;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: rgb(255, 255, 255);
  transition: all 0.4s ease;
}

header.scrolled .menu-toggle span {
  background: rgb(47, 68, 109);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(108vh - 80px);
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url(img/Hero.webp);
  background-size: cover;
  background-position: center;
  border-radius: 0 0 50px 50px;
  clip-path: inset(0 0 0 0 round 0 0 50px 50px);
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.hero-content h1 {
  color: rgb(255, 255, 255);
  font-size: 64px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-content p {
  color: rgb(255, 255, 255);
  font-size: 18px;
  max-width: 800px;
  margin-top: 20px;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.hero-btn {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid white;
}

.hero-btn.primary {
  background: white;
  color: rgb(47, 68, 109);
}

.hero-btn.primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-btn.secondary {
  background: transparent;
  color: white;
}

.hero-btn.secondary:hover {
  background: white;
  color: rgb(47, 68, 109);
  transform: translateY(-3px);
}

/* About Section */
.about-section {
  background: #f5f5f5;
  padding: 100px 50px;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 600px;
  background: url(img/unternehmen.PNG) center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  filter: brightness(1.5); /* Bild wird heller, >1 = heller, <1 = dunkler */
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-badge {
  display: inline-block;
  border: 2px solid rgb(47, 68, 109);
  color: rgb(47, 68, 109);
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
  width: fit-content;
}

.about-content h2 {
  font-size: 48px;
  color: rgb(47, 68, 109);
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
}

.about-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Cards Section */
.services-section {
  background: #f5f5f5;
  padding: 80px 50px;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-intro {
  max-width: 500px;
  margin-bottom: 30px;
}

.services-intro h3 {
  font-size: 40px;
  color: rgb(47, 68, 109);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: 1.2;
}

.services-intro p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.services-intro .services-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: rgb(47, 68, 109);
  color: white;
  padding: 16px 12px; /* kürzer */
  border-radius: 35px 0 0 35px; /* links rund, rechts gerade */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease, border-width 0.3s ease 1s; /* rand verzögert */
}
/* hover bleibt */
.services-intro .services-button:hover {
  background: transparent;
  color: rgb(47, 68, 109) !important; /* text wird blau */
  border-color: rgb(47, 68, 109);
  border-width: 2px;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* verhindert lila text nach klick */
.services-intro .services-button:visited {
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.services-grid .services-intro {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.service-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.service-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.service-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.service-card:nth-child(6) {
  grid-column: 1;
  grid-row: 2;
}

.service-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  
  border-radius: 30px;
  transition: border-radius 0.5s ease;
  background: white;
}

.service-card:hover {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Restaurant Design Card - Bild immer sichtbar */
.service-card:nth-child(2) .service-card-bg {
  opacity: 1;
  background-image: url("img/wohn.jpg");
}

/* Andere Karten - Bild nur bei Hover */
.service-card:nth-child(6):hover .service-card-bg {
  opacity: 1;
  background-image: url("img/indu.webp");
}

.service-card:nth-child(3):hover .service-card-bg {
  opacity: 1;
  background-image: url("img/rest.webp");
}

.service-card:nth-child(4):hover .service-card-bg {
  opacity: 1;
  background-image: url("img/comm.webp");
}

.service-card:nth-child(5):hover .service-card-bg {
  opacity: 1;
  background-image: url("img/work.webp");
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  transition: all 0.5s ease;
}

.service-card:not(:nth-child(2)) .service-card-content {
  color: rgb(47, 68, 109);
}

.service-card:not(:nth-child(2)):hover .service-card-content {
  color: white;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: rgb(154, 111, 80); /* SVG Stroke */
}

.service-card:not(:nth-child(2)) .service-icon {
  filter: invert(21%) sepia(28%) saturate(1247%) hue-rotate(183deg)
    brightness(95%) contrast(90%);
}

.service-card:not(:nth-child(2)):hover .service-icon {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Karte 2: Symbol immer weiß */
.service-card:nth-child(2) .service-icon svg {
  stroke: white !important;
}

/* Awards Section */
.awards-section {
  background: rgb(150, 92, 54);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.awards-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.awards-title {
  text-align: center;
  margin-bottom: 20px;
}

.awards-title h2 {
  font-size: 36px;
  color: #2c2419;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.awards-title p {
  font-size: 15px;
  color: #3d2f1f;
  letter-spacing: 0.5px;
}

.awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
}

.award-item:hover {
  transform: translateY(-8px);
}

.award-icon {
  width: 250px;
  height: 120px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 15px;
  transition: all 0.3s ease;
}

.award-item:hover .award-icon {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.award-icon img {
  width: 110%;
  height: 110%;
  object-fit: contain;
}

.award-text h3 {
  font-size: 18px;
  color: #2c2419;
  font-weight: bold;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.award-text p {
  font-size: 14px;
  color: #4a3829;
  letter-spacing: 0.3px;
}

/* Portfolio Section */
.portfolio-section {
  background: #fff;
  padding: 80px 50px;
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  color: #2c3e50;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  height: 350px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-item-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-item-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-item-image::before {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.portfolio-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.portfolio-item h3 {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.portfolio-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.card1 { background-image: url("img/Card1.webp"); }
.card2 { background-image: url("img/Card2.webp"); }
.card3 { background-image: url("img/Card3.webp"); }
.card4 { background-image: url("img/Card4.webp"); }
.card5 { background-image: url("img/Card5.webp"); }
.card6 { background-image: url("img/Card6.webp"); }

.portfolio-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.portfolio-button {
  text-align: center;
  margin-top: 60px; /* kannst du anpassen */
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: rgb(47, 68, 109);
  color: white;
  padding: 16px 12px;
  border-radius: 35px; /* ✅ beidseitig rund */
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease, border-width 0.3s ease 1s;
}

/* Hover */
.portfolio-btn:hover {
  background: transparent;
  color: rgb(47, 68, 109) !important;
  border-color: rgb(47, 68, 109);
  border-width: 2px;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* verhindert lila nach klick */
.portfolio-btn:visited {
  color: white;
}

/* Team Section */
.team-section {
  background: #f5f5f5;
  padding: 80px 50px;
}

.team-container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 350px); /* feste Kartengröße */
  gap: 30px;
  justify-content: center; /* zentriert die Karten */
  max-width: 1500px;
  margin: 0 auto;
}

.team-member {
  width: 350px; /* feste Breite jeder Karte */
  background: white;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-member-image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background-position: center; /* zentriert das Bild */
  background-size: cover; /* Bild füllt den Bereich, ohne das Seitenverhältnis zu verzerren */
  background-repeat: no-repeat; /* verhindert Kacheln */
   filter: brightness(1.3); /* Bild wird heller, >1 = heller, <1 = dunkler */
}

/* individuelle Bilder für jede Karte */
.team-member-image.ibrahim {
  background-image: url('img/ka1.jpeg');
}

.team-member-image.khaled {
  background-image: url('img/ka2.png');
}

.team-member-image.aymen {
  background-image: url('img/ka3.png');
}

.team-member-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.team-member-info {
  padding: 25px;
}

.team-member-info h3 {
  font-size: 22px;
  color: #2c3e50;
  font-weight: bold;
  margin-bottom: 5px;
}

.team-member-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-social a:hover {
  background: #2c3e50;
  color: white;
  transform: translateY(-3px);
}

/* Contact Section */
.contact-section {
  background: #2c3e50;
  padding: 80px 50px;
  color: white;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-item-large {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-item-large:last-child {
  margin-bottom: 0;
}

.contact-icon-large {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.contact-icon-large i {
  font-size: 50px;
  color: white;
}

.contact-text-large h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 8px;
  opacity: 0.9;
  line-height: 1.4;
}

.contact-text-large p {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.contact-text-large a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-text-large a:hover {
  opacity: 0.8;
}

/* Footer */
footer {
  background: rgb(150, 92, 54);
  color: white;
  padding: 60px 50px 30px;
  border-radius: 50px 50px 0 0;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: white;
  color: rgb(150, 92, 54);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.7;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  header {
    padding: 20px 30px;
  }

  header.scrolled {
    padding: 15px 30px;
  }

  nav ul {
    gap: 25px;
  }

  nav a {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    height: 400px;
  }

  .about-content h2 {
    font-size: 40px;
  }

  .services-container {
    grid-template-columns: 1fr;
  }

  .services-intro {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .services-row-top,
  .services-row-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-item-large {
    margin-bottom: 35px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  header.scrolled {
    padding: 12px 20px;
  }

  .menu-toggle {
    display: flex;
    order: 3;
  }

  .logo {
    order: 1;
  }

  nav {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(58, 58, 58, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease;
    order: 4;
    z-index: 999;
  }

  header.scrolled nav {
    background: rgba(255, 255, 255, 0.98);
  }

  header.scrolled nav a {
    color: rgb(47, 68, 109);
  }

  nav.active {
    left: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  nav a {
    font-size: 20px;
  }

  .social-icons {
    order: 2;
    gap: 10px;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .hero-content h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about-section {
    padding: 60px 20px;
  }

  .about-image {
    height: 350px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 16px;
  }

  .services-section,
  .awards-section,
  .portfolio-section,
  .team-section,
  .contact-section,
  footer {
    padding: 60px 20px 30px;
  }

  footer {
    border-radius: 30px 30px 0 0;
  }

  .contact-item-large {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .contact-icon-large {
    width: 60px;
    height: 60px;
  }

  .contact-icon-large i {
    font-size: 40px;
  }

  .contact-text-large h3 {
    font-size: 14px;
  }

  .contact-text-large p {
    font-size: 22px;
  }

  .services-row-top,
  .services-row-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 40px;
  }

  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-background {
    border-radius: 0 0 30px 30px;
  }

  .about-image {
    height: 300px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .contact-text-large h3 {
    font-size: 13px;
  }

  .contact-text-large p {
    font-size: 18px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: rgb(47, 68, 109);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: white;
  color: rgb(47, 68, 109);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Mobile Anpassung Whatsapp*/
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
  padding: 25px 50px;
  z-index: 10000;
  transform: translateY(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-size: 20px;
  color: rgb(47, 68, 109);
  margin-bottom: 10px;
  font-weight: bold;
}

.cookie-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.cookie-text a {
  color: rgb(47, 68, 109);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-text a:hover {
  opacity: 0.7;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  border: 2px solid rgb(47, 68, 109);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: rgb(47, 68, 109);
  color: white;
}

.cookie-btn.accept:hover {
  background: rgb(37, 58, 99);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(47, 68, 109, 0.3);
}

.cookie-btn.decline {
  background: transparent;
  color: rgb(47, 68, 109);
}

.cookie-btn.decline:hover {
  background: rgba(47, 68, 109, 0.1);
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-text h3 {
    font-size: 18px;
  }

  .cookie-text p {
    font-size: 13px;
  }
}