/* --- GLOBAL STYLE --- */
:root { 
    --black: #121212; 
    --white: #ffffff; 
    --accent: #d4af37; 
    --grey: #fcfcfc; 
}

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

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--black); 
    line-height: 1.8; 
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { 
    max-width: 1000px; /* Leicht erhöht für besseres Side-by-Side */
    margin: 0 auto; 
    padding: 0 30px; 
}

/* --- NAVIGATION --- */
nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 90px; 
    padding: 0 5%; 
    position: sticky; 
    top: 0; 
    background: #fff; 
    z-index: 2000; 
    border-bottom: 1px solid #eee; 
}

.nav-logo { 
    font-size: 1.2rem; 
    font-weight: 800; 
    letter-spacing: 4px; 
    text-transform: uppercase;
    position: relative;
    z-index: 2001;
}

.nav-links { 
    display: flex; 
    gap: 2rem; 
    list-style: none; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--black); 
    font-size: 0.8rem; 
    font-weight: 700; 
    text-transform: uppercase; 
}

.menu-toggle { 
    display: none; 
    flex-direction: column; 
    gap: 6px; 
    cursor: pointer; 
    background: none; 
    border: none; 
    z-index: 3005; 
    padding: 15px; 
    margin-right: -15px; 
    outline: none;
}

.menu-toggle span { 
    display: block; 
    width: 25px; 
    height: 2px; 
    background: var(--black); 
    transition: 0.3s; 
}

/* --- MOBILE OVERLAY --- */
.mobile-overlay { 
    position: fixed; 
    top: 0; 
    right: -100%; 
    width: 100%; 
    height: 100vh; 
    background: #ffffff; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 1.2rem; 
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 2500; 
    list-style: none;
    visibility: hidden;
    padding: 20px;
}

.mobile-overlay.active { 
    right: 0; 
    visibility: visible !important; 
}

.mobile-overlay a { 
    font-size: 1.6rem; 
    text-decoration: none; 
    color: var(--black); 
    font-weight: 800; 
    text-transform: uppercase; 
    text-align: center;
}

.mobile-overlay li:nth-last-child(-n+2) a {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    opacity: 0.6;
    margin-top: 5px;
}

/* --- SECTIONS --- */
.hero { 
    padding: 120px 0 80px; 
    text-align: center; 
}

.hero h1 { 
    font-size: clamp(2.2rem, 8vw, 3.5rem); 
    font-weight: 300; 
    letter-spacing: -1px; 
    line-height: 1.1; 
    margin-bottom: 20px; 
}

.hero h1 strong { font-weight: 700; }

.hero p { 
    font-size: 1.1rem; 
    color: #666; 
    font-weight: 300; 
}

/* --- FLEX LAYOUT (Side-by-Side Desktop) --- */
.flex-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.flex-section.reverse {
    flex-direction: row-reverse;
}

.flex-img {
    flex: 0 0 42%; /* Bildgröße am Desktop */
}

.flex-text {
    flex: 1;
}

/* --- ACCORDIONS & CONTENT --- */
.expand-box { 
    margin-bottom: 2rem; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 2rem; 
}

.expand-header { 
    cursor: pointer; 
    position: relative; 
}

.expand-header h2 { 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-bottom: 8px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.teaser-text { 
    font-size: 1.05rem; 
    color: #666; 
    font-weight: 400; 
    margin-bottom: 12px; 
    display: block; 
}

.read-more-hint { 
    font-size: 0.75rem; 
    color: var(--accent); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    margin-top: 10px; 
}

.expand-content { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.6s ease; 
}

.expand-box.active .expand-content { 
    max-height: 2000px; 
    padding-top: 20px; 
}

.expand-content p { 
    margin-bottom: 20px; 
    font-size: 1.05rem; 
    color: #333; 
}

.expand-header i.fa-plus { 
    transition: 0.4s; 
    font-size: 1.1rem; 
    color: var(--accent); 
}

.expand-box.active i.fa-plus { 
    transform: rotate(45deg); 
    color: #999; 
}

.expand-box.active .read-more-hint { opacity: 0; }

/* --- BUTTONS & LINKS --- */
.btn-black { 
    text-decoration:none; 
    background:#000; 
    color:#fff; 
    padding: 15px 30px; 
    display:inline-block; 
    font-weight:700; 
    font-size:0.8rem; 
    letter-spacing:1.5px; 
    border-radius: 4px;
    transition: 0.3s;
}

.btn-black:hover { opacity: 0.8; }

.accent-link { 
    color: var(--accent); 
    font-weight: 700; 
    text-decoration: none; 
}

.close-link { 
    color: #d4af37; 
    text-decoration: none; 
    font-size: 0.75rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
}

.close-hint-container { 
    text-align: right; 
    margin-top: 20px; 
}

/* --- VIP BOX --- */
.vip-box { 
    border: 1px solid #d4af37; 
    background-color: #fcfcfc; 
    padding: 40px 30px; 
    border-radius: 12px; 
    margin: 60px 0; 
    border-bottom: 1px solid #d4af37;
}

.vip-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 25px; 
    margin: 30px 0; 
}

.vip-label { 
    font-size: 0.8rem; 
    letter-spacing: 1.5px; 
    color: var(--accent); 
    margin-bottom: 8px; 
}

/* --- IMAGES --- */
.img-container {
    margin-bottom: 40px;
}

.clickable-img { 
    width: 100%; 
    height: auto; 
    aspect-ratio: attr(width) / attr(height); 
    object-fit: cover; 
    display: block; 
    cursor: pointer; 
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.clickable-img:hover { transform: scale(1.02); }

/* --- LIGHTBOX --- */
.lightbox { 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background: rgba(0,0,0,0.97); 
    display: none; 
    align-items: center; 
    justify-content: center; 
    z-index: 5000; 
    padding: 20px; 
    cursor: zoom-out; 
}

.lightbox img { 
    max-width: 95%; 
    max-height: 90vh; 
    object-fit: contain; 
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    
    .flex-section, .flex-section.reverse { 
        flex-direction: column; 
        gap: 30px; 
        margin-bottom: 60px;
    }

    .flex-img { width: 100%; }

    .expand-header h2 { font-size: 1.5rem; }
    .hero { padding: 80px 0 40px; }
    
    .clickable-img {
        max-height: 70vh;
    }
}