/* Waldcamping Homberg – Stylesheet
   Farben orientieren sich an der bisherigen Website:
   Salbeigrün als Hintergrund, Weiß für Inhalte, Blau für Navigation & Akzente */
:root{
  --sage:#b7be9e;
  --sage-light:#d9dfc5;
  --sage-tint:#f4f6ec;
  --sage-dark:#929e68;
  --green:#616946;
  --green-deep:#313523;
  --blue:#4ba0cc;
  --blue-dark:#327188;
  --blue-deep:#193944;
  --blue-light:#bce1ee;
  --paper:#ffffff;
  --text:#2a2a2a;
  --muted:#5d5d5d;
  --line:#e2e6d4;
  --radius:12px;
  --shadow:0 8px 28px rgba(49,53,35,.18);
  --font-head:"Lora",Georgia,"Times New Roman",serif;
  --font-body:"Source Sans 3","Segoe UI",Helvetica,Arial,sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:var(--sage);color:var(--text);
  font-family:var(--font-body);font-size:17px;line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--blue-dark)}
a:hover{color:var(--blue-deep)}
h1,h2,h3,h4{font-family:var(--font-head);color:var(--green-deep);line-height:1.2;margin:0 0 .6em;font-weight:600}
h2{font-size:2rem}
h3{font-size:1.3rem}
p{margin:0 0 1em}
.wrap{max-width:1120px;margin:0 auto;padding:0 20px}
.skip-link{position:absolute;left:-999px;top:0;background:#fff;padding:8px 12px;z-index:100}
.skip-link:focus{left:8px;top:8px}

/* ---------- Header ---------- */
.site-header{background:var(--paper);position:sticky;top:0;z-index:50;border-bottom:4px solid var(--blue);box-shadow:0 2px 10px rgba(0,0,0,.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:76px;position:relative}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:inherit;min-width:0}
.brand svg{flex:none}
.brand-name{font-family:var(--font-head);font-size:1.25rem;font-weight:700;color:var(--green-deep);line-height:1.1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}
.brand-sub{display:block;font-size:.8rem;color:var(--muted);letter-spacing:.02em}
.site-nav ul{list-style:none;margin:0;padding:0;display:flex;gap:4px;align-items:center}
.site-nav a{display:block;padding:.55rem .9rem;border-radius:8px;text-decoration:none;font-weight:600;color:var(--blue-dark);white-space:nowrap}
.site-nav a:hover{background:var(--blue-light);color:var(--blue-deep)}
.site-nav a.active{background:var(--blue);color:#fff}
.phone-btn{display:inline-flex;align-items:center;gap:8px;padding:.5rem .95rem;border:2px solid var(--blue);border-radius:999px;color:var(--blue-dark);font-weight:700;text-decoration:none;white-space:nowrap}
.phone-btn:hover{background:var(--blue);color:#fff}
.phone-btn svg{width:18px;height:18px}
.header-right{display:flex;align-items:center;gap:12px}
.nav-toggle{display:none;background:none;border:2px solid var(--blue);border-radius:8px;padding:6px 10px;cursor:pointer;color:var(--blue-dark)}
.nav-toggle span{display:block;width:22px;height:3px;background:currentColor;margin:4px 0;border-radius:2px}

/* ---------- Seite ---------- */
main.page{max-width:1120px;margin:28px auto;background:var(--paper);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden}
.section{padding:60px 48px}
.section.alt{background:var(--sage-tint)}
.section.tight{padding-top:36px;padding-bottom:36px}
.section-title{position:relative;padding-bottom:14px;margin-bottom:28px}
.section-title::after{content:"";position:absolute;left:0;bottom:0;width:60px;height:4px;background:var(--blue);border-radius:2px}
.section-title.center{text-align:center}
.section-title.center::after{left:50%;transform:translateX(-50%)}
.lead{font-size:1.2rem;color:var(--muted)}
.center{text-align:center}
.narrow{max-width:760px;margin-left:auto;margin-right:auto}

/* ---------- Hero ---------- */
.hero{position:relative;min-height:480px;display:grid;place-items:center;text-align:center;color:#fff;background-size:cover;background-position:center;padding:60px 24px;isolation:isolate}
.hero::before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(25,57,68,.25) 0%,rgba(49,53,35,.6) 100%);z-index:-1}
.hero h1{color:#fff;font-size:clamp(2rem,4.6vw,3.4rem);text-shadow:0 2px 14px rgba(0,0,0,.45);margin-bottom:.4em}
.hero p{font-size:clamp(1.05rem,1.8vw,1.35rem);text-shadow:0 1px 8px rgba(0,0,0,.5);max-width:720px;margin:0 auto 1.4em}
.hero.small{min-height:300px}
.hero.small h1{font-size:clamp(1.8rem,3.8vw,2.8rem)}
.hero.small p{margin-bottom:0}
.hero-actions{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* ---------- Buttons ---------- */
.btn{display:inline-block;padding:.75rem 1.5rem;border-radius:999px;background:var(--blue);color:#fff;font-weight:700;text-decoration:none;border:2px solid var(--blue);cursor:pointer;font-family:inherit;font-size:1rem;transition:background .15s,color .15s}
.btn:hover{background:var(--blue-dark);border-color:var(--blue-dark);color:#fff}
.btn.ghost{background:transparent;border-color:#fff;color:#fff}
.btn.ghost:hover{background:#fff;color:var(--blue-deep)}
.btn.outline{background:transparent;color:var(--blue-dark)}
.btn.outline:hover{background:var(--blue);color:#fff}

/* ---------- Layout-Bausteine ---------- */
.cols{display:grid;grid-template-columns:1.15fr 1fr;gap:44px;align-items:center}
.cols.reverse>*:first-child{order:2}
.cols img,.rounded{border-radius:var(--radius);box-shadow:var(--shadow)}
.cols img{width:100%;aspect-ratio:4/3;object-fit:cover}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.card{margin:0;background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:0 4px 18px rgba(49,53,35,.12);border:1px solid var(--line)}
.card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.card figcaption,.card .card-body{padding:16px 18px}
.card h3{font-size:1.15rem;margin-bottom:.3em}
.card p{margin:0;color:var(--muted);font-size:.98rem}
a.card{text-decoration:none;color:inherit;display:block;transition:transform .15s,box-shadow .15s}
a.card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
a.card .more{color:var(--blue-dark);font-weight:700;display:inline-block;margin-top:8px}
.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:12px 30px;list-style:none;margin:0;padding:0}
.features li{display:flex;gap:12px;align-items:flex-start;padding:10px 0;border-bottom:1px solid var(--line);font-size:1.05rem}
.features svg{flex:none;width:24px;height:24px;margin-top:3px}
.highlight{display:grid;grid-template-columns:1fr 1fr;align-items:stretch}
.highlight img{width:100%;height:100%;object-fit:cover;min-height:320px}
.highlight-text{padding:56px 48px;background:var(--green);color:#fff;display:flex;flex-direction:column;justify-content:center}
.highlight-text h2{color:#fff}
.highlight-text p{color:#eef0e4}
.highlight-text .btn{align-self:flex-start;background:#fff;color:var(--green-deep);border-color:#fff}
.highlight-text .btn:hover{background:var(--sage-light);border-color:var(--sage-light);color:var(--green-deep)}
.badge-row{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 0}
.badge{background:var(--blue-light);color:var(--blue-deep);padding:6px 14px;border-radius:999px;font-weight:600;font-size:.95rem}
.link-list{list-style:none;padding:0;margin:0;display:grid;gap:12px}
.link-list a{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:14px 18px;background:#fff;border:1px solid var(--line);border-radius:10px;text-decoration:none;font-weight:600;color:var(--blue-dark)}
.link-list a:hover{border-color:var(--blue);background:var(--blue-light)}
.link-list small{color:var(--muted);font-weight:400}

/* ---------- Preise ---------- */
.price-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:28px}
.price-card{background:var(--sage-tint);border-radius:var(--radius);padding:28px 30px;border-top:6px solid var(--blue)}
.price-card.green{border-top-color:var(--sage-dark)}
.price-card h3{margin-bottom:.2em}
.price-card .sub{color:var(--muted);margin-bottom:1em;font-size:.95rem}
.price-table{width:100%;border-collapse:collapse}
.price-table td{padding:10px 0;border-bottom:1px solid var(--line);vertical-align:top}
.price-table td:last-child{text-align:right;font-weight:700;color:var(--blue-dark);white-space:nowrap}
.price-table tr:last-child td{border-bottom:none}
.price-card ul{padding-left:1.2em;margin:.4em 0}
.price-card li{margin:.35em 0}

/* ---------- Zeitleiste ---------- */
.timeline{list-style:none;margin:0;padding:0;border-left:3px solid var(--blue-light)}
.timeline li{position:relative;padding:0 0 26px 30px}
.timeline li::before{content:"";position:absolute;left:-10px;top:6px;width:16px;height:16px;border-radius:50%;background:var(--blue);border:3px solid #fff;box-shadow:0 0 0 2px var(--blue-light)}
.timeline .year{display:block;font-family:var(--font-head);font-weight:700;color:var(--blue-dark);font-size:1.15rem}
.figure{margin:0}
.figure img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius);box-shadow:var(--shadow)}
.figure figcaption{font-size:.9rem;color:var(--muted);margin-top:8px;text-align:center}
.figure-row{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}

/* ---------- Galerie ---------- */
.gallery{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));grid-auto-rows:210px;grid-auto-flow:dense;gap:12px}
.gallery a{display:block;overflow:hidden;border-radius:10px;background:var(--sage-light)}
.gallery a img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.gallery a:hover img{transform:scale(1.04)}
.gallery a.tall{grid-row:span 2}
.gallery a.wide{grid-column:span 2}
.lightbox{position:fixed;inset:0;background:rgba(20,20,20,.92);display:none;align-items:center;justify-content:center;z-index:200;padding:20px;margin:0}
.lightbox.open{display:flex}
.lightbox img{max-width:min(1200px,94vw);max-height:86vh;border-radius:8px;box-shadow:0 10px 40px rgba(0,0,0,.6)}
.lightbox figcaption{position:absolute;bottom:18px;left:0;right:0;text-align:center;color:#ddd;font-size:.95rem}
.lightbox button{position:absolute;background:rgba(255,255,255,.12);border:none;color:#fff;font-size:2rem;width:52px;height:52px;border-radius:50%;cursor:pointer;line-height:1}
.lightbox button:hover{background:rgba(255,255,255,.28)}
.lightbox .lb-close{top:18px;right:18px}
.lightbox .lb-prev{left:18px;top:50%;transform:translateY(-50%)}
.lightbox .lb-next{right:18px;top:50%;transform:translateY(-50%)}

/* ---------- Kontakt ---------- */
.contact-list{list-style:none;padding:0;margin:0 0 1.5em}
.contact-list li{display:flex;gap:14px;align-items:flex-start;padding:12px 0;border-bottom:1px solid var(--line)}
.contact-list svg{flex:none;width:26px;height:26px;color:var(--blue)}
.contact-list strong{display:block;color:var(--green-deep)}
.contact-list a{text-decoration:none;font-weight:600}
.contact-list a:hover{text-decoration:underline}
.form{background:var(--sage-tint);padding:28px;border-radius:var(--radius);border-top:6px solid var(--blue)}
.form label{display:block;font-weight:600;margin:14px 0 6px;color:var(--green-deep)}
.form input,.form textarea{width:100%;padding:11px 13px;border:1px solid #c5cbb2;border-radius:8px;font:inherit;background:#fff}
.form input:focus,.form textarea:focus{outline:2px solid var(--blue);border-color:var(--blue)}
.form textarea{min-height:140px;resize:vertical}
.form .btn{margin-top:18px}
.form .hint{font-size:.9rem;color:var(--muted);margin-top:12px}
.form .success{display:none;margin-top:14px;padding:12px 14px;background:var(--blue-light);border-radius:8px;color:var(--blue-deep);font-weight:600}
.map-box{position:relative;border-radius:var(--radius);overflow:hidden;background:var(--sage-light);min-height:380px;display:grid;place-items:center;text-align:center;padding:30px}
.map-box iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.map-box p{max-width:460px;color:var(--green-deep)}
.route{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:start}

/* ---------- Rechtstexte ---------- */
.prose{max-width:800px}
.prose h2{font-size:1.45rem;margin-top:2em}
.prose h3{font-size:1.15rem;margin-top:1.6em}
.prose p,.prose li{line-height:1.7}
.prose a{word-break:break-all}

/* ---------- Footer ---------- */
.site-footer{background:var(--green);color:#fff;margin-top:28px}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:36px;padding:50px 0 34px}
.site-footer h3{color:#fff;font-size:1.15rem;margin-bottom:.7em}
.site-footer p{margin:0 0 .5em;color:#e9ecdd}
.site-footer a{color:#fff}
.site-footer ul{list-style:none;padding:0;margin:0}
.site-footer li{margin:.35em 0}
.footer-bottom{border-top:1px solid rgba(255,255,255,.2);padding:16px 0;font-size:.9rem;color:#d7dcc6;display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px}
.insta{display:inline-flex;align-items:center;gap:8px;font-weight:600}
.insta svg{width:22px;height:22px}

/* ---------- Responsiv ---------- */
@media (max-width:1180px){
  .brand-sub{display:none}
  .site-nav a{padding:.5rem .65rem}
  .phone-btn .label{display:none}
}
@media (max-width:980px){
  .cards,.figure-row{grid-template-columns:repeat(2,1fr)}
  .section{padding:48px 32px}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:860px){
  .site-nav{display:none;position:absolute;left:0;right:0;top:100%;background:#fff;border-bottom:4px solid var(--blue);box-shadow:0 10px 24px rgba(0,0,0,.12)}
  .site-nav.open{display:block}
  .site-nav ul{flex-direction:column;align-items:stretch;padding:10px 16px 16px;gap:2px}
  .site-nav a{padding:.8rem 1rem}
  .nav-toggle{display:block}
  .phone-btn .label{display:none}
  .cols,.cols.reverse{grid-template-columns:1fr;gap:26px}
  .cols.reverse>*:first-child{order:0}
  .highlight,.route{grid-template-columns:1fr}
  .highlight-text{padding:40px 32px}
  main.page{margin:16px 12px;border-radius:10px}
}
@media (max-width:600px){
  body{font-size:16px}
  .section{padding:38px 22px}
  h2{font-size:1.6rem}
  .cards,.figure-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;gap:26px}
  .gallery{grid-template-columns:repeat(2,1fr);grid-auto-rows:150px}
  .gallery a.wide{grid-column:span 2}
  .hero{min-height:400px}
  .brand-sub{display:none}
  .wrap{padding:0 16px}
  .header-inner{gap:8px;min-height:64px}
  .brand{gap:8px}
  .brand svg{width:36px;height:36px}
  .brand-name{font-size:1.05rem}
  .header-right{gap:8px}
  .phone-btn{padding:.4rem .6rem}
}
