/* Grundlegende Stile */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #fff;
    background: url('pics/background.png') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
}

/* Mobile-Only Hintergrund */
@media (max-width: 768px) {
    body, html {
        background: url('pics/background-mobil.png') no-repeat center center fixed;
        background-size: cover;
    }
}

/* Header */
header {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* Logo */
.logo-container {
    flex: 0 1 auto;
}

.logo {
    max-height: 50px;
    object-fit: contain;
}

/* Burger-Button */
.burger-menu {
    display: flex; /* Stelle sicher, dass es sichtbar ist */
    flex-direction: column;
    justify-content: space-between;
    height: 30px; /* Erhöhe die Höhe für bessere Sichtbarkeit */
    width: 35px; /* Breiter für besseres Erkennen */
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    position: absolute; /* Setze es oben rechts */
    top: 20px; /* Abstand nach oben */
    right: 20px; /* Abstand von der rechten Seite */
}

.burger-menu span {
    display: block;
    height: 4px; /* Dickere Linien */
    width: 100%; /* Vollständig ausfüllen */
    background: white; /* Farbe der Linien */
    border-radius: 2px; /* Runde Ecken */
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.burger-menu span:hover {
    background: #b89454; /* Goldene Farbe bei Hover */
}

/* Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    text-align: center;
    z-index: 1000;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.mobile-nav ul li a:hover {
    color: #b89454;
}

nav {
    margin-left: auto; /* Navigation nach rechts schieben */
    margin-right: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #b89454;
    color: #111;
}

/* Burger-Menü aktiv */
.burger-menu.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-nav.active {
    display: block;
}

/* Datenschutz & Impressum Sektionen */
#privacy-policy, #imprint {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.8); /* Dunkler Hintergrund für Lesbarkeit */
    color: #fff;
    border-radius: 5px;
    margin: 20px auto;
    max-width: 1200px; /* Begrenzte Breite auf großen Bildschirmen */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Leichter Schatteneffekt */
    line-height: 1.6;
    font-size: 1.1em;
}

/* Überschriften innerhalb der Sektionen */
#privacy-policy h2, #imprint h2 {
    font-size: 2em;
    color: #b89454; /* Goldene Akzentfarbe */
    margin-bottom: 20px;
    text-align: center;
}

#privacy-policy h3, #imprint h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #d0a86a; /* Leichterer Goldton */
}

/* Textabsätze */
#privacy-policy p, #imprint p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Links */
#privacy-policy a, #imprint a {
    color: #b89454; /* Goldener Link */
    text-decoration: none;
    border-bottom: 1px solid #b89454; /* Unterstreichung für Fokus */
    transition: color 0.3s ease, border-color 0.3s ease;
}

#privacy-policy a:hover, #imprint a:hover {
    color: #fff;
    border-color: #fff; /* Änderung bei Hover */
}


/* Mobile Navigation Anpassung */
@media (max-width: 768px) {
       
    header {
        flex-direction: row; /* Elemente nebeneinander für Desktop */
        justify-content: space-between; /* Platz zwischen Logo und Navigation */
        align-items: center;
    }

    nav {
        margin-left: auto; /* Navigation nach rechts verschieben */
        margin-right: 0;   /* Kein zusätzlicher Abstand */
    }

    nav ul {
        justify-content: flex-end; /* Elemente innerhalb der Navigation rechtsbündig */
    }

    nav ul li {
        margin: 10px 0; /* Abstand zwischen den Links */
    }

    #privacy-policy, #imprint {
        padding: 40px 15px;
        font-size: 1em; /* Leicht kleinere Schrift */
    }

    #privacy-policy h2, #imprint h2 {
        font-size: 1.8em; /* Kleinere Überschrift */
    }

    #privacy-policy h3, #imprint h3 {
        font-size: 1.3em; /* Kleinere Zwischenüberschrift */
    }
}

/* Desktop-Ansicht */
@media (min-width: 768px) {
    .burger-menu {
        display: none; /* Verstecke das Burger-Menü auf Desktop */
    }

    .mobile-nav {
        display: none; /* Verstecke die mobile Navigation auf Desktop */
    }

    .mobile-nav ul {
        display: flex;
        gap: 20px;
    }

    .mobile-nav ul li {
        margin-bottom: 0;
    }
}

.hero {
    text-align: center;
    padding: 150px 20px;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
    font-size: 3em;
    margin: 20px 0;
}

.hero-content p {
    margin: 10px 0;
    font-size: 1.2em;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background: #b89454;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #d0a86a;
}

#highlights {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background: rgba(255, 255, 255, 0.1); /* Transparentere Kacheln */
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature:hover {
    background-color: #b89454;
    color: #111;
    transform: translateY(-5px);
}

#gallery {
    padding: 60px 20px;
}

/* Galerie */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 5px;
}

footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 40px 20px;
    text-align: center;
}

footer form input, footer form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: #333;
    border: none;
    color: #fff;
    border-radius: 5px;
}

footer form button {
    padding: 10px 20px;
    background: #b89454;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 20px;
    font-size: 0.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: #b89454;
    text-decoration: none;
    margin: 0 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    header {
        flex-direction: row; /* Logo und Menü nebeneinander */
        justify-content: space-between; /* Platz zwischen Logo und Menü */
        align-items: center;
    }

    .logo-container {
        margin-left: 20px; /* Abstand von der linken Seite */
    }

    .hero-content {
        padding: 40px 20px; /* Abstand nach oben und unten */
        text-align: center;
    }

    .cta-button {
        margin-top: 20px; /* Abstand über dem Button */
    }

    nav {
        display: none; /* Desktop-Navigation ausblenden */
    }

    .burger-menu {
        margin-right: 20px; /* Abstand von der rechten Seite */
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column; /* Navigation und Logo gestapelt */
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-content {
        padding: 30px 15px; /* Weniger Platz bei sehr kleinen Bildschirmen */
    }
}