/* ============================================================
   FORASTERA MASTER STYLE - KOMPLETT
   ============================================================ */

:root {
  --bg-primary: #ffffff;
  --text-primary: #000000;
  --header-footer: #000000;
  --link-color: #930000;
  --accent-light: #f5f5f5;
  --border-color: #e0e0e0;
  --accent-punk: #f5e92f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: var(--text-primary); background: var(--bg-primary); overflow-x: hidden; }

/* --- ÜBERSCHRIFTEN (CATA-LOOK) --- */
h1, h2, h3, h4 { font-family: 'Segoe UI', sans-serif; font-weight: 900 !important; text-transform: uppercase; line-height: 0.95; letter-spacing: -1.5px; color: #000; }
h1 { font-size: clamp(2.5rem, 8vw, 5rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 5vw, 2.5rem); border-bottom: 5px solid #000; display: inline-block; padding-bottom: 5px; margin-bottom: 1.5rem; }
h3 { font-size: 1.8rem; margin-bottom: 1rem; }

/* --- HEADER & NAVIGATION --- */
.header-block.header-top { background: var(--header-footer); color: #fff; font-size: 0.9rem; padding: 0.5rem 2rem; text-align: center; letter-spacing: 0.05em; }
.header-block.header-top a { color: #fff; text-decoration: none; font-weight: bold; }
.header-block.header-top a:hover {
    color: var(--link-color) !important;
    text-decoration: underline;
}

header { background: #fff; padding: 0.5rem 2rem; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid #ddd; }
.logo-img { height: 60px; width: auto; }

#nav-menu ul { display: flex; list-style: none; gap: 1.5rem; }
#nav-menu a { text-decoration: none; color: #000; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }

.header-right { display: flex; align-items: center; gap: 1.5rem; }
.language-switcher { display: flex; gap: 10px; font-weight: bold; font-size: 0.8rem; }
.language-switcher a { text-decoration: none; color: #666; }
.language-switcher a.active-lang { color: #000; border-bottom: 2px solid #000; }
.menu-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; }

/* --- HERO BEREICH --- */
/* --- 1. ÜBERSCHRIFTEN CLEANUP (Keine Linien mehr) --- */
h1, h2 {
    border-bottom: none !important;
    text-decoration: none !important;
    padding-bottom: 0 !important;
}

/* --- 2. HERO STRUKTUR --- */
.tasting-hero {
    position: relative;
    min-height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Schutz für die Lesbarkeit */
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* --- 3. DIE H1 LOGIK (Zweizeilig & SEO-freundlich) --- */
.hero-title {
    color: #ffffff !important;
    font-size: clamp(2rem, 5.5vw, 4.5rem) !important;
    line-height: 1.1;
    margin-bottom: 25px;
    
    /* Erzwingt das Stapeln der zwei Spans */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title .first-line {
    display: block;
    white-space: nowrap; /* Verhindert ungewollten Umbruch in Zeile 1 */
}

.hero-title .second-line {
    display: block;
    width: 100%;
    margin-top: 5px;
}

/* --- 4. TEXT & BADGE --- */
.hero-text p {
    color: #ffffff !important;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.hero-badge-black {
    background: #000;
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    letter-spacing: 3px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
}

/* --- 5. MOBILE OPTIMIERUNG --- */
@media (max-width: 768px) {
    .hero-title .first-line {
        white-space: normal; /* Erlaubt Umbruch auf schmalen Handys */
    }
    .hero-title {
        font-size: 2.2rem !important; /* Etwas kleiner für Smartphones */
    }
}



/* --- LAYOUTS --- */
.container { max-width: 1100px; margin: 0 auto; padding: 4rem 1.5rem; }
.tasting-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 5rem; }
.tasting-col img { width: 100%; height: auto; display: block; margin-bottom: 20px; border-radius: 4px; }

/* --- PREIS & BUTTON --- */
.price-massive { font-weight: 900; font-size: clamp(5rem, 18vw, 9rem); line-height: 0.8; margin-bottom: 1.5rem; letter-spacing: -2px; color: #000; }
.cta-massive-text { text-align: center; border-top: 1px solid #eee; padding-top: 4rem; }
.btn-black { display: inline-block; background: #000; color: #fff; padding: 1.2rem 3.5rem; font-weight: 900; text-transform: uppercase; text-decoration: none; font-size: 1.3rem; letter-spacing: 2px; }

/* --- FOOTER --- */
footer { background: var(--header-footer); color: #fff; padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-section h3 { color: var(--link-color); margin-bottom: 1rem; font-weight: 900; text-transform: uppercase; }
.footer-section p { font-size: 0.95rem; margin-bottom: 0.4rem; }
.footer-section a { color: #fff; text-decoration: none; }
.footer-newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.footer-newsletter-form input { flex: 1; padding: 0.6rem; border-radius: 4px; border: 1px solid var(--border-color); }
.footer-newsletter-form button { padding: 0.6rem 1.2rem; border-radius: 20px; background: var(--link-color); color: #fff; border: none; font-weight: 600; cursor: pointer; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.2); margin-top: 2rem; padding-top: 1.5rem; font-size: 0.85rem; }

/* --- MOBILE --- */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  #nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; flex-direction: column; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
  #nav-menu.active { display: flex; }
  #nav-menu ul { flex-direction: column; padding: 20px; gap: 15px; align-items: center; }
}


/* --- FIX FÜR ABSTÄNDE UND LINIE --- */

/* 1. Mehr Platz unter dem Gruppen-Bild und dem Text */
.groups-booking-wrap {
    margin-top: 6rem !important;
    margin-bottom: 8rem !important; /* Das schafft Platz nach unten zum Preis */
    display: block;
    width: 100%;
}

/* 2. Die Linie beim Preis-Block entfernen und Abstand anpassen */
.cta-massive-text {
    text-align: center;
    border-top: none !important; /* Entfernt die störende Linie */
    padding-top: 2rem;
    margin-top: 4rem;
}


.groups-booking-wrap img {
    margin-bottom: 4rem !important;
}

.groups-booking-wrap h2 {
    margin-bottom: 2rem;
}

h1, h2 {
    border-bottom: none !important; /* Entfernt die dicke schwarze Linie */
    padding-bottom: 0 !important;
    text-decoration: none !important;
}


h2 {
    margin-bottom: 1.5rem;
}