/* --- DAY'N'NIGHT SALZBURG - PREMIUM DARK & GOLD DESIGN --- */

/* 1. Grund-Setup & Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --bg-page: #0d0d0d;         /* Tiefschwarz */
    --bg-card: #161616;         /* Anthrazit für Boxen */
    --gold: #c5a059;            /* Das Gold aus deinem Logo */
    --gold-dark: #a68544;       /* Dunkleres Gold für Hover-Effekte */
    --text-white: #ffffff;
    --text-muted: #b3b3b3;      /* Grau für weniger wichtigen Text */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 2. Header & Navigation */
.main-header {
    background-color: #000000;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}
/* Styling für den neuen Slogan im Header */
.header-tagline {
    text-align: center;
    flex: 1; /* Nimmt den mittleren Platz ein */
}

.gold-text {
    color: #c5a059; /* Dein Gold-Ton */
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

/* Hilfsklasse für die Anordnung */
.header-contact-group {
    display: flex;
    gap: 20px;
}

/* Mobile Optimierung */
.mobile-slogan {
    display: none; /* Auf Desktop verstecken */
    font-size: 0.7rem;
    color: #c5a059;
}

@media (max-width: 900px) {
    .header-tagline {
        display: none; /* Platz sparen auf dem Handy */
    }
    .mobile-slogan {
        display: block; /* Unterm Logo auf dem Handy anzeigen */
        text-align: center;
        margin-top: 5px;
    }
    .header-container {
        flex-direction: column;
        gap: 10px;
    }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.header-logo img {
    height: 140px;
    width: auto;
    display: block;
}

.header-contact-item a {
    text-decoration: none;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.header-contact-item .icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2px;
}

.header-contact-item .contact-text {
    font-size: 0.85rem;
    font-weight: 600;
}

.header-contact-item a:hover {
    color: var(--gold);
}

/* 3. Hero / Home Image */
.home-image-container {
    width: 100%;
    background-color: #000;
}

.pure-home-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    filter: brightness(0.6);
}

/* 4. Allgemeiner Sektions-Style */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.gold-subtitle {
    display: block;
    text-align: center;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* 5. About Us */
.about-us {
    text-align: center;
}

.about-container {
    max-width: 850px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

/* 6. Booking Steps */
.booking-steps {
    background-color: #050505;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 15px;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.step-card:hover {
    border-bottom: 3px solid var(--gold);
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    font-weight: bold;
}

/* 7. Fleet Selection */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fleet-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #222;
    transition: var(--transition);
}

.fleet-card:hover {
    border-color: var(--gold);
}

.fleet-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.fleet-info {
    padding: 25px;
    text-align: left;
}

.fleet-details {
    list-style: none;
    margin: 20px 0;
}

.fleet-details li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.badge {
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: bold;
    position: absolute;
    margin: 15px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.btn-select:hover, .fleet-card.selected .btn-select {
    background: var(--gold);
    color: #000;
}

/* 8. Booking Form */
.booking-form-area {
    background-color: #050505;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

input, select, textarea {
    flex: 1;
    padding: 15px;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
}

input:focus {
    border-color: var(--gold);
    outline: none;
}
/* Formular Layout Korrektur */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stapelt Label über Input */
    text-align: left;
}

.input-group label {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--gold);
    outline: none;
}

/* Mobile Optimierung: Felder untereinander auf dem Handy */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--gold);
    border: none;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--gold-dark);
}

/* 9. Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
}

.client-info {
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

.client-info strong {
    display: block;
    color: var(--gold);
}

/* 10. Footer */
.main-footer {
    background-color: #000000;
    padding: 80px 20px 30px;
    border-top: 3px solid var(--gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: #000;
    background: var(--gold);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
}
/* Für die Kontakt-Links im Footer oder Header */
.contact a {
    color: #c5a059; /* Dein Gold-Ton */
    text-decoration: none;
    transition: 0.3s;
}

.contact a:hover {
    color: #ffffff; /* Wird beim Draufklicken weiß */
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.85rem;
}

/* 11. Mobile Optimierung */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .form-group {
        flex-direction: column;
    }

    h2 {
        font-size: 1.8rem;
    }

    .pure-home-img {
        height: 30vh;
    }

    .about-features {
        flex-direction: column;
        gap: 20px;
    }
}