@charset "UTF-8";
:root{
  --bg:#ffffff;
  --tint:#f4fbf6;
  --ink:#122016;
  --muted:rgba(18,32,22,.70);
  --line:rgba(18,32,22,.10);

  --sun:#f6cd57;
  --leaf:#1f8f46;

  --header-offset: 160px;
  --r:18px;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --max:1160px;
}


*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.mailstatus{
  margin: 14px 0 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
}
.mailstatus__title{ font-weight: 900; margin-bottom: 4px; }
.mailstatus__text{ color: var(--muted); font-weight: 600; line-height: 1.6; }
.mailstatus--ok{ border-color: rgba(31,143,70,.22); }
.mailstatus--err{ border-color: rgba(170,40,35,.22); }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}
#home, #willkommen, #ankommen, #angebote, #verein, #kontakt, #anfahrt{
  scroll-margin-top: var(--header-offset);
}

h1{
  margin:14px 0 10px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: -.8px;
}
h2{
  margin:0;
  font-size: clamp(26px, 2.7vw, 36px);
  letter-spacing: -.4px;
}

/* Accessibility helper */
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* ===== COOKIE BANNER (FIXED + ALWAYS ON TOP) ===== */
.cookie{
  position:fixed;
  inset:0;
  display:grid;
  place-items:end center;
  padding:16px;
  background:rgba(10,20,18,.35);
  backdrop-filter:saturate(120%) blur(4px);
  z-index:12000; /* higher than intro */
}
.cookie[hidden]{ display:none !important; }

.cookie__card{
  width:min(720px,100%);
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
  padding:16px;
}
.cookie__title{ font-weight:900; font-size:16px; margin-bottom:6px; }
.cookie__text{
  margin:0 0 12px;
  color:rgba(0,0,0,.72);
  line-height:1.45;
  font-weight:600;
}
.cookie__actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.cookie__links{
  margin-top:10px;
  font-size:13px;
  color:rgba(0,0,0,.72);
}
.cookie__links a{ opacity:.85; text-decoration:underline; }

.linklike{
  background:none;
  border:0;
  padding:0;
  color:inherit;
  cursor:pointer;
  text-decoration:underline;
  font:inherit;
}

/* ===== MAP GATING ===== */
.map{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  background:#f6f7f7;
}
.map__frame{
  width:100%;
  height:100%;
  min-height:320px;
  border:0;
  display:block;
}
.map__placeholder{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  padding:16px;
}
.map__placeholderInner{
  max-width:420px;
  text-align:center;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}
.map.is-active .map__placeholder{ display:none; }

/* ===== INTRO ===== */
.intro{
  position:fixed;
  inset:0;
  z-index:11000; /* below cookie, but cookie appears after intro anyway */
  display:grid;
  place-items:center;
  background:#fff;
  opacity:1;
}
.intro__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 25%, rgba(246,205,87,.26), transparent 62%),
    radial-gradient(900px 520px at 80% 75%, rgba(31,143,70,.12), transparent 62%),
    linear-gradient(180deg, #fff, #fbfbff);
}
.intro__card{
  position:relative;
  width:min(520px, calc(100% - 36px));
  padding:26px 22px 22px;
  border-radius:22px;
  border:1px solid rgba(18,32,22,.10);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
  text-align:center;
  backdrop-filter: blur(10px);
  animation: introIn .7s ease both;
}
.intro__logo{
  width:148px;
  margin:0 auto 10px;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.10));
  animation: float 1.25s ease-in-out infinite;
}
.intro__name{ font-weight:900; letter-spacing:-.2px; }
.intro__claim{ color:var(--muted); font-weight:800; font-size:13px; margin-top:4px; }
.intro__bar{
  height:3px;
  border-radius:999px;
  width:160px;
  margin:14px auto 0;
  background: linear-gradient(90deg, rgba(31,143,70,.55), rgba(246,205,87,.75));
  animation: bar 1.8s ease-in-out infinite;
}
.intro.is-hidden{
  opacity:0;
  pointer-events:none;
  transition: opacity .5s ease;
}

@keyframes introIn{ from{opacity:0; transform: translateY(10px) scale(.99);} to{opacity:1; transform:none;} }
@keyframes float{ 0%,100%{transform:translateY(0);} 50%{transform:translateY(-3px);} }
@keyframes bar{ 0%,100%{transform:scaleX(.92);} 50%{transform:scaleX(1);} }

