/* style.css - helliz Luxury Mobile-Ready Theme */
:root {
    --gold: #C19A6B;
    --dark-deep: #0A0A0A;
    --dark-soft: #161616;
    --text-main: #E0E0E0;
    --text-muted: #A8A8A8;
    --white: #FFFFFF;
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; transition: var(--transition); }

body {
    background-color: var(--dark-deep);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--white); font-weight: 400; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* NAVIGATION & BURGER */
nav {
    padding: 25px 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid rgba(193, 154, 107, 0.15);
    position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(15px);
}
.nav-content { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); text-decoration: none; letter-spacing: 4px; text-transform: uppercase; }

.nav-links { list-style: none; display: flex; gap: 35px; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.burger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1100; padding: 5px; }
.burger span { width: 28px; height: 1px; background-color: var(--gold); display: block; }

/* SECTIONS */
section { padding: 80px 0; }
.gold-line { width: 60px; height: 1px; background: var(--gold); margin-bottom: 30px; }

/* HERO */
.hero { display: flex; align-items: center; gap: 60px; min-height: 80vh; padding: 40px 0; }
.hero-text { flex: 1.2; }
.hero-text h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.1; margin-bottom: 30px; }
.hero-image { flex: 0.8; border: 1px solid var(--gold); padding: 20px; background: var(--dark-soft); }
.vector-img { width: 100%; height: auto; fill: var(--gold); opacity: 0.8; }

/* BUTTONS */
.btn {
    display: inline-block; padding: 18px 40px; border: 1px solid var(--gold); color: var(--gold);
    text-decoration: none; text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem;
    background: transparent; cursor: pointer;
}
.btn:hover { background: var(--gold); color: var(--dark-deep); }

/* GRID & CARDS */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.card { background: var(--dark-soft); padding: 60px 40px; border: 1px solid rgba(255,255,255,0.03); text-align: center; }
.icon-svg { width: 50px; height: 50px; fill: var(--gold); margin-bottom: 30px; }

/* VIDEO BOX */
.video-box {
    width: 100%; aspect-ratio: 16/9; background: #000; border: 1px solid var(--gold);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    cursor: pointer; color: var(--gold); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px;
}

/* FOOTER & LEGAL */
.legal-box { background: var(--dark-soft); padding: 40px; border-left: 2px solid var(--gold); margin-bottom: 20px; }
footer { padding: 80px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.75rem; letter-spacing: 1px; }
footer a { color: var(--gold); text-decoration: none; cursor: pointer; }

@media (max-width: 900px) {
    .hero { flex-direction: column; text-align: center; gap: 40px; }
    .hero-text h1 { font-size: 2.8rem; }
    .burger { display: flex; }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: var(--dark-deep); flex-direction: column; align-items: center;
        justify-content: center; gap: 40px; z-index: 1050;
        display: none; /* Verhindert das seitliche Wackeln */
    }
    
    .nav-links.active { 
        display: flex; 
        right: 0; 
    }
    .nav-links a { font-size: 1.5rem; }
}
