:root {
  /* Basisfarben */
  --yellow:    #ffd742;
 --pastel10:  rgba(255, 215, 66, 0.10);
  --pastel40:  rgba(255, 215, 66, 0.40);
  --bg-base:   rgba(255, 255, 255, 0.95);
  --black:     #222222;
  --white:     #ffffff;
  --corall: #f6e27f;
}

/* Reset & Basis */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--black);
}
.nav-logo {
  height: 32px;
}

/* Hero Section – Basis */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 5rem; /* Platz für Navbar */
  overflow: hidden;
  
  /* Statischer Verlauf: oben-links fast Weiß, unten-rechts volles Gelb */
  background-image: linear-gradient(
    135deg,
    var(--bg-base) 0%,
    var(--corall) 90%
  );
  background-repeat: no-repeat;
}

/* Desktop: Intro + Values gemeinsam etwas nach unten rücken */
@media (min-width: 768px) {
  .hero-section .container {
    padding-top: 25vh;
    padding-bottom: 10vh;
  }
}

/* Keyframes für Einfliegen */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(200px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animationsklassen */
.hero-text-left {
  display: inline-block;
  animation: slideInLeft 0.8s ease-out forwards;
}

.hero-text-right {
  display: inline-block;
  animation: slideInRight 0.8s ease-out forwards;
  animation-delay: 0.2s; /* minimal später */
}


/* Mobile: nur Intro mittig, Values danach im Flow */
@media (max-width: 767.98px) {
  /* Wrapper um Claim + Sub‑Claim + erster Pfeil */
  .hero-intro {
    height: calc(100vh - 5rem); /* Viewport minus Navbar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
  }

  /* erster Scroll‑Indicator am Fuß der Intro‑Box */
  .scroll-indicator--first {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: block !important;
    margin: 0;
  }

  /* Werte‑Boxen sichtbar und gestackt */
  .value-row {
    display: block !important;
    margin-top: 0;  /* da der Intro-Wrapper bereits zentriert */
  }
  .value-row .col-md-4 {
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 1.5rem;
  }

  /* zweiter Pfeil (Desktop) ausblenden */
  .scroll-indicator--second {
    display: none !important;
  }
}





/* Headline & Highlight */
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}
.hero-title .highlight {
  background-color: var(--black);
  color: var(--yellow);
  padding: 0.1em 0.2em;
  border-radius: 0.2em;
  display: inline-block;
  white-space: nowrap;
}

/* Lead‑Text */
.hero-lead {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--black);
}

/* Value‑Props: mehr Abstand auf Desktop */
.value-row {
  margin-top: 4rem;    /* Wert auf Desktop */
}
@media (max-width: 767.98px) {
  .value-row {
    display: block !important; 
  }
  .value-row .col-md-4 {
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 1.5rem;     
  }
}

/* Value‑Icons im Markenlook */
.value-box {
  background: transparent;
  padding: 1rem;
}
.fresh-icon {
  background: var(--black);
  color: var(--yellow);
  padding: 0.8rem;
  border-radius: 50%;
  border: 2px solid var(--black);
}

/* Scroll Indicator */
/* Basis */
.scroll-indicator {
  display: inline-block;
  font-size: 2rem;
  color: var(--black);
  transition: transform 0.3s;
}
.scroll-indicator:hover {
  transform: translateY(5px);
}
/* Bounce Animation */
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(10px); }
}
.scroll-indicator {
  animation: bounce 2s infinite;
}
/* Erster Indicator nur Mobile */
.scroll-indicator--first {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .scroll-indicator--first {
    display: none;
  }
}

.scroll-indicator--second {
  margin-top: 0rem;
}

@media (max-width: 767.98px) {
  .scroll-indicator--second {
    display: none;   /* mobile erst später per JS einblenden */
  }
}

/* Services Section (Referenz) */
.service-box {
  border: 2px solid var(--yellow);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Footer (unverändert) */
footer {
  font-size: 0.9rem;
}


/* Punkt 5: Services‑Kacheln mit Hintergrund, Box‑Shadow & Hover */
.service-box {
  background: rgba(255, 215, 66, 0.10);    /* leichter Zitronen‑Hintergrund */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* dezenter Schatten */
  border: none;                             /* alte Rahmen entfernen */
  border-radius: 8px;
  color: var(--black);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  padding: 1.5rem;                          /* ggf. anpassen */
}

.service-box p {
  margin-bottom: 1.5rem;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* kräftigerer Schatten */
}

/* Link „Jetzt anfragen“ */
.service-link {
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  color: var(--yellow);
  transition: text-decoration 0.2s;
}

.service-link:hover {
  text-decoration: underline;
}


/* Testimonial-Box */
.testimonial {
  background: rgba(255, 215, 66, 0.05);  /* dezenter Zitronenton */
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  font-style: italic;
  color: var(--black);
}

/* Blockquote Padding & Text */
.testimonial p {
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0;
}

/* Zitat-Angabe */
.testimonial footer {
  margin-top: 0.75rem;
}
.testimonial footer cite {
  font-style: normal;
  font-weight: 500;
  color: var(--black);
}

/* 7. Diagonaler Trenner */
.section-divider-diagonal {
  position: relative;
  width: 100%;
  height: 80px;                    /* Höhe nach Geschmack anpassen */
  background-color: #faf7ec;       /* neuer Hintergrund für Projekte */
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  margin-top: -1px;                /* kleine Überlappung, damit keine Lücke entsteht */
}

/* Projekte Section */
.projects-section {
  background-color: #faf7ec;
  padding-top: 3rem;               /* Abstand oben nach dem Divider */
  padding-bottom: 4rem;
}

/* Einheitlicher Lemon-Button */
.btn-lemony {
  background-color: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  border-radius: 0.25rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-lemony:hover,
.btn-lemony:focus {
  background-color: #e6c73f;
  color: var(--black);
  text-decoration: none;
  transform: translateY(-2px);
}

/* Preisbox Design */
.price-box {
  background: rgba(255, 215, 66, 0.08);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 500px;
}

/* Kontaktbereich */
.contact-section {
  background-color: #fff;
}
.contact-info p {
  margin: 0.25rem 0;
  font-size: 1rem;
}
.contact-info a {
  color: var(--black);
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}


/* Projekttitel & -text: auf Desktop linksbündig */
.projects-section .row .col-lg-6.text-lg-start {
  text-align: left !important;
}

@media (max-width: 991.98px) {
  /* unterhalb aller mockup‑Bilder in .projects-section Abstand */
  .projects-section img {
    margin-bottom: 1.5rem;
  }
}
/* ab lg entfällt der margin-bottom wieder */
@media (min-width: 992px) {
  .projects-section img {
    margin-bottom: 0;
  }
}

/* Basis-Trenner */
.section-divider-diagonal {
  width: 100%;
  overflow: hidden;
  line-height: 0;      /* entfernt Zufalls-Abstand */
}
.section-divider-diagonal svg {
  display: block;
  width: 100%;
  height: 4rem;        /* Höhe nach Belieben anpassen */
}

/* Modifier: umgedreht */
.section-divider-diagonal.section-divider-flip {
  transform: rotate(180deg);
}

/* Impressum Seite */
address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial { min-height: 180px; }
