/* --- Globale Einstellungen --- */
:root {
    --primary-blue: #000; /* Dunkles Navy Blau (als Schwarz definiert) */
    --secondary-blue: #153366; /* Helleres Blau für Hover */
    --primary-gold: #c5a47e; /* Elegantes Gold */
    --hover-gold: #0b1c3c;
    --text-dark: #333;
    --text-light: #f4f4f4;
    --bg-light: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold { color: var(--primary-gold); }
.text-blue { color: var(--primary-blue); }

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-gold {
    background-color: var(--primary-blue);
    color: #fff;
}

.btn-gold:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

/* Container für die Buttons */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Der transparente Email-Button */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s all;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* --- Header --- */
.header {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.logo span {
    color: var(--primary-gold);
}

.nav-list {
    display: flex;
}

.nav-list li {
    margin-left: 25px;
}

.nav-list a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-list a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* --- Hero Slider (Merged & Cleaned) --- */
.hero-slider-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-blue);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Logo */
.hero-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 30px;
    display: inline-block;
}

/* Animation für Text, wenn Slide aktiv wird */
.slide.active .slide-title { animation: fadeInUp 0.8s ease forwards 0.3s; }
.slide.active .slide-text { animation: fadeInUp 0.8s ease forwards 0.5s; }
.slide.active .btn { animation: fadeInUp 0.8s ease forwards 0.7s; }

.slide-title, .slide-text, .slide .btn {
    opacity: 0; 
    transform: translateY(30px);
}

.slide-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-text {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation (Big Numbers, No Circles) */
.slider-nav {
    position: absolute;
    bottom: 50px; /* Pushes the nav exactly above the info-bar overlap */
    left: 0;
    width: 100%; 
    display: flex;
    justify-content: center; 
    gap: 40px;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 15px 0; 
    z-index: 20; /* Forces it to stay on top of everything */
}

.nav-num {
    color: rgba(255, 255, 255, 0.4);
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    
    /* NEW: Adds space above the number and sets an invisible border */
    padding-top: 10px; 
    border-top: 1px solid transparent; 
}

.nav-num.active {
    color: #ffffff;
    transform: scale(1.1);
    
    /* NEW: Turns the top border gold for the active slide */
    border-top: 3px solid var(--primary-gold); 
}

.nav-num:hover {
    color: rgba(255, 255, 255, 0.8);
}



/* --- Info Bar --- */
.info-bar {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.info-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    margin: 10px 0;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.info-item strong {
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--primary-gold);
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--primary-gold);
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-light);
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 200px;
    background-color: #ddd;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 25px;
    text-align: center;
}

.service-info i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.service-info h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* --- CTA Section --- */
.cta {
    background-image: url('../img/hero-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    position: relative;
    color: #fff;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* --- Footer --- */
.footer {
    background-color: #010101;
    color: #bbb;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: #fff;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
    padding-bottom: 5px;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list i {
    color: var(--primary-gold);
    width: 20px;
}

.contact-list a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    background-color: #000;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        text-align: center;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 15px 0;
    }

    .hamburger {
        display: block;
        color: #fff;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .info-bar {
        margin-top: 0;
    }

    .hero-logo {
        max-width: 150px;
    }

    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }

    /* Mobile adjustments for the new navigation */
    .slider-nav {
        bottom: 0; /* Keeps it above the info-bar on mobile too */
        gap: 25px; /* Adds comfortable space between numbers */
        padding: 10px 0;
    }

    .nav-num {
        font-size: 2rem; /* Slightly smaller so it fits well on narrow screens */
        padding-top: 8px; /* Keeps the gold line looking clean */
    }
}