
/* nunito-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/nunito-v32-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/nunito-v32-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* nunito-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/nunito-v32-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


:root {
  --bg-dark: #121212;
  --bg-brown: #2a1d14;
  --gold: #c6a45e;
  --cream: #f5f2ec;
  --fantasticgreen: #9CBD2A;
  
  --muted: #cdcccc;
}

body {
  background: var(--bg-dark);
  color: var(--cream);
  font-family: 'Nunito', sans-serif;
  
}

h1, h2, h3 {
  font-weight: 600;
}

a {
  color: var(--fantasticgreen);
}


/* TOPBAR */
.topbar {
  background: #000;
  padding: 16px 0;
}

.logo {
  height: 100px;
}

.brand-name {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.8rem;
}

.brand-name .green{
  color: var(--fantasticgreen);
}

.brand-name .small{
  font-size:0.9rem; 
  font-weight:normal;
  letter-spacing: normal;

}

/* HERO */
.hero {
  height: 75vh;
  /* background: url("/medien/image2.png") center / cover no-repeat; */
  position: relative;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
}

.hero-overlay1 {
  background: rgba(0,0,0,0.2);
  height: 100%;
  display: flex;
  align-items: center;
  
}


.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 24%
  );
  height: 100%;
  display: flex;
  align-items: top; /* Text eher unten */
  padding-top: 6em;
  
}


.hero h1 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 3.2rem;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
}

.hero p {
  color: var(--muted);
}

/* SECTIONS */
.section {
  padding: 90px 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-brown {
  background: var(--bg-brown);
}

.section-cta {
  background: #000;
}

/* CONTENT BOX */
.content-box {
  background: #1a1a1a;
  border-radius: 36px;
  padding: 70px;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.section-brown .content-box {
  background: #2a1d14;
}

.section-cta .content-box {
  background: #000;
  border-radius: 48px;
}




/* Grundstruktur */
.image-col {
  min-height: 520px;
}

.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-wrapper {
  max-width: 520px;
}

/* ===== Layout: Bild links ===== */
.layout-image-left .text-col {
  padding: 4rem 4rem 4rem 5rem;
}

/* ===== Layout: Bild rechts ===== */
.layout-image-right .text-col {
  padding: 4rem 5rem 4rem 4rem;
}

/* Mobile */
@media (max-width: 991px) {

  .layout-image-left .text-col,
  .layout-image-right .text-col {
    padding: 3rem 2rem;
  }

  .image-col {
    min-height: 350px;
  }
}




/* IMAGES */
.rounded-img {
  border-radius: 24px;
  filter: saturate(0.95) contrast(1.05);
}

/* DIVIDER */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

.divider.center {
  margin: 20px auto;
}

/* CTA VOUCHER LOOK */
.voucher-box {
  border: 2px dashed rgba(198,164,94,0.4);
}

/* BUTTON */
.btn-gold {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 14px 36px;
}

.btn-gold:hover {
  background: #b8964d;
}

/* FOOTER */
.footer {
  background: #000;
  padding: 20px;
  color: var(--muted);
}

.footer-link {
  color: #b7b7b7;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-link:hover {
  color: #c6a45e;
}


/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .content-box {
    padding: 35px;
    border-radius: 24px;
  }

  .hero {
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
  }
}