/* ===== HEADER ===== */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  text-align: center;
  align-items:center;
  gap:14px;
}
.brand__logo{ width:200px; }
.brand__name{ font-weight:900; letter-spacing:-.2px; }
.brand__claim{ color:var(--muted); font-weight:800; font-size:12px; margin-top:2px; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  padding:10px 12px;
  border-radius:12px;
  color: rgba(18,32,22,.72);
  font-weight:800;
}
.nav a:hover{ background: rgba(31,143,70,.06); color: var(--ink); }
.nav__chip{
  background: rgba(246,205,87,.28);
  border:1px solid rgba(246,205,87,.36);
}

.burger{
  display:none;
  border:0;
  background:transparent;
  padding:10px;
  cursor:pointer;
}
.burger span{
  display:block;
  width:22px;
  height:2px;
  background:var(--ink);
  margin:4px 0;
  border-radius:99px;
}
.navMobile{
  display:none;
  padding:12px 0 18px;
  border-top:1px solid var(--line);
}
.navMobile a{
  display:block;
  padding:12px 0;
  font-weight:800;
  color: rgba(18,32,22,.72);
}
.navMobile.is-open{ display:block; }

/* ===== HERO ===== */
.hero{
  position:relative;
  min-height:78vh;
  overflow:hidden;
  display:flex;
  align-items:stretch;
}
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter: brightness(1.18) saturate(.92);
  transform: scale(1.03);
}
.hero__wash{
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    radial-gradient(900px 560px at 20% 30%, rgba(246,205,87,.14), transparent 62%),
    radial-gradient(900px 560px at 80% 70%, rgba(31,143,70,.08), transparent 62%);
}
.hero__inner{
  position:relative; z-index:2;
  padding:58px 0 48px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:center;
}

.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  font-weight:900;
  color: rgba(18,32,22,.70);
}

.lead{
  margin:0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
  max-width: 64ch;
}

.cta{ display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
}
.btn--primary{
  background: linear-gradient(135deg, rgba(246,205,87,1), rgba(246,205,87,.72));
  border-color: rgba(246,205,87,.70);
  color:#171309;
}
.btn--ghost{
  background: rgba(255,255,255,.74);
  border-color: rgba(18,32,22,.14);
  color: rgba(18,32,22,.80);
}

.scroll{
  position:absolute; left:50%; bottom:14px;
  transform: translateX(-50%);
  width:38px; height:38px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.70);
  display:grid;
  place-items:center;
  z-index:3;
}
.scroll span{
  width:10px; height:10px;
  border-right:2px solid rgba(18,32,22,.60);
  border-bottom:2px solid rgba(18,32,22,.60);
  transform: rotate(45deg);
  animation: bounce 1.3s ease-in-out infinite;
}
@keyframes bounce{
  0%,100%{ transform: rotate(45deg) translate(0,0); }
  50%{ transform: rotate(45deg) translate(0,3px); }
}

/* ===== SECTIONS ===== */
section[id]{
  scroll-margin-top: var(--header-offset);
}
.section{ padding:76px 0; }
.section--tint{
  background: linear-gradient(180deg, var(--tint), #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.narrow{ max-width: 820px; }

.block p{ color: var(--muted); font-weight:600; line-height:1.75; }

.frame{
  border-radius: calc(var(--r) + 6px);
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
}
.frame--soft{ background: rgba(255,255,255,.84); }
/* Foto größer machen */
/* Foto größer machen */




/* Noch breiter auf großen Screens */
@media (min-width: 992px){
  .details__body .frame{
    max-width: 1200px;
  }
}
.fit{
  width:100%;
  height:100%;
  object-fit: cover;
  filter: brightness(1.05) saturate(.92);
}
.fit.top{ object-position: 50% 15%; }
.fit.center{ object-position: 50% 50%; }

.hero__photo .frame img{ height: 440px; }

/* Mini */
.mini{
  margin-top:18px;
  display:grid;
  gap:12px;
}
.mini__item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px 14px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
}
.mini__item span{
  width:10px;
  height:10px;
  margin-top:6px;
  border-radius:999px;
  background: var(--leaf);
  box-shadow: 0 0 0 6px rgba(31,143,70,.10);
}

/* Lists */
.list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 600;
}
.list li{ margin: 8px 0; }

/* Gallery rail */
.rail{
  margin-top:14px;
  display:flex;
  gap:12px;
  overflow:auto;
  padding-bottom:6px;
  scroll-snap-type: x mandatory;
}
.rail__item{
  flex: 0 0 min(420px, 85vw);
  scroll-snap-align: start;
  border-radius: calc(var(--r) + 6px);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
  margin:0;
}
.rail__item img{ height: 280px; }

