/* Allgemeine Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

header {
    background-color: #f2f2f2;
    color: #333333;
    padding: 0px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #333333;
    padding: 20px !important;
    margin-top: -37px;
}

nav {
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: #333333;
    text-decoration: none;
    margin: 0 20px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #cccccc;
}

main {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1, h2, h3 {
    color: #333333;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

footer {
    background-color: #f2f2f2;
    color: #333333;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer {
    background-color: #666666; /* Dunkler Hintergrund */
    color: #ecf0f1; /* Helle Schriftfarbe für guten Kontrast */
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1200px; /* Maximale Breite für den Inhalt */
    margin: 0 auto; /* Zentriert den Inhalt */
}

footer p {
    margin: 0;
    font-size: 14px;
}

.footer-link, footer a {
    color: #f39c12;
    text-decoration: none; /* Entfernt die Unterstreichung der Links */
    font-weight: 500;
    transition: color 0.3s ease-in-out; /* Sanfter Übergang beim Hover */
}

.footer-link:hover {
    color: #f39c12; /* Goldene Farbe beim Hover */
    text-decoration: underline; /* Unterstreichung bei Hover */
}

@media (max-width: 768px) {
    footer p {
        font-size: 12px; /* Kleinere Schrift auf mobilen Geräten */
    }
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    color: #ffffff;
    padding: 15px;
    text-align: center;
}

.cookie-banner button {
    background-color: #cccccc;
    color: #333333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
    background-color: #b3b3b3;
}

.parallax {
    background-image: url('images/3.jpg'); /* Bildpfad anpassen */
    height: 600px;
    background-attachment: fixed;
    background-position: 25% 95%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px;
}

#map{
     background-image: url('images/map.png'); /* Bildpfad anpassen */
    height: 600px;
    background-attachment: fixed;
    background-position: 50% 90%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 0px;
  
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li::before {
    content: "\2714\0020";
    color: #27ae60;
    font-weight: bold;
}

/* Media Queries für Responsivität */
@media (max-width: 480px) {
    nav a {
        margin: 10px 5px;
        padding: 8px 12px;
    }
    main {
        padding: 20px;
    }
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5rem;
    }
    nav {
        flex-direction: column;
        align-items: center;
    }
    nav a {
        margin: 5px 0;
        padding: 8px;
        font-size: 1rem;
    }
    .cookie-banner {
        font-size: 0.875rem;
    }
}

/* Hamburger-Menü für kleinere Bildschirme */
.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
}

.menu-icon div {
    width: 25px;
    height: 4px;
    background-color: #333333;
    margin: 4px 0;
}

/* Mobile Navigation */
.nav-links {
    display: flex;
    justify-content: center;
    width: 100%;
}

.nav-links a {
    display: block;
    padding: 10px 20px;
}

/* Dropdown-Menü */
.nav-links.mobile {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #e0e0e0;
}

.nav-links.mobile a {
    text-align: center;
    width: 100%;
    padding: 12px 20px;
}

/* Öffnen der mobilen Navigation */
.nav-links.active {
    display: flex;
}

/* Media Query für kleinere Bildschirme */
@media (max-width: 480px) {
    nav {
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
    }
    .menu-icon {
        display: flex;
        float:right;
    }
    .nav-links {
        display: none;
        flex-direction: column;
    }
}


        
#map { height: 400px; width: 100%; border-radius: 5px; }

input, textarea, button { width: 100%; padding: 10px; margin-top: 10px; border: 1px solid #ccc; border-radius: 5px; }
button { background-color: #4CAF50; color: white; border: none; cursor: pointer; }
button:hover { background-color: #45a049; }
