/* --- MODERN VARIABLES --- */
:root {
    --primary: #FF6B00;
    --primary-hover: #e55e00;
    --bg-color: #f4f4f5; 
    --surface-color: #ffffff;
    --text-main: #18181b;
    --text-muted: #71717a;
    --border-color: #e4e4e7;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --header-blur: blur(12px);
    --header-bg-scrolled: rgba(255, 255, 255, 0.98);

    /* Dark Mode Defaults */
    --cookie-bg: #18181b;
    --cookie-modal-bg: #27272a;
    --cookie-border: #3f3f46;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #09090b;
        --surface-color: #18181b;
        --text-main: #f4f4f5;
        --text-muted: #a1a1aa;
        --border-color: #27272a;
        --header-bg-scrolled: rgba(18, 18, 18, 0.98);
        --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
        --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.5);
    }
}

/* --- RESET & GLOBAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.2s ease; }
ul { list-style: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
section { padding: 6rem 0; position: relative; }

/* --- HEADER --- */
header {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    padding: 1.5rem 0; transition: all 0.3s ease; background: transparent;
}

header.scrolled {
    padding: 1rem 0;
    background: var(--header-bg-scrolled);
    backdrop-filter: var(--header-blur);
    -webkit-backdrop-filter: var(--header-blur);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex; justify-content: space-between; align-items: center;
    width: 90%; max-width: 1200px; margin: 0 auto;
}

/* LOGO */
.logo {
    font-weight: 900; font-size: 1.5rem; 
    color: white; /* START: IMMER WEISS */
    text-transform: uppercase; letter-spacing: 1px;
    display: flex; align-items: center; gap: 0.8rem;
    position: relative; z-index: 2002; 
    transition: opacity 0.3s ease, color 0.3s ease;
}
.logo span { color: var(--primary); }
.logo img { height: 70px; transition: height 0.3s; }

/* Logo dunkel WENN gescrollt */
header.scrolled .logo { color: var(--text-main); }
header.scrolled .logo img { height: 50px; }

/* WICHTIG: Logo VERSCHWINDET wenn Menü offen ist (Kundenwunsch) */
header.menu-open .logo {
    opacity: 0; 
    pointer-events: none;
}

/* NAVIGATION */
.nav-menu ul { display: flex; gap: 2.5rem; }