/* Quotes */
.quote{
  position: relative;
  margin: 16px 0 0;
  padding: 16px 16px 16px 18px;
  border-radius: 16px;
  border-left: 4px solid rgba(31,143,70,.55);
  background: rgba(31,143,70,.06);
  border: 1px solid rgba(18,32,22,.10);
  color: rgba(18,32,22,.78);
  font-weight: 650;
  line-height: 1.65;
  font-style: italic;
  box-shadow: var(--shadow);
}
.quote::before{
  content: "“";
  position:absolute;
  left: 12px;
  top: -8px;
  font-size: 54px;
  line-height: 1;
  color: rgba(246,205,87,.55);
  font-style: normal;
}

/* Details */
.details{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.details summary{
  cursor:pointer;
  list-style:none;
  padding:14px 14px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-weight:900;
}
.details > summary::marker{ content:""; }
.details > summary::-webkit-details-marker{ display:none; }
.details__body{
  padding: 0 14px 14px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}




.details_o{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.details_o summary{
  cursor:pointer;
  list-style:none;
  padding:14px 14px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-weight:900;
}
.details_o > summary::marker{ content:""; }
.details_o > summary::-webkit-details-marker{ display:none; }
.details_o__body{
  padding: 0 14px 14px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.75;
}






/* Cards + KV */
.card{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  padding:18px;
}
.card__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.kv{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 14px;
}
.kv__k{ font-weight: 900; color: rgba(18,32,22,.58); }
.kv__v{ font-weight: 800; color: rgba(18,32,22,.72); }

/* Form */
.form{ margin-top: 10px; }
.form label{ display:block; font-weight: 900; margin: 12px 0 8px; }
.form input, .form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.95);
  font: inherit;
}
.form input:focus, .form textarea:focus{
  outline:none;
  border-color: rgba(31,143,70,.28);
  box-shadow: 0 0 0 4px rgba(31,143,70,.10);
}
.row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.stack{ display:grid; gap:12px; }

.mt{ margin-top: 14px; }
.muted{ color: var(--muted); font-weight: 600; }

/* Anker offset */
.anchor{
  position: relative;
  top: -88px;
  height: 0;
}

/* Divider */
.divider{
  height:1px;
  background: rgba(18,32,22,.10);
  margin: 16px 0;
  border-radius: 999px;
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
}
.footer__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:12px;
  color: rgba(18,32,22,.72);
  font-weight: 800;
}
.footer__links{
  justify-self: end;
  display:flex;
  gap:10px;
  align-items:center;
}
.footer__made{
  justify-self:center;
  font-weight:800;
  font-size:13px;
  letter-spacing:.1px;
  white-space:nowrap;
}
.heart{
  display:inline-block;
  margin:0 4px;
  transform: translateY(1px);
  color: var(--sun);
  text-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* Simple content pages (Impressum/Datenschutz) */
.page{
  padding:72px 0;
}
.page .card{
  max-width: 900px;
  margin: 0 auto;
}
.page h1{
  font-size: clamp(28px, 3.2vw, 42px);
}
.page p, .page li{
  color: var(--muted);
  font-weight:600;
  line-height:1.75;
}
.page ul{ padding-left: 18px; }

/* Responsive */
@media (max-width: 980px){
  :root{ --header-offset: 72px; }
  .split{ grid-template-columns: 1fr; }
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__photo .frame img{ height: 320px; }

  .nav{ display:none; }
  /* Mobile-Menü: links/rechts Luft + Safe Area */
  .navMobile{
    padding: 12px calc(20px + env(safe-area-inset-right))
             18px calc(20px + env(safe-area-inset-left));
  }
  .details {
    display: block;
  }
  .details:not([open]) > summary ~ * {
    display: block;
  }
  .details > summary {
    /* optional: Cursor/Styling */
    cursor: pointer;
  }
  /* Erzwingt den "offen"-Zustand visuell */
  .details > summary ~ * {
    display: block;
  }
  .navMobile a{
    padding: 12px 0;          /* vertikal bleibt, horizontal kommt vom Container */
    margin: 0;
  }
  /* Mobile Header: Logo mittig, Burger rechts */
  .header__inner{
    position: relative;
    justify-content: center;
  }
  .brand__text{ display:none; }
  .brand__logo{ width: 180px !important;  }
  .burger{
    display:block;
    position:absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .footer__inner{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer__links{ justify-self: center; }
  .footer__made{ white-space: normal; }

  .cookie__actions{ justify-content: stretch; }
  .cookie__actions .btn{ width:100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .intro__logo, .intro__bar, .scroll span{ animation:none !important; }
  .intro.is-hidden{ transition:none; }
}
