/* =========================================
   Scrollbar unsichtbar (weiterhin scrollbar)
========================================= */
body::-webkit-scrollbar { display: none; }
body {
  scrollbar-width: none;           /* Firefox */
  -ms-overflow-style: none;        /* IE/Edge Legacy */
}


/* =========================================
   Google Fonts
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol&family=Kalnia:wght@100..700&display=swap');


/* =========================================
   GLOBAL
========================================= */
html, body {
  margin: 0;
  height: 100%;
  background: #23380B;
  font-family: "Kaisei Decol", serif;
  overflow-x: hidden;              /* keine horizontale Scrollbar */
}


/* =========================================
   NAVBAR
   (Optik wie gehabt, feste Höhe für 100vh-Logik)
========================================= */
.navbar {
  background: #FDF6E7;
  margin: 20px 40px;               /* Abstand oben/unten + Seiten */
  padding: 15px 30px;
  border-radius: 25px;
  font-family: "Kalnia", serif;
  position: relative;
  z-index: 5;
  height: 60px;                    /* feste Höhe für exakte Header-Berechnung */
  display: grid;
  align-items: center;             /* Inhalte vertikal mittig in der Navbar */
}

.navbar nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;  /* links – logo – rechts */
  align-items: center;
}

.navbar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}

.navbar nav ul li a {
  display: block;
  padding: 8px 18px;
  background: #23380B;
  color: #FDF6E7;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 23px;
  transition: .3s;
}
.navbar nav ul li a:hover { background: #4c662d; }

.nav-left  { display: flex; gap: 40px; justify-content: flex-start; }
.nav-right { display: flex; gap: 40px; justify-content: flex-end; }

.logo { text-align: center; }
.logo img {
  height: 60px;
  display: block;
  margin: 0 auto;
}


/* =========================================
   HEADER
   (Navbar + Header zusammen 100vh)
   Navbar-Block: 20px (top margin) + 90px (height) + 20px (bottom margin) = 130px
========================================= */
.header {
  margin: 0 40px;                          /* gleicher Seitenabstand wie Navbar */
  margin-top: 40px;
  height: calc(100vh - 170px);             /* EXAKTE Höhe statt min-height */
  overflow: hidden;                        /* verhindert Überlauf */
}


.header-inner {
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

/* ---------- Linke Spalte: Copy ---------- */
.hero-copy {
  padding-top: 120px;           /* Text nach unten schieben */
  color: #FDF6E7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
}

.hero-copy h1 {
  margin: 0;
  font-size: 82px;                        /* groß und präsent */
  line-height: 1.04;
  letter-spacing: .2px;
}

.hero-copy p {
  margin: 0;
  max-width: 760px;                       /* angenehme Zeilenlänge */
  font-size: 25px;                        /* größer für mehr Präsenz */
  line-height: 1.7;
  color: rgba(253,246,231,.92);
}

/* Button (kompakter, aber sichtbar) */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Kalnia", serif;
  font-weight: 700;
  font-size: 30px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: #FDF6E7;
  color: #23380B;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}


/* ---------- Rechte Spalte: Bild ---------- */
.hero-media {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.hero-media img {
  height: 750px;                 /* füllt exakt den Header */            /* Sicherheitsnetz */
  width: 900px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}

/* ===== SECTION: ABOUT (wie im Screenshot) ===== */
.about{
  margin: 60px 40px; 
  margin-bottom: 100px;              /* gleicher Seitenabstand wie Navbar/Header */
}

.about-inner{
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;  /* links Bild etwas breiter */
  align-items: center;
  gap: 40px;
  padding: 40px;                          /* innen Luft */
  background: #23380B;                    /* dunkles Grün wie Seite */
  border-radius: 28px;                    /* große Rundung wie im Shot */
}

/* Linkes Bild, groß & rund */
.about-media img{
  width: 100%;
  height: 520px;                          /* bei Bedarf anpassen */
  object-fit: cover;
  border-radius: 28px;                    /* starke Rundung */
  display: block;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

/* Rechter Textblock – groß, ruhig, gut lesbar */
.about-copy{
  color: #FDF6E7;
  text-align: center;                     /* wie im Screenshot zentriert */
  padding: 10px 20px;
}

.about-copy h2{
  margin: 0 0 24px 0;
  font-size: 68px;                        /* groß wie im Shot */
  line-height: 1.06;
  letter-spacing: .2px;
  font-weight: 600;
}

.about-copy p{
  margin: 0;
  font-size: 26px;                        /* langer, gut lesbarer Absatz */
  line-height: 1.7;
  color: rgba(253,246,231,.92);
}

/* ===== GALLERY PREVIEW ===== */

/* Gesamtlayout: links der Titelstreifen, rechts der weiße Kasten */
.gallery-preview{
  display: grid;
  grid-template-columns: 80px 1fr;   /* 80px Titel, Rest Card */
  align-items: stretch;
  gap: 24px;
  margin: 60px 0 60px 40px; 
  margin-bottom: 75px;         /* links 40px wie Navbar/Seite, rechts 0 → berührt Rand */
}

/* Linker, vertikaler Titel – außerhalb der Card */
.gallery-title-outside{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 18px;
  color: #FDF6E7;
  font-family: "Kalnia", serif;
  font-weight: 600;
  font-size: 70px;
  letter-spacing: .05em;
}

/* Weißer Kasten rechts, berührt Fensterkante rechts */
.gallery-card{
  background: #FDF6E7;
  border-radius: 28px 0 0 28px;      /* rechts ohne Radius, damit es „anliegt“ */
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr auto;   /* Bilder | Button */
  align-items: center;
  gap: 28px;
}

/* Zwei Bilder nebeneinander im Card-Inhalt */
.gallery-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.gallery-images img{
  width: 100%;
  height: 600px;                     /* gern anpassen */
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

/* Rechter Pfeil-Button – hochwertig */
.gallery-cta{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #23380B;
  gap: 10px;
  padding-right: 6px;                /* optische Balance zur Kantenlinie */
}

.gallery-cta .cta-icon{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #23380B;               /* dunkelgrün */
  color: #FDF6E7;                    /* Pfeil weiß */
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 2px solid rgba(35,56,11,.3);
}
.gallery-cta:hover .cta-icon{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
  background: #2c4713;               /* leicht heller beim Hover */
}

.gallery-cta .cta-text{
  font-family: "Kaisei Decol", serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #23380B;
  text-transform: uppercase;         /* „MEHR“ */
}



/* ===== BEWERTUNGEN / TESTIMONIALS ===== */
.testimonials{
  margin: 60px 40px;                /* gleiche Seitenflucht wie bei dir */
}

.testimonials-inner{
  background: transparent;              /* Creme wie bei deinen Cards */
  border-radius: 28px;
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  border: 1px solid rgba(35,56,11,.08);  /* dezente Kante */
}

/* einzelne Karte */
.t-card{
  background: #FDF6E7; /* leichte Aufhellung in der Card */
  border: 1px solid rgba(35,56,11,.06);
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto; /* Sterne | Zitat | Person */
  gap: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* Sterne – einfach editierbar */
.t-stars{
  font-size: 22px;
  letter-spacing: 3px;
  color: #4c662d;                   /* Akzentgrün aus deiner Navbar-Hover */
  font-family: "Kalnia", serif;
}

/* Zitat */
.t-quote{
  margin: 0;
  color: #23380B;
  font-size: 20px;
  line-height: 1.6;
}

/* Person / Avatar */
.t-meta{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.t-avatar{
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #23380B;
  color: #FDF6E7;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: "Kalnia", serif;
  box-shadow: 0 6px 12px rgba(0,0,0,.15);
}

.t-person{ display: grid; }
.t-person strong{
  color: #23380B;
  font-weight: 700;
  font-family: "Kalnia", serif;
  font-size: 16px;
  line-height: 1.2;
}
.t-person span{
  color: rgba(35,56,11,.75);
  font-size: 13px;
}



/* ===== FOOTER ===== */
.footer {
  margin: 60px 40px 0;
  background: #FDF6E7;
  border-radius: 28px;
  padding: 50px 40px 30px;
  color: #23380B;
  font-family: "Kaisei Decol", serif;
  margin-bottom: 25px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

/* Spalten */
.footer-col h3 {
  margin-bottom: 16px;
  font-family: "Kalnia", serif;
  font-size: 20px;
  font-weight: 700;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 16px;
  color: #23380B;
  line-height: 1.6;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

/* Hover-Effekt für Links */
.footer-col a:hover {
  text-decoration: underline;
}

/* Untere Leiste */
.footer-bottom {
  border-top: 1px solid rgba(35,56,11,.15);
  padding-top: 18px;
  text-align: center;
  font-size: 14px;
  color: rgba(35,56,11,.8);
}

.footer-bottom a {
  font-weight: 600;
  color: #23380B;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}



/* ===========================
   MOBILE MENU – EDEL / SMOOTH
=========================== */

/* Dropdown-Card */
.mobile-menu{
  display: grid;
  gap: 12px;
  position: absolute;
  left: 12px; 
  right: 12px;
  top: calc(100% + 10px);
  padding: 16px;
  background: rgba(253,246,231,0.92);            /* Creme mit Transparenz */
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(35,56,11,.12);
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
  z-index: 100;
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

/* Einzelne Links als „Row Cards“ */
.mobile-menu a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(35,56,11,.10);
  color: #23380B;
  text-decoration: none;
  font-weight: 700;
  font-family: "Kalnia", serif;
  font-size: 18px;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}
.mobile-menu a::after{
  content: "›";                                     /* kleiner Pfeil nach rechts */
  font-size: 22px;
  line-height: 1;
  opacity: .75;
}
.mobile-menu a:hover{
  transform: translateX(4px);
  background: #23380B;
  color: #FDF6E7;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}

/* Sichtbar-Status */
.mobile-menu.open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Dunkles Overlay hinter dem Dropdown */
.mobile-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 90;                                      /* unter dem Menü, über Seite */
}
.mobile-overlay.open{
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger-Button etwas edler */
.hamburger{
  display: none;                                     /* wird im Breakpoint sichtbar */
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(35,56,11,.08);
  cursor: pointer;
}
.hamburger span{
  display: block;
  height: 2px; width: 22px;
  background: #23380B;
  margin: 6px auto;
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* Breakpoint: Desktop-Listen weg, Burger/Dropdown aktiv */
@media (max-width: 820px){
  .hamburger{ display: block !important; }

  .navbar{
    height: auto;
    margin: 12px 16px;
    padding: 10px 14px 14px;
    position: relative;
  }
  .navbar nav{
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  /* Desktop-Links ausblenden (hart) */
  .navbar nav ul, .nav-left, .nav-right{ display: none !important; }

  /* Logo mittig */
  .logo{ order: -1; text-align: center; }
  .logo img{ height: 44px; }
}





/* ===========================
   HEADER responsive
=========================== */
@media (max-width: 1100px) {
  .header { margin: 20px 24px 0; /* optional: */ /* height: calc(100vh - 100px); */ }
  .header-inner { gap: 16px; }
  .hero-copy { padding-top: 80px; gap: 28px; }
  .hero-copy h1 { font-size: 64px; }
  .hero-copy p  { font-size: 22px; max-width: 700px; }
  .btn { font-size: 22px; padding: 12px 20px; margin-bottom: 20px; }
  .hero-media img { border-radius: 24px; }
}

@media (max-width: 780px) {
  .header { margin: 16px 16px 0; height: auto; overflow: visible; }
  .header-inner {
    grid-template-columns: 1fr;   /* untereinander */
    gap: 16px;
  }
  .hero-copy { padding-top: 20px; gap: 20px; }
  .hero-copy h1 { font-size: 40px; line-height: 1.15; }
  .hero-copy p  { font-size: 18px; max-width: 100%; }
  .btn { font-size: 18px; padding: 12px 18px; }
  .hero-media { justify-content: center; }
  .hero-media img {
    width: 100%;
    height: 52vh;                 /* angenehme mobile Höhe */
    max-height: 480px;
    object-fit: cover;
    border-radius: 20px;
  }
}

/* ===========================
   ABOUT responsive
=========================== */
@media (max-width: 1100px) {
  .about { margin: 40px 24px 80px; }
  .about-inner { gap: 24px; padding: 28px; }
  .about-copy h2 { font-size: 52px; }
  .about-copy p  { font-size: 20px; }
  .about-media img { height: 460px; border-radius: 24px; }
}

@media (max-width: 780px) {
  .about { margin: 32px 16px 72px; }
  .about-inner {
    grid-template-columns: 1fr;   /* Bild über Text */
    gap: 16px;
    padding: 20px;
    border-radius: 20px;
  }
  .about-media img { height: 320px; border-radius: 18px; }
  .about-copy { text-align: left; padding: 0 4px; }
  .about-copy h2 { font-size: 36px; margin-bottom: 12px; }
  .about-copy p  { font-size: 17px; line-height: 1.65; }
}

/* ===========================
   GALLERY PREVIEW responsive
=========================== */
@media (max-width: 1100px) {
  .gallery-preview { margin: 48px 0 56px 24px; }
  .gallery-title-outside { font-size: 56px; gap: 18px; }
  .gallery-card { padding: 28px; gap: 20px; }
  .gallery-images img { height: 420px; border-radius: 24px; }
  .gallery-cta .cta-icon { width: 64px; height: 64px; }
}

@media (max-width: 780px) {
  .gallery-preview {
    grid-template-columns: 1fr;     /* Titel oben, Card darunter */
    margin: 40px 16px 56px;
    gap: 12px;
  }
  .gallery-title-outside {
    flex-direction: row;            /* „BILDER“ horizontal auf Mobile */
    justify-content: center;
    font-size: 28px;
    gap: 8px;
    padding-top: 0;
  }
  .gallery-card {
    border-radius: 20px;
    padding: 18px;
    grid-template-columns: 1fr;     /* Bilder oben, Button unten */
    gap: 16px;
  }
  .gallery-images {
    grid-template-columns: 1fr;     /* Bilder untereinander */
    gap: 12px;
  }
  .gallery-images img { height: 240px; border-radius: 16px; }
  .gallery-cta { padding-right: 0; }
  .gallery-cta .cta-icon { width: 56px; height: 56px; }
  .gallery-cta .cta-text { font-size: 14px; }
}

/* ===========================
   TESTIMONIALS responsive
=========================== */
@media (max-width: 1100px) {
  .testimonials { margin: 48px 24px; }
  .testimonials-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 28px;
    border-radius: 22px;
  }
  .t-card { border-radius: 18px; padding: 20px; }
  .t-quote { font-size: 18px; }
}

@media (max-width: 780px) {
  .testimonials { margin: 40px 16px; }
  .testimonials-inner { grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .t-card { padding: 16px; }
  .t-stars { font-size: 18px; }
  .t-quote { font-size: 16px; line-height: 1.6; }
}

/* ===========================
   FOOTER responsive
=========================== */
@media (max-width: 1100px) {
  .footer { margin: 48px 24px 0; padding: 36px 28px 24px; border-radius: 22px; }
  .footer-inner { gap: 24px; }
}

@media (max-width: 780px) {
  .footer { margin: 40px 16px 0; padding: 24px 18px 18px; border-radius: 18px; margin-bottom: 25px;}
  .footer-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-col h3 { font-size: 18px; margin-bottom: 10px; }
  .footer-col p, .footer-col li, .footer-col a { font-size: 15px; }
  .footer-bottom { padding-top: 12px; font-size: 13px;}
}





