/* ========================================
   HAPPY GARDEN - SHARED STYLES
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Noto+Serif+SC:wght@400;500;700;900&display=swap');

:root {
    --rot: #8B0000;
    --rot-dunkel: #5C0000;
    --rot-hell: #B22222;
    --gold: #D4AF37;
    --gold-hell: #F4D060;
    --gold-dunkel: #A88A2C;
    --schwarz: #0A0A0A;
    --schwarz-soft: #1A1A1A;
    --creme: #FFF8E7;
    --weiss: #FFFFFF;
    --grau-warm: #2A1F1F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--schwarz);
    background: var(--creme);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.chinese {
    font-family: 'Noto Serif SC', serif;
}

/* ========================================
   TOP BAR (Telefon, Öffnungszeiten)
   ======================================== */
.top-bar {
    background: linear-gradient(to bottom, var(--schwarz) 0%, var(--grau-warm) 50%, var(--rot-dunkel) 100%);
    color: var(--gold);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gold-dunkel);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--gold-hell);
}

.top-bar-center {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-center a {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 768px) {
    .top-bar-center {
        gap: 15px;
    }
    .top-bar-center a {
        font-size: 12px;
        letter-spacing: 0.1em;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: var(--rot);
    background-image: linear-gradient(135deg, var(--rot-dunkel) 0%, var(--rot) 50%, var(--rot-dunkel) 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-bottom: 2px solid var(--gold);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--weiss);
}

.logo-img {
    height: 70px;
    width: 70px;
    display: block;
    border-radius: 50%;
    background: var(--rot);
    border: 2px solid var(--gold);
    padding: 3px;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.logo-area:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Alte Logo-Styles (für Rückwärtskompatibilität, falls noch verwendet) */
.logo-circle {
    width: 60px;
    height: 60px;
    background: var(--creme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.logo-circle svg {
    width: 40px;
    height: 40px;
}

.logo-text h1 {
    font-size: 22px;
    color: var(--gold);
    margin: 0;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.logo-text p {
    font-size: 12px;
    color: var(--creme);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 5px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--creme);
    text-decoration: none;
    padding: 10px 16px;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 4px;
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--gold-hell);
    background: rgba(0,0,0,0.3);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 4px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Fallback: solider dunkler Verlauf, falls Bild nicht lädt */
    background-color: var(--schwarz);
    background-image: 
        linear-gradient(to bottom, rgba(92,0,0,0.85) 0%, rgba(42,31,31,0.85) 40%, rgba(10,10,10,0.95) 100%),
        url('images/start_background.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--weiss);
    padding: 80px 30px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(178, 34, 34, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold-hell);
    font-size: clamp(18px, 3vw, 24px);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(40px, 7vw, 80px);
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-chinese-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 3vw, 40px);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-chinese-wrap .hero-chinese {
    margin-bottom: 0;
    animation: none;
}

.hero-dragon {
    width: clamp(80px, 14vw, 160px);
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

@media (max-width: 600px) {
    .hero-chinese-wrap {
        gap: 10px;
    }
    .hero-dragon {
        width: 60px;
    }
}

.hero-chinese {
    font-family: 'Noto Serif SC', serif;
    color: var(--gold-hell);
    font-size: clamp(30px, 5vw, 50px);
    margin-bottom: 30px;
    opacity: 0.85;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-tagline {
    font-size: clamp(20px, 2.5vw, 28px);
    font-style: italic;
    color: var(--creme);
    margin-bottom: 40px;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--schwarz);
}

.btn-primary:hover {
    background: var(--gold-hell);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--schwarz);
    transform: translateY(-3px);
}

.btn-rot {
    background: var(--rot);
    color: var(--weiss);
    border-color: var(--rot);
}

.btn-rot:hover {
    background: var(--rot-dunkel);
    border-color: var(--gold);
}

/* ========================================
   SECTION COMMON
   ======================================== */
section {
    padding: 100px 30px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-eyebrow {
    color: var(--rot);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 20px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--schwarz);
    margin-bottom: 20px;
}

.section-chinese {
    font-family: 'Noto Serif SC', serif;
    color: var(--gold-dunkel);
    font-size: 24px;
    margin-bottom: 20px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px auto;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* ========================================
   WM 2026 BANNER
   ======================================== */
.wm-banner {
    background: linear-gradient(135deg, #003F87 0%, #ED2939 33%, #FFFFFF 66%, #006847 100%);
    background-size: 400% 400%;
    color: var(--weiss);
    padding: 25px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradient 8s ease infinite;
}

.wm-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.wm-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.wm-banner-text {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.wm-banner-text .highlight {
    color: var(--gold-hell);
    font-size: 22px;
}

.wm-banner-sponsor {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    margin-top: 4px;
    opacity: 0.85;
    font-weight: 500;
    text-transform: none;
}

.wm-banner-sponsor a {
    color: var(--gold-hell);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.3s;
}

.wm-banner-sponsor a:hover {
    opacity: 0.75;
}

@media (max-width: 700px) {
    .wm-banner-sponsor {
        font-size: 11px;
    }
}

.wm-banner-btn {
    background: var(--gold);
    color: var(--schwarz);
    padding: 12px 28px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 13px;
    border: 2px solid var(--weiss);
    transition: all 0.3s;
}

.wm-banner-btn:hover {
    background: var(--weiss);
    transform: scale(1.05);
}

@keyframes gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ========================================
   CARDS / FEATURES
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Gleichmäßiges 3-Spalten-Layout für 2x3 = 6 Karten */
.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.aktionen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 900px) {
    .features-grid-3,
    .aktionen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .versprechen-grid {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 600px) {
    .features-grid-3,
    .aktionen-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--weiss);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(139, 0, 0, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--rot), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--rot);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 32px;
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--rot);
    transform: rotate(360deg);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--rot);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--schwarz);
    line-height: 1.7;
    font-size: 17px;
}

/* ========================================
   MENU LISTING (Speisekarten)
   ======================================== */
.menu-section {
    background: var(--weiss);
}

.menu-category {
    margin-bottom: 80px;
}

.menu-category-header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-category-title {
    font-size: 36px;
    color: var(--rot);
    margin-bottom: 10px;
}

.menu-category-chinese {
    color: var(--gold-dunkel);
    font-size: 20px;
    font-family: 'Noto Serif SC', serif;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
    padding: 25px 30px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s;
    position: relative;
}

.menu-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left-color: var(--rot);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 8px;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--schwarz);
    flex: 1;
}

.menu-item-number {
    color: var(--gold-dunkel);
    font-weight: 700;
    font-size: 16px;
    margin-right: 8px;
}

.menu-item-price {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--rot);
    white-space: nowrap;
}

.menu-item-chinese {
    font-family: 'Noto Serif SC', serif;
    color: var(--gold-dunkel);
    font-size: 16px;
    margin-bottom: 5px;
}

.menu-item-description {
    color: #555;
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
}

.menu-item-allergens {
    color: #888;
    font-size: 12px;
    margin-top: 5px;
    font-family: 'Cinzel', serif;
}

/* ========================================
   BUFFET PREISE - SPECIAL CARDS
   ======================================== */
.buffet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
}

@media (max-width: 768px) {
    .buffet-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.buffet-card {
    background: linear-gradient(135deg, var(--schwarz) 0%, var(--grau-warm) 100%);
    color: var(--creme);
    padding: 50px 35px;
    text-align: center;
    border: 2px solid var(--gold-dunkel);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.buffet-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.buffet-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.buffet-card:hover::before {
    opacity: 1;
}

.buffet-card-badge {
    display: inline-block;
    background: var(--rot);
    color: var(--gold-hell);
    padding: 6px 16px;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.buffet-card h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 10px;
    position: relative;
}

.buffet-card-zeit {
    color: var(--gold-hell);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.buffet-card-preis {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    margin: 20px 0;
    position: relative;
    text-shadow: 0 2px 10px rgba(212,175,55,0.3);
}

.buffet-card-preis-label {
    font-size: 14px;
    color: var(--creme);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.buffet-card-kinder {
    font-size: 14px;
    color: var(--creme);
    opacity: 0.85;
    padding-top: 20px;
    border-top: 1px solid rgba(212,175,55,0.3);
    position: relative;
}

.buffet-info-box {
    max-width: 1000px;
    margin: 60px auto 0;
    background: var(--rot);
    color: var(--creme);
    padding: 30px 40px;
    border-left: 5px solid var(--gold);
    font-size: 16px;
    line-height: 1.7;
}

.buffet-info-box strong {
    color: var(--gold-hell);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--schwarz);
    color: var(--creme);
    padding: 80px 30px 30px;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-dunkel);
}

.footer-col p, .footer-col a {
    color: var(--creme);
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--gold-dunkel);
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--rot);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--schwarz);
    transform: translateY(-3px);
}

/* ========================================
   PAGE HEADER (für Unterseiten)
   ======================================== */
.page-header {
    background: linear-gradient(to bottom, var(--schwarz) 0%, var(--grau-warm) 35%, var(--rot-dunkel) 100%);
    color: var(--weiss);
    padding: 120px 30px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(178, 34, 34, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: clamp(36px, 6vw, 64px);
    color: var(--gold);
    margin-bottom: 15px;
}

.page-header .chinese {
    color: var(--gold-hell);
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
    opacity: 0.9;
}

.page-header p {
    font-size: 20px;
    font-style: italic;
    color: var(--creme);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--rot-dunkel);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--gold);
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .nav-menu a {
        text-align: center;
        padding: 12px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }
    
    .hero {
        min-height: 70vh;
        padding: 60px 20px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 12px;
    }
    
    .logo-img {
        height: 55px;
        width: 55px;
    }
    
    .logo-text h1 {
        font-size: 16px;
    }
    
    .logo-text p {
        font-size: 10px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
}

/* ========================================
   RECHTSSEITEN (Impressum, Datenschutz, AGB)
   ======================================== */
.legal-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.legal-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--rot);
    margin: 50px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    letter-spacing: 0.05em;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--rot-dunkel);
    margin: 30px 0 12px;
    letter-spacing: 0.03em;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 20px;
    padding-left: 25px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--rot);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--gold-dunkel);
}

.legal-content strong {
    color: var(--schwarz);
}

@media (max-width: 600px) {
    .legal-content {
        font-size: 15px;
    }
    .legal-content h2 {
        font-size: 20px;
    }
    .legal-content h3 {
        font-size: 16px;
    }
}


/* ============================================
   COOKIE-CONSENT BANNER & MODAL
   ============================================ */

.hg-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--schwarz) 0%, var(--grau-warm) 100%);
    color: var(--creme);
    border-top: 3px solid var(--gold);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    padding: 25px 30px;
    animation: hg-slide-up 0.4s ease-out;
}

@keyframes hg-slide-up {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.hg-cookie-banner.hg-fade-out {
    animation: hg-fade-out 0.3s ease-out forwards;
}

@keyframes hg-fade-out {
    to { opacity: 0; transform: translateY(20px); }
}

.hg-cookie-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.hg-cookie-text h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 20px;
    margin: 0 0 10px 0;
    letter-spacing: 0.05em;
}

.hg-cookie-text p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--creme);
}

.hg-cookie-links {
    font-size: 12px !important;
    opacity: 0.85;
}

.hg-cookie-links a {
    color: var(--gold-hell);
    text-decoration: underline;
}

.hg-cookie-links a:hover {
    color: var(--gold);
}

.hg-cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.hg-btn {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.1em;
    padding: 12px 22px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-transform: uppercase;
}

.hg-btn-primary {
    background: var(--gold);
    color: var(--schwarz);
}

.hg-btn-primary:hover {
    background: var(--gold-hell);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hg-btn-secondary {
    background: transparent;
    color: var(--gold);
}

.hg-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

/* MODAL */
.hg-cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hg-cookie-modal.hg-modal-open {
    display: flex;
}

.hg-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.hg-modal-content {
    position: relative;
    background: linear-gradient(to bottom, var(--grau-warm) 0%, var(--schwarz) 100%);
    color: var(--creme);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    border: 2px solid var(--gold);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
}

.hg-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 5px 10px;
    transition: color 0.2s;
}

.hg-modal-close:hover {
    color: var(--gold-hell);
}

.hg-modal-content h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 24px;
    margin: 0 0 15px 0;
    letter-spacing: 0.05em;
}

.hg-modal-content > p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--creme);
}

.hg-cookie-option {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    padding: 20px;
    margin-bottom: 15px;
}

.hg-cookie-option p {
    font-size: 13px;
    margin: 10px 0 0 0;
    color: var(--creme);
    opacity: 0.85;
    line-height: 1.6;
}

.hg-cookie-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.hg-cookie-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hg-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    background: #444;
    border-radius: 13px;
    transition: background 0.3s;
    flex-shrink: 0;
}

.hg-toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--creme);
    border-radius: 50%;
    transition: transform 0.3s;
}

.hg-cookie-toggle input:checked ~ .hg-toggle-switch {
    background: var(--gold);
}

.hg-cookie-toggle input:checked ~ .hg-toggle-switch::after {
    transform: translateX(24px);
}

.hg-cookie-toggle input:disabled ~ .hg-toggle-switch {
    background: var(--gold-dunkel);
    opacity: 0.7;
    cursor: not-allowed;
}

.hg-toggle-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hg-toggle-label strong {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 0.05em;
}

.hg-required {
    font-size: 11px;
    color: var(--gold-hell);
    background: rgba(212, 175, 55, 0.15);
    padding: 3px 10px;
    border: 1px solid var(--gold-dunkel);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hg-modal-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hg-cookie-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hg-cookie-buttons {
        justify-content: stretch;
    }
    .hg-cookie-buttons .hg-btn {
        flex: 1;
        min-width: 0;
        font-size: 11px;
        padding: 12px 8px;
    }
}

@media (max-width: 600px) {
    .hg-cookie-banner {
        padding: 20px 15px;
    }
    .hg-cookie-buttons {
        flex-direction: column;
    }
    .hg-modal-content {
        padding: 30px 20px;
    }
    .hg-modal-buttons {
        flex-direction: column;
    }
    .hg-modal-buttons .hg-btn {
        width: 100%;
    }
}


/* ============================================
   BUFFET-GALERIE & LIGHTBOX
   ============================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--gold-dunkel);
    transition: all 0.4s;
    background: var(--grau-warm);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.6);
    color: var(--gold-hell);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.gallery-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: var(--gold-hell);
    padding: 30px 20px 20px;
    transform: translateY(20%);
    opacity: 0;
    transition: all 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    backdrop-filter: blur(8px);
}

.lightbox.open {
    display: flex;
    animation: lightbox-fade 0.3s ease-out;
}

@keyframes lightbox-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    display: block;
    margin: 0 auto;
}

.lightbox-caption {
    color: var(--gold-hell);
    font-family: 'Cinzel', serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.lightbox-counter {
    color: var(--creme);
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 30px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--schwarz);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    border-radius: 50%;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        opacity: 1;
        padding: 15px;
    }
    
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}


/* ============================================
   GETRÄNKE-BANNER
   ============================================ */
.getraenke-banner {
    max-width: 1200px;
    margin: 50px auto 60px;
    overflow: hidden;
    border: 2px solid var(--gold-dunkel);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    aspect-ratio: 16/6;  /* Cinematic Breitbild */
}

.getraenke-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.getraenke-banner:hover img {
    transform: scale(1.03);
}

/* Optional: Goldener Rahmen-Effekt */
.getraenke-banner::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .getraenke-banner {
        aspect-ratio: 16/9;
        margin: 30px auto 40px;
    }
}


/* ============================================
   WM-TIPPSPIEL
   ============================================ */
.tipp-spiel {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold-dunkel);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.tipp-spiel:hover {
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.tipp-spiel-uhrzeit {
    font-family: 'Cinzel', serif;
    color: var(--gold-dunkel);
    font-size: 14px;
    letter-spacing: 0.15em;
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gold-dunkel);
}

.tipp-spiel-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
}

.tipp-team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tipp-team:first-child {
    justify-content: flex-end;
}

.tipp-team:last-child {
    justify-content: flex-start;
}

.tipp-team-name {
    font-family: 'Cinzel', serif;
    color: var(--rot);
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.tipp-team input[type="number"] {
    width: 65px;
    height: 65px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--rot);
    border: 2px solid var(--gold);
    background: var(--weiss);
    font-family: 'Cinzel', serif;
    transition: all 0.3s;
}

.tipp-team input[type="number"]:focus {
    outline: none;
    border-color: var(--rot);
    background: var(--creme);
    transform: scale(1.05);
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
}

/* Number input spinners ausblenden (cleaner look) */
.tipp-team input[type="number"]::-webkit-inner-spin-button,
.tipp-team input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.tipp-team input[type="number"] {
    -moz-appearance: textfield;
}

.tipp-vs {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    font-size: 32px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
    .tipp-spiel-teams {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .tipp-team {
        justify-content: space-between !important;
    }
    
    .tipp-team-name {
        font-size: 16px;
    }
    
    .tipp-team input[type="number"] {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .tipp-vs {
        display: none;
    }
}


/* ============================================
   WM-TIPPSPIEL V2 - Mit Tipp-Modi
   ============================================ */
.tipp-spiel-v2 {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--gold-dunkel);
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.tipp-spiel-v2:hover {
    border-color: var(--gold);
}

.tipp-spiel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.15em;
}

.tipp-spiel-zeit { color: var(--gold-dunkel); }
.tipp-spiel-gruppe { 
    background: var(--gold-dunkel); 
    color: var(--weiss); 
    padding: 4px 12px; 
    font-size: 11px;
}

.tipp-spiel-matchup {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: var(--rot);
    font-weight: 600;
}

.tipp-team-name-display {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.tipp-team-name-display .flag {
    font-size: 24px;
}

/* Modus-Toggle */
.tipp-modus-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0 15px;
}

.modus-option {
    cursor: pointer;
    padding: 12px 15px;
    border: 2px solid var(--gold-dunkel);
    background: var(--weiss);
    transition: all 0.3s;
    text-align: center;
    font-size: 14px;
    color: #444;
}

.modus-option:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.modus-option input[type="radio"] {
    display: none;
}

.modus-option:has(input:checked) {
    border-color: var(--rot);
    background: var(--rot);
    color: var(--weiss);
}

.modus-option small {
    display: block;
    font-size: 11px;
    opacity: 0.8;
    margin-top: 2px;
}

/* Sieger-Bereich */
.tipp-sieger {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.sieger-btn {
    cursor: pointer;
    padding: 15px 10px;
    border: 2px solid var(--gold-dunkel);
    background: var(--weiss);
    transition: all 0.3s;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 13px;
    color: var(--rot);
}

.sieger-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.sieger-btn input[type="radio"] {
    display: none;
}

.sieger-btn:has(input:checked) {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--schwarz);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Spielstand-Bereich */
.spielstand-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.05);
}

.spielstand-row .team-label {
    text-align: center;
    color: var(--rot);
    font-weight: 600;
    font-size: 14px;
}

.spielstand-row input[type="number"] {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: var(--rot);
    border: 2px solid var(--gold);
    background: var(--weiss);
    font-family: 'Cinzel', serif;
}

.spielstand-row input[type="number"]:focus {
    outline: none;
    border-color: var(--rot);
    transform: scale(1.05);
}

.spielstand-row .tipp-vs-symbol {
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    font-family: 'Cinzel', serif;
}

.spielstand-row input[type="number"]::-webkit-inner-spin-button,
.spielstand-row input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Ergebnis-Anzeige */
.ergebnis-zeile {
    display: grid;
    grid-template-columns: 60px 40px 1fr auto 1fr;
    gap: 15px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 15px;
}

.ergebnis-zeile:last-child {
    border-bottom: none;
}

.ergebnis-zeit {
    color: #888;
    font-size: 13px;
    font-family: 'Cinzel', serif;
}

.ergebnis-gruppe {
    background: var(--gold-dunkel);
    color: var(--weiss);
    text-align: center;
    padding: 4px;
    font-size: 11px;
    font-family: 'Cinzel', serif;
}

.ergebnis-team {
    color: #555;
}

.ergebnis-team.gewinner {
    color: var(--rot);
    font-weight: 700;
}

.ergebnis-team:first-of-type {
    text-align: right;
}

.ergebnis-score {
    font-family: 'Cinzel', serif;
    font-weight: bold;
    color: var(--rot);
    font-size: 18px;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 700px) {
    .tipp-modus-toggle {
        grid-template-columns: 1fr;
    }
    
    .tipp-sieger {
        grid-template-columns: 1fr;
    }
    
    .spielstand-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
    
    .spielstand-row .tipp-vs-symbol {
        display: none;
    }
    
    .spielstand-row input[type="number"] {
        margin: 0 auto;
    }
    
    .ergebnis-zeile {
        grid-template-columns: 50px 35px 1fr auto 1fr;
        gap: 8px;
        font-size: 13px;
    }
    
    .ergebnis-score {
        font-size: 15px;
    }
    
    .tipp-spiel-matchup {
        font-size: 15px;
    }
}


/* ============================================
   HERO MIT VIDEO-HINTERGRUND
   ============================================ */
.hero-video {
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

/* Vorhang/Overlay über dem Video — sorgt dafür, dass Text gut lesbar bleibt */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: 
        /* dunkle Vignette von oben+unten */
        linear-gradient(180deg, 
            rgba(10, 10, 10, 0.55) 0%, 
            rgba(10, 10, 10, 0.35) 50%, 
            rgba(10, 10, 10, 0.65) 100%),
        /* subtiler goldener Schimmer */
        radial-gradient(ellipse at center, 
            rgba(212, 175, 55, 0.08) 0%, 
            transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* Content über Video + Overlay */
.hero-video .hero-content {
    position: relative;
    z-index: 2;
}

/* Mobile: Video oft schwer zu spielen, ggf. Fallback-Bild reicht */
@media (max-width: 600px) {
    .hero-video-bg {
        /* Auf sehr kleinen Geräten Bild bevorzugen (Datenvolumen schonen) */
        /* Wenn das Video trotzdem laufen soll, diesen Block kommentieren */
    }
}

/* Reduced Motion: Video stoppen für Nutzer die das wünschen */
@media (prefers-reduced-motion: reduce) {
    .hero-video-bg {
        animation-play-state: paused;
    }
}


/* ============================================
   HERO MIT YOUTUBE-VIDEO ALS HINTERGRUND
   ============================================ */
.hero-youtube-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;  /* User soll nicht direkt aufs iframe klicken */
}

.hero-youtube-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Größer als Container, damit YouTube-UI außerhalb sichtbar liegt */
    width: 100vw;
    height: 56.25vw;       /* 9/16 von Breite = 16:9-Ratio */
    min-height: 100vh;
    min-width: 177.78vh;   /* 16/9 von Höhe = 16:9-Ratio */
    transform: translate(-50%, -50%) scale(1.35);
    border: 0;
    pointer-events: none;
}

/* Mobile: Etwas mehr Zoom, da YouTube-Logo bei Hover oben rechts erscheint */
@media (max-width: 700px) {
    .hero-youtube-bg {
        transform: translate(-50%, -50%) scale(1.6);
    }
}


/* ============================================
   GLÜCKSRAD-BANNER (schmaler, Restaurant-Farben)
   ============================================ */
#gluecksrad-banner {
    background: linear-gradient(135deg, var(--rot-dunkel) 0%, var(--rot) 25%, var(--gold-dunkel) 50%, var(--rot) 75%, var(--rot-dunkel) 100%);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
    padding: 9px 0;
    border-bottom: 1px solid var(--gold-dunkel);
}

#gluecksrad-banner::before {
    background: rgba(0,0,0,0.25);
}

#gluecksrad-banner .wm-banner-content {
    gap: 18px;
}

#gluecksrad-banner .wm-banner-text {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
    color: var(--creme);
}

#gluecksrad-banner .wm-banner-text .highlight {
    font-size: 15px;
    color: var(--gold-hell);
}

#gluecksrad-banner .wm-banner-btn {
    padding: 7px 18px;
    font-size: 12px;
}

@media (max-width: 700px) {
    #gluecksrad-banner .wm-banner-text {
        font-size: 12px;
    }
}