.nav-link {
    font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    position: relative; 
    color: white; /* START: IMMER WEISS */
    transition: color 0.3s ease;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0;
    width: 0; height: 2px; background: var(--primary); transition: width 0.3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

/* Wenn Header gescrollt -> Links dunkel */
header.scrolled .nav-link { color: var(--text-main); }
header.scrolled .nav-link:hover { color: var(--primary); }

/* MOBILE TOGGLE (Burger) */
.mobile-toggle { 
    display: none; /* Desktop: aus */
    background: none; border: none; cursor: pointer; 
    position: relative; z-index: 2005; /* Ganz oben */
    padding: 5px;
}
.bar { 
    display: block; width: 25px; height: 2px; margin: 6px auto; 
    background-color: white; /* START: WEISS */
    transition: 0.3s; border-radius: 2px;
}
/* Wenn Header gescrollt -> Burger dunkel */
header.scrolled .bar { background-color: var(--text-main); }
/* Wenn Menü offen -> Burger IMMER Weiß */
header.menu-open .bar { background-color: white !important; }

/* --- HERO --- */
.hero {
    height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    background: url('Bilder/hero.jpg') center/cover no-repeat fixed;
    position: relative; margin-top: 0; padding: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 1rem; width: 100%; }
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-title span { color: var(--primary); }
.hero-subtitle { font-size: 1.2rem; margin-bottom: 2.5rem; font-weight: 500; opacity: 0.9; }

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn {
    background: var(--primary); color: white; padding: 0.9rem 2rem;
    font-weight: 700; text-transform: uppercase; font-size: 0.9rem;
    border-radius: 50px; border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.2s; cursor: pointer;
}
.cta-btn:hover {
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
    background: var(--primary-hover); border-color: var(--primary-hover);
}
.cta-btn--outline { background: transparent; border-color: white; box-shadow: none; }
.cta-btn--outline:hover { background: white; color: black; border-color: white; }
.cta-btn--light { background: white; color: black; border-color: white; }

/* --- SECTIONS --- */
.section-title, .section-title-left {
    font-size: 2.2rem; text-transform: uppercase; font-weight: 800;
    margin-bottom: 2rem; color: var(--text-main); letter-spacing: -0.5px;
    word-break: break-word;
}
.section-title { text-align: center; }
.section-title span, .text-primary { color: var(--primary); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrapper {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 3/4;
}
.about-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-wrapper:hover img { transform: scale(1.05); }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.05rem; }
.badge {
    display: inline-block; padding: 0.4rem 1rem; border-radius: 50px;
    background: rgba(255, 107, 0, 0.1); color: var(--primary);
    font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 1.5rem;
}
.feature-list { margin: 1.5rem 0; display: grid; gap: 0.5rem; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.feature-list i { color: var(--primary); }
.location-text { font-size: 0.9rem; font-weight: 700; margin-top: 1rem; display: flex; align-items: center; gap: 10px; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.gallery-item {
    border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1;
    position: relative; box-shadow: var(--shadow-md);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }

/* PRICES */
.price-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
.price-list {
    background: var(--surface-color); padding: 2.5rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); border: 1px solid var(--border-color);
}
.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0; border-bottom: 1px solid var(--border-color);
}
.price-row:last-child { border-bottom: none; }
.price-name { font-weight: 700; font-size: 1.1rem; }
.price-desc { font-size: 0.85rem; color: var(--text-muted); display: block; }
.price-value { font-weight: 800; font-size: 1.2rem; color: var(--primary); white-space: nowrap; margin-left: 10px;}

/* VIP CARD */
.vip-card {
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%); color: white;
    padding: 2.5rem; border-radius: var(--radius-lg); position: relative;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5); text-align: center;
}
.vip-badge {
    position: absolute; top: 15px; right: 15px; background: var(--primary);
    color: white; font-size: 0.7rem; font-weight: 900; padding: 4px 10px; border-radius: 4px;
}
.vip-header h3 { font-size: 1.8rem; margin: 0; }
.vip-price { font-size: 2.5rem; font-weight: 900; color: var(--primary); margin: 0.5rem 0; }
.vip-sub { font-size: 0.9rem; opacity: 0.7; margin-bottom: 2rem; }
.vip-features { text-align: left; margin-bottom: 2rem; display: grid; gap: 0.8rem; }
.vip-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.vip-features i { color: var(--primary); width: 20px; text-align: center; }

/* FOOTER */
footer { background: #111; color: #a1a1aa; padding: 5rem 0 2rem; }
.footer-logo { font-size: 2rem; font-weight: 900; color: white; margin-bottom: 1rem; }
.footer-logo span { color: var(--primary); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: white; margin-bottom: 1.5rem; font-size: 1.1rem; }
.hours-list li { display: flex; justify-content: space-between; margin-bottom: 0.5rem; border-bottom: 1px solid #222; padding-bottom: 0.5rem; }
.cookie-settings-link {
    background: transparent; border: 1px solid #333; color: #ccc;
    padding: 0.5rem 1rem; border-radius: 50px; cursor: pointer; font-size: 0.8rem;
}
.cookie-settings-link:hover { border-color: var(--primary); color: white; }
.footer-bottom { text-align: center; border-top: 1px solid #222; padding-top: 2rem; font-size: 0.8rem; }
.footer-legal-links { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.legal-link { color: #ccc; font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.legal-link:hover { color: var(--primary); text-decoration: underline; }

/* --- MOBILE & RESPONSIVE FIXES --- */

@media (max-width: 900px) {
    .price-layout { grid-template-columns: 1fr; } 
    .about-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 3rem; }
}

@media (max-width: 768px) {
    /* --- MENÜ FIXES --- */
    .mobile-toggle { 
        display: flex; 
        align-items: center; justify-content: center; flex-direction: column;
        z-index: 2005; /* Immer ganz oben */
    }
    .mobile-toggle.active {
        border: 2px solid var(--primary);
        border-radius: 5px; width: 45px; height: 45px; padding: 0;
        position: fixed; top: 1.5rem; right: 5%;
    }
    .nav-menu {
        position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
        background: #050505; /* Tiefschwarz */
        flex-direction: column; justify-content: center; align-items: center;
        transform: translateX(100%); transition: transform 0.3s ease-in-out;
        box-shadow: none; z-index: 2000;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu ul { flex-direction: column; align-items: center; gap: 2.5rem; }
    .nav-link { 
        font-size: 1.8rem; font-weight: 800; 
        color: white !important; /* Immer weiß im Menü */
        text-transform: uppercase;
    }
    .nav-link:hover { color: var(--primary) !important; }

    /* Burger Animation */
    .mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
    .mobile-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: white; }
    .mobile-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: white; }
    
    /* --- PREIS FIX (Verhindert Verrutschen) --- */
    .price-row {
        flex-wrap: nowrap; /* WICHTIG: Erzwingt eine Zeile */
        align-items: center;
        gap: 15px;
    }
    .price-info {
        flex: 1; /* Text darf schrumpfen/umbrechen */
        min-width: 0;
    }
    .price-value {
        flex-shrink: 0; /* Preis bleibt stabil */
    }
    
    /* --- VIP BADGE FIX (Überlappung) --- */
    .vip-card {
        margin-top: 2rem;
        padding-top: 4rem; /* Platz oben schaffen */
    }
    .vip-badge {
        /* Zentriert oben */
        top: 15px;
        right: 50%;
        transform: translateX(50%);
        white-space: nowrap;
    }

    /* Layout Allgemein */
    section { padding: 3rem 0; } 
    .hero { background-attachment: scroll; } 
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .section-title-left { text-align: center; font-size: 1.8rem; }
    .about-text { text-align: center; }
    .location-text { justify-content: center; }
}

/* --- ANIMATIONS --- */
.hero-loaded .hero-title, .hero-loaded .hero-subtitle, .hero-loaded .hero-btn { opacity: 1; transform: translateY(0); }
.hero-title, .hero-subtitle, .hero-btn { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.hero-loaded .hero-subtitle { transition-delay: 0.2s; } .hero-loaded .hero-btn { transition-delay: 0.4s; }

/* --- COOKIES --- */
.cookie-banner {
    position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%); width: 92%; max-width: 600px;
    background: var(--cookie-bg); color: white; padding: 1.5rem; border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); z-index: 2000; display: none; border: 1px solid var(--cookie-border);
}
.cookie-banner-inner { display: flex; flex-direction: column; gap: 1rem; text-align: center; }
.cookie-banner-actions { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.cookie-btn { padding: 0.6rem 1.2rem; border-radius: 50px; border: none; font-weight: 600; cursor: pointer; }
.cookie-btn--primary { background: var(--primary); color: white; }
.cookie-btn--secondary { background: #333; color: white; }
.cookie-btn--ghost { background: transparent; color: #aaa; border: 1px solid #333; }

/* MODAL */
.cookie-modal-backdrop {
    position: fixed; inset: 0; 
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center; z-index: 2100;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cookie-modal-backdrop.active { opacity: 1; visibility: visible; pointer-events: auto; }
.cookie-modal-backdrop[hidden] { display: none !important; }

.cookie-modal {
    background: var(--cookie-modal-bg); color: white; padding: 1.5rem; border-radius: var(--radius-lg);
    width: 92%; max-width: 500px; position: relative; border: 1px solid var(--cookie-border);
    pointer-events: auto; max-height: 90vh; overflow-y: auto;
}
.cookie-toggle { display: flex; justify-content: space-between; margin-top: 1rem; padding: 0.5rem; background: rgba(255,255,255,0.05); border-radius: 8px; }
.cookie-modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }