/* --- CSS Variables & Reset (Unverändert) --- */
:root {
    --color-dark: #121212; 
    --color-medium-dark: #1a1a1a;
    --color-gold: #D4AF37; 
    --color-white: #ffffff;
    --color-gray: #a0a0a0;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --section-spacing: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* --- Typography Utils (Unverändert) --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--color-white); }
h3 { font-size: 1.4rem; margin-bottom: 15px; color: var(--color-white); }
p { font-size: 1.05rem; color: var(--color-gray); margin-bottom: 25px; }
.small-text { font-size: 0.9rem; margin-bottom: 0; }

.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }

/* --- Layout Utils (Unverändert) --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section { padding: var(--section-spacing) 0; }
.section-dark { background-color: var(--color-dark); }
.section-medium-dark { background-color: var(--color-medium-dark); }

.section-subtitle {
    text-transform: uppercase;
    color: var(--color-gold);
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

/* --- Buttons (Unverändert) --- */
.btn {
    display: inline-block;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-dark);
    border-color: var(--color-gold);
}
.btn-gold:hover {
    background-color: transparent;
    color: var(--color-gold);
}

.btn-transparent {
    border-color: var(--color-white);
    color: var(--color-white);
}
.btn-transparent:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}
.icon-btn i { margin-left: 10px; }


/* =========================================
   HEADER & NAVIGATION (Unverändert)
========================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
    background: transparent;
}

/* Class added via JS on scroll */
#navbar.scrolled {
    background: rgba(18, 18, 18, 0.98);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-white);
}
.logo-dot { color: var(--color-gold); }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin: 0 20px; }
.nav-links a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--color-gold); }
.nav-btn { margin-left: 20px; padding: 10px 25px; }
.hamburger { display: none; color: var(--color-white); font-size: 1.5rem; cursor: pointer; z-index: 1001; }

/* --- Language Switch Bar (Unverändert) --- */
.lang-switch-bar { 
    position: fixed; 
    top: 0; 
    right: 0; 
    z-index: 1001; 
    padding: 15px 15px 0 15px; 
    display: flex;
    gap: 10px;
} 
.lang-switch-bar a { 
    color: var(--color-white); 
    text-decoration: none; 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s;
} 
.lang-switch-bar a:hover { 
    opacity: 1; 
    color: var(--color-gold); 
} 
.lang-active { 
    color: var(--color-gold) !important; 
    opacity: 1 !important;
}


/* =========================================
   HERO SECTION (Unverändert)
========================================= */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 18, 1) 5%, rgba(18, 18, 18, 0.7) 50%, rgba(18, 18, 18, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; 
    max-width: 800px;
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns { display: flex; gap: 20px; }

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    font-size: 2rem;
    z-index: 2;
}
.animate-bounce { animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-20px);} 60% {transform: translateY(-10px);} }

/* =========================================
   ABOUT SECTION (Unverändert)
========================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: -20px 20px 0px rgba(212, 175, 55, 0.1); 
}

.features-list { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
    margin-top: 30px; 
}
.feature-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
}
.feature-item i { 
    font-size: 1.5rem; 
    margin-top: 3px; 
}
.feature-item strong { 
    color: var(--color-white); 
    display: block; 
    margin-bottom: 5px; 
}


/* =========================================
   SERVICES SECTION (Unverändert)
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--color-dark);
    padding: 40px 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
    top: 0;
}

.service-card:hover {
    border-color: var(--color-gold);
    top: -10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: #151515;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

/* =========================================
   CONTACT SECTION (Form & Info)
========================================= */
.contact-grid {
    gap: 80px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: var(--color-medium-dark); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-gold);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    text-align: center;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* Contact Info Display (Right side) */
.contact-info {
    padding: 20px 0;
}
.contact-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-box i {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.contact-box h4 {
    margin-bottom: 5px;
}
.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 10px;
}

/* Stil für die eingebettete Karte */
.map-embed {
    width: 100%;
    height: 350px; 
    border: 0;
    border-radius: 4px;
    margin-top: 30px;
}

/* --- Honeypot Anti-Spam (Feld verstecken) --- */
.honeypot {
    position: absolute !important;
    left: -9999px;
    height: 1px;
    width: 1px;
    overflow: hidden;
    opacity: 0;
}


/* =========================================
   FOOTER (Unverändert)
========================================= */
#footer-branding {
    padding: 30px 0;
    background: #080808; 
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-gray); 
    font-size: 0.9rem;
}
.logo-small { font-size: 1.4rem; }
.footer-bottom a {
    color: var(--color-gold);
    text-decoration: none;
}


/* =========================================
   SCROLL ANIMATIONS (Unverändert)
========================================= */
.fade-in-up, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}
.fade-in-up { transform: translateY(30px); }
.fade-in-left { transform: translateX(-30px); }
.fade-in-right { transform: translateX(30px); }

.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}


/* =========================================
   MOBILE RESPONSIVENESS (Unverändert)
========================================= */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    
    .nav-links { 
        position: fixed; 
        right: -100%; 
        top: 70px; 
        height: calc(100vh - 70px); 
        flex-direction: column; 
        background-color: var(--color-dark); 
        width: 100%; 
        padding: 40px; 
        transition: right 0.4s; 
        align-items: center; 
        justify-content: center; 
        gap: 30px; 
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    
    /* FIX: Hide the button and adjust spacing */
    .nav-btn { display: none; } 
    .nav-container { padding-right: 20px; } 
    
    .lang-switch-bar {
         top: 30px; 
         right: 70px; 
         background: none;
    }
    .hamburger {
        margin-right: 0;
        position: absolute;
        right: 20px;
        top: 30px;
    }

    
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .split-image { order: -1; } 
    .features-list { grid-template-columns: 1fr; }

    .hero-btns { flex-direction: column; }
    .btn { width: 100%; text-align: center; }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-info {
        order: -1; 
    }
    .contact-details-grid {
        grid-template-columns: 1fr 1fr; 
    }
    
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}