:root{
  --green:#0b6b3a;
  --text:#1e1f21;
  --muted:#5a5f66;
  --bg:#ffffff;

  --max: 1120px;
  --gutter: 24px;

  --shadow: 0 14px 40px rgba(0,0,0,.14);

  --h2: clamp(26px, 3.4vw, 42px);
  --h1: clamp(22px, 3vw, 36px);
  
  --scroll-offset: 180px; /* ≈ Headerhöhe, bei Bedarf anpassen */
}

/* Museo Moderno (Headlines/Logo) */
@font-face{
  font-family:"Museo Moderno";
  src:url("assets/fonts/MuseoModerno-Regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

/* Poppins (Body) */
@font-face{
  font-family:"Poppins";
  src:url("assets/fonts/Poppins-Regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Poppins";
  src:url("assets/fonts/Poppins-Medium.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Poppins";
  src:url("assets/fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}


:root{
  --font-head:"Museo Moderno", system-ui, sans-serif;
  --font-body:"Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
h1,h2,h3{ font-family: var(--font-head); }
body{ font-family: var(--font-body); }


html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline:auto;
}

.no-scroll {
  overflow: hidden;
  padding-right: var(--scrollbar-width);
}

.skip{ position:absolute; left:-999px; top:0; }
.skip:focus{
  left:12px; top:12px;
  background:#fff; padding:10px 12px;
  border:2px solid var(--green);
  z-index:999;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:space-between;
  padding:5px 0;
}
.brand-logo{ height:200px; width:auto; }

/* Language switch */
.lang-switch{
  display:flex;
  gap:10px;
  align-items:center;
}
.lang-btn{
  border:0;
  background:transparent;
  cursor:pointer;
  font-weight:900;
  letter-spacing:.8px;
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
}
.lang-btn.is-active{
  color:var(--green);
  background: rgba(11,107,58,.08);
}
.lang-btn--overlay{
  color:#fff;
  background: rgba(255,255,255,.12);
}
.lang-btn--overlay.is-active{
  color: var(--green);
  background: #fff;
}

/* Burger */
.burger{
  width:52px; height:52px;
  border:0; background:transparent;
  cursor:pointer;
  display:grid;
  place-content:center;
  gap:5px;
}
.burger span{
  width:22px; height:2px;
  background:var(--green);
  border-radius:3px;
}

/* Hero */
.hero{ position:relative; }
.hero-media{
  height: clamp(240px, 42vw, 420px);
  overflow:hidden;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-bar{
  background:var(--green);
  color:#fff;
  padding:22px 0;
}
.hero-bar h1{
  margin:0;
  font-weight:800;
  font-size: var(--h1);
  text-align:center;
  letter-spacing:.2px;
}

/* Sections */
.section{ padding:68px 0; }
.section h2{
  margin:0 0 22px 0;
  color:var(--green);
  font-size: var(--h2);
  letter-spacing:.2px;
}

/* About */
.section-about{ padding-bottom: 54px; 
  position: relative;
  overflow: hidden; 
}

.about-grid{
  display:grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap:34px;
  align-items:start;
}

.about-text p{
  margin:0 0 14px 0;
  color:var(--muted);
  max-width: 62ch;
  font-size:14px;
}

.about-images{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:0px;
  align-items:start;
  min-height: 360px;
  overflow: visible;
}
.img-card{ margin:0; overflow:hidden; }
.img-card img{
  width:100%;
  height: 250px;
  object-fit:cover;
}
.img-card--a{ transform: translateY(36px); }
.img-card--b{ transform: translateY(78px); }

/* Products */
.section-products{ padding-top: 40px; }
.products-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 46px;
}
.product-title{
  display:flex;
  align-items:center;
  gap:10px;
}
.product-item h3{
  margin:0;
  font-size:15px;
  color:var(--green);
  font-weight:800;
}
.product-item p{
  margin:8px 0 0 28px;
  color:var(--muted);
  font-size:13px;
  max-width:62ch;
}

/* leaf icon */
.leaf{
  width:20px; height:20px;
  background: var(--green);
  border-radius: 999px 0 999px 0;
  transform: rotate(-25deg);
  display:inline-block;
  flex:0 0 auto;
}
.leaf--invert{ background:#fff; }

/* Band */
.section-band{ padding: 24px 0 80px; }
.band{
  position:relative;
  height: clamp(260px, 36vw, 460px);
  overflow:hidden;
}
.band img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Contact */
.section-contact{ padding-top: 18px; }
.contact-wrap h2{
  text-align:center;
  margin-bottom:26px;
  line-height:1.05;
}
.contact-grid{ display:grid; place-items:center; }
.contact-block{
  width: min(520px, 100%);
  color:var(--muted);
}
.contact-name{
  color:var(--green);
  font-weight:900;
  margin:0 0 10px 0;
}
.contact-block a{ color:var(--muted); text-decoration:none; }
.contact-block a:hover{ text-decoration:underline; }

/* contact form group styling */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: .25rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.form-group textarea { resize: vertical; min-height: 120px; }

.social{ display:flex; gap:12px; margin-top:16px; }
.social-btn{
  width:44px; height:44px;
  border-radius:999px;
  background:var(--green);
  color: #fff ! Important;
  display:grid; place-items:center;
  text-decoration:none;
  font-weight:900;
  font-size: 30px;
}
.social-btn--invert{ background:#fff; color:var(--green) ! Important; }

/* Gallery + footer on green */
.section-gallery{
  background: var(--green);
  padding: 44px 0 0;
}
.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:22px;
  padding-bottom:0px;
}
.gallery-img{ margin:0; overflow:hidden; }
.gallery-img img{
  width:100%;
  height: clamp(220px, 22vw, 340px);
  object-fit:cover;
}

.footer-mark{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  padding: 52px 0 26px;
}
.footer-logo{ height:120px; width:auto; }
.footer-links{
  display:flex;
  gap:18px;
  opacity:.92;
}
.linklike{
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
  letter-spacing:.7px;
  text-transform:uppercase;
  font-size:11px;
}
.linklike:hover{ text-decoration:underline; }



.overlay-panel{
  position:absolute;
  right:0; top:0;
  height:100%;
  width: min(520px, 92vw);
  background: var(--green);
  color:#fff;
  padding: 28px 28px;
  box-shadow: var(--shadow);
}
.overlay-close{
  position:absolute;
  right:16px; top:14px;
  border:0; background:transparent;
  color:#fff;
  font-size:26px;
  cursor:pointer;
}
.overlay-brand{ margin-top:18px; }
.overlay-brand img{ height:92px; width:auto; }

.overlay-nav{
  margin-top:42px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.overlay-link{
  color:#fff;
  text-decoration:none;
  font-size:20px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:14px;
}
.overlay-link:hover{ text-decoration:underline; }

.overlay-lang{
  display:flex;
  gap:12px;
  margin-top: 26px;
}

.overlay-social{ display:flex; gap:14px; margin-top:22px; }

/* temporarily hide social media buttons until channels are active */
.social,
.overlay-social {
  display: none !important;
}

/* Legal overlay (centered) */
.overlay-panel--legal{
  width: min(760px, 94vw);
  left:50%;
  right:auto;
  transform: translateX(-50%);
}
.legal-content{
  margin-top:40px;
  max-height: calc(100vh - 110px);
  overflow:auto;
  padding-right:10px;
}
.legal-content h3{ margin:0 0 12px 0; font-size:18px; font-weight:900; }
.legal-content h4{ margin:14px 0 8px 0; font-size:14px; font-weight:900; }
.legal-content p, .legal-content li{
  margin:0 0 12px 0;
  font-size:13px;
  opacity:.95;
}
.legal-content a{ color:#fff; text-decoration:underline; }



/* ARCS */
.imagearc2 {
  position: relative
}

.arc{
  position:absolute;
  border: 20px solid var(--green);
  border-radius: 999px;
  pointer-events:none;
}
.arc--about{
  width: 824px;
  height: 824px;
  right: -380px;
  bottom: -400px;
  display: none;
}

.arc--band{
  width: 824px;
  height: 824px;
  left:  -410px;
  bottom: -400px;
  display: none;
}

/* Responsive */
@media (max-width: 960px){
  .about-grid{ grid-template-columns: 1fr; }
  .img-card--a, .img-card--b{ transform:none; }
  .about-images{ min-height:auto; }
  .products-grid{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }

  .arc--about{ width: 560px; height: 560px; right:-380px; bottom:-300px; }
  .arc--band{ width: 620px; height: 620px; left:-420px; bottom:-420px; }
}

@media (max-width: 560px){
  :root{ --gutter: 18px; }

	.header-inner {
	  position: relative;
	}

	.brand {
	  position: absolute;
	  left: 50%;
	  transform: translateX(-50%);
	}

  .brand-logo{ height:96px; }
  .header-inner{ padding:12px 0; }

  .section{ padding:52px 0; }
  .section h2{ margin-bottom:16px; }

  .hero-bar{ padding:18px 0; }

  .about-images{
    grid-template-columns: 1fr;
    gap:14px;
  }
  .img-card img{ height: 200px; }

  .arc{ border-width: 10px; }
  .arc--about{
    width: 420px; height: 420px;
    right: -280px; bottom: -220px;
  }
  .arc--band{
    width: 520px; height: 520px;
    left: -340px; bottom: -340px;
  }

  /* Menu overlay full screen */
  .overlay-panel{
    width: 100vw;
    padding: 22px 20px;
  }
  .overlay-brand img{ height:82px; }
  .overlay-link{ font-size:19px; }

  /* Legal overlay full screen */
  .overlay-panel--legal{
    width: 100vw;
    left:0;
    transform:none;
  }

  .footer-links{
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
  }
}

/* Overlays (animated) */
.overlay{
  position:fixed;
  inset:0;
  z-index:100;
  background: rgba(0,0,0,.35);

  /* animation base */
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition: opacity .28s ease, visibility 0s linear .28s;
}

.overlay.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transition: opacity .28s ease, visibility 0s linear 0s;
}

/* Panel slides in */
.overlay-panel{
  position:absolute;
  right:0; top:0;
  height:100%;
  width: min(520px, 92vw);
  background: var(--green);
  color:#fff;
  padding: 28px 28px;
  box-shadow: var(--shadow);

  transform: translateX(24px);
  opacity:0;
  transition: transform .32s ease, opacity .32s ease;
}

.overlay.is-open .overlay-panel{
  transform: translateX(0);
  opacity:1;
}

/* Legal overlay panel center animation */
.overlay-panel--legal{
  width: min(760px, 94vw);
  left:50%;
  right:auto;
  transform: translate(-50%, 12px);
  opacity:0;
  transition: transform .32s ease, opacity .32s ease;
}

.overlay.is-open .overlay-panel--legal{
  transform: translate(-50%, 0);
  opacity:1;
}


.about-images{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:0px;
  align-items:start;
}

.img-card{
  margin:0;
  overflow:hidden;
  border-radius: 0; /* falls du später willst: 16px */
}

.img-card img{
  width:100%;
  aspect-ratio: 4 / 3;
  height:auto;
  object-fit:cover;
}


/* Hero slider (modern, manual, subtle) */
.hero-slider{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}

.hero-slides{
  position:absolute;
  inset:0;
}

.hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .55s ease, transform .75s ease;
  will-change: opacity, transform;
}

.hero-slide.is-active{
  opacity:1;
  transform: scale(1);
}

.hero-dots{
  position:absolute;
  left: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  display:flex;
  gap:10px;
  z-index:2;
}

.hero-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.8);
  background: rgba(255,255,255,.18);
  cursor:pointer;
  padding:0;
}

.hero-dot.is-active{
  background: rgba(255,255,255,.92);
}

.hero-dot:focus-visible{
  outline: 2px solid rgba(255,255,255,.9);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  .hero-slide{ transition:none; transform:none; }
}


.section-arc {
      overflow: hidden;
}
.section-gallery {
  position: relative;
  background: #0b6b34; /* dein Grün */
  padding: 3rem 0 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: start;
  position: relative;
}


.gallery-img {
  position: relative;
}

.gallery-img:first-child {
  grid-column: 1 / span 6;
  margin-top: 6rem;   /* nach unten verschieben */
  z-index: 1;
}

.gallery-img:last-child {
  grid-column: 7 / span 6;
  margin-top: 0;
  z-index: 2;
}

.gallery-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-img {
    grid-column: auto !important;
    margin-top: 0 !important;
  }
}

.gallery {
  position: relative;
  z-index: 3;
  transform: translateY(-300px);
  overflow:hidden;
}

.element-separator {
    height: 25px;
}
.element-separator-large {
    height: 300px;
}

.gallery {
  gap: 0;
}

.footer-legal-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  text-align: center;
  max-width: 720px;
  line-height: 1.6;
  margin: 0 0 18px 0;
  padding: 0 var(--gutter);
}



/* =============================================
   SCROLL REVEAL – Elemente gleiten von unten
   ============================================= */

/* Ausgangszustand: unsichtbar & nach unten verschoben */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Sobald sichtbar: eingeblendet & an Normalposition */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staffelung für Kinder-Elemente (staggered) */
.reveal-group .reveal:nth-child(1) { transition-delay: 0.00s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.36s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.48s; }

/* Barrierefreiheit: Animationen deaktivieren wenn gewünscht */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* Fix: <a class="linklike"> soll gleich aussehen wie <button class="linklike"> */
a.linklike {
  text-decoration: none;
  color: #fff;
}
a.linklike:hover {
  text-decoration: underline;
}


