:root { 
    --accent: #A67C52; 
    --black: #111111; 
    --white: #ffffff;
}

body { font-family: 'Inter', sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.logo-font { font-family: 'Playfair Display', serif; letter-spacing: 0.05em; }

/* Responsive Navigation */
.nav-link { 
    font-size: 10px; 
    text-transform: uppercase; 
    letter-spacing: 0.15em; 
    font-weight: 700; 
    transition: 0.3s; 
    color: var(--black);
    white-space: nowrap;
}

/* Fix für Mobile: Navigation wird untereinander oder scrollbar */
@media (max-width: 768px) {
    .nav-container { 
        flex-direction: column; 
        gap: 1rem; 
        padding: 1rem;
    }
    .video-container { height: 60vh; }
    h2 { font-size: 3rem !important; }
}

/* Video & Fallback-Bilder */
.video-container { 
    position: relative; 
    width: 100%; 
    height: 80vh; 
    overflow: hidden; 
    background-color: #000;
}

.video-container video, 
.video-container .fallback-img { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    min-width: 100%; 
    min-height: 100%; 
    transform: translate(-50%, -50%); 
    object-fit: cover; 
}

/* Danke-Seite & Formular Styling */
input, textarea { border-radius: 0; appearance: none; }