
/* 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;
  }
}


/* ==============================================
   NAVIGATION
   ============================================== */

.navbar {
  padding: 10px 0;
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar-logo {
  height: 55px;
  width: auto;
}

.nav-link {
  color: var(--gold) !important;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 18px !important;
  position: relative;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s;
}

.nav-link:hover {
  color: #fff !important;
}

.nav-link:hover::after {
  background: #fff;
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--gold) !important;
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c6a45e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Header: Logo + Brand zentriert */
.mobile-header {
  background: #000;
  text-align: center;
  padding: 24px 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-header .mobile-logo {
  height: 150px;
  width: auto;
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.mobile-header .mobile-brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.25rem;
  color: var(--cream);
  line-height: 1.2;
}

.mobile-header .mobile-brand .green {
  color: var(--fantasticgreen);
}

.mobile-header .mobile-brand-sub {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 4px;
}

.mobile-header .mobile-brand-sub .green {
  color: var(--fantasticgreen);
}

/* Sticky Nav mobile: slim mit Hamburger */
.navbar-slim-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}


/* ==============================================
   SIGNATURE-ELEMENT: SECTION LABEL
   ============================================== */

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}


/* ==============================================
   PAGE HERO (Unterseiten)
   ============================================== */

.page-hero {
  padding: 80px 0 64px;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
  text-shadow: none;
}

@media (max-width: 768px) {
  .page-hero h1 { font-size: 1.9rem; }
}


/* ==============================================
   EVENT BADGE
   ============================================== */

.event-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}


/* ==============================================
   TEASER CARDS (Homepage)
   ============================================== */

.teaser-card {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(198,164,94,0.1);
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  color: var(--cream);
  display: block;
  height: 100%;
}

.teaser-card:hover {
  border-color: rgba(198,164,94,0.4);
  transform: translateY(-5px);
  color: var(--cream);
}

.teaser-card .tc-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}

.teaser-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
}

.teaser-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.teaser-card .tc-arrow {
  color: var(--gold);
  font-size: 1.3rem;
  margin-top: 24px;
  display: block;
  transition: transform 0.2s;
}

.teaser-card:hover .tc-arrow {
  transform: translateX(6px);
}


/* ==============================================
   TASTING-PAKETE
   ============================================== */

.paket-card {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 40px 32px;
  border: 1px solid rgba(198,164,94,0.1);
  height: 100%;
  transition: border-color 0.3s;
}

.paket-card:hover {
  border-color: rgba(198,164,94,0.35);
}

.paket-nr {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.paket-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cream);
}

.paket-preis {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin: 24px 0 4px;
}

.paket-preis-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 20px;
}

.paket-drams {
  display: inline-block;
  border: 1px solid rgba(198,164,94,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 16px;
}


/* ==============================================
   ARCHIV
   ============================================== */

.archiv-card {
  background: #1a1a1a;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.archiv-body {
  padding: 40px;
}

.archiv-date {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 10px;
}

.archiv-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 40px 40px;
}

@media (min-width: 576px) {
  .archiv-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .archiv-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.archiv-gallery-grid img {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.archiv-placeholder {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #252525;
  border: 1px dashed rgba(198,164,94,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: center;
  padding: 8px;
}

@media (max-width: 768px) {
  .archiv-gallery-grid { padding: 0 20px 20px; }
  .archiv-body { padding: 24px; }
}

.photo-credit {
  font-size: 0.72rem;
  color: var(--muted);
  padding: 10px 40px 0;
  margin: 0;
}

.photo-credit a {
  color: var(--muted);
  text-decoration: none;
}

.photo-credit a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .photo-credit { padding: 10px 20px 0; }
}


/* ==============================================
   KONTAKT
   ============================================== */

.kontakt-box {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 48px 40px;
  border: 1px solid rgba(198,164,94,0.1);
  height: 100%;
}

.kontakt-box-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.kontakt-box .value {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.9;
}

.kontakt-box .value a {
  color: var(--cream);
  text-decoration: none;
}

.kontakt-box .value a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .kontakt-box { padding: 32px 28px; }
}


/* ==============================================
   SITE FOOTER (neu)
   ============================================== */

.site-footer {
  background: #000;
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer .footer-logo {
  height: 100px;
  margin-bottom: 16px;
  display: block;
}

.site-footer .footer-col-title {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 18px;
}

.site-footer .footer-nav a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.site-footer .footer-nav a:hover {
  color: var(--gold);
}

.site-footer .footer-address {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.85;
}

.site-footer .footer-address a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer .footer-address a:hover {
  color: var(--gold);
}

.site-footer .footer-copy {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 52px;
  padding: 24px 0;
  font-size: 0.78rem;
  color: #555;
  text-align: center;
}

.site-footer .footer-copy a {
  color: #666;
  text-decoration: none;
}

.site-footer .footer-copy a:hover {
  color: var(--gold);
}

@media (max-width: 991px) {
  .site-footer {
    text-align: center;
  }

  .site-footer .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer .footer-address {
    margin: 0 auto;
  }

  .site-footer .footer-nav a {
    display: inline-block;
    margin: 0 6px 6px;
  }

  .social-link {
    margin: 4px;
  }
}

.social-link {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  color: var(--gold);
  border-color: rgba(198,164,94,0.4);
}
