/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    background: #000;
    color: #fff;
    padding: 0.25rem 0;
    text-align: center;
}

.logo-container-oben {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Logo links ausrichten */
}

.logo-container-oben img {
    max-width: 125px; /* Passen Sie die Größe nach Bedarf an */
    height: auto;
    /* Weitere Stile für das Logo falls benötigt */
}

.logo-container-oben img:hover {
    transform: scale(1.05); /* Erhöht die Größe des Logos um 5% beim Überfahren */
    transition: transform 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-links {
    list-style: none;
}

.nav-links li {
    display: inline;
    margin: 0 1rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hamburger Menü Styling */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger-menu .bar {
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Initial styles for the nav ul */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Leicht transparenter Hintergrund */
    z-index: 1000; /* Stellen Sie sicher, dass es über anderen Elementen liegt */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: left 0.3s ease; /* Animation für das Einblenden */
}

/* Styles for the nav ul when shown */
nav ul.show {
    display: flex;
    left: 0;
}

nav ul li {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #ffffff;
}

nav li {
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease, border 0.3s ease;
    border: 0px solid #866d56;
    padding: 5px 5px;
    border-radius: 25px;
}

/* Datenschutz-Popup-Styles */
.datenschutz-popup {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.datenschutz-content {
    padding: 20px;
    text-align: center;
}

.datenschutz-content h2 {
    margin-bottom: 10px;
}

.datenschutz-content p {
    margin-bottom: 20px;
}

.datenschutz-content a {
    color: #4CAF50;
    text-decoration: underline;
}

.datenschutz-akzeptieren {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: #ffffff;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.opening-hours {
    margin-top: 1rem;
    font-size: 1rem;
    color: #fff;
}

.cta-button {
    background: #f04;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    display: inline-block;
}

.services, .about, .contact, .payment, .disclaimer {
    padding: 2rem 1rem;
    text-align: center;
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service {
    flex: 1;
    padding: 1rem;
    max-width: 300px;
    margin: 1rem;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact form label {
    display: block;
    margin-top: 1rem;
}

.contact form input, .contact form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.contact form button {
    background: #333;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    margin-top: 1rem;
    cursor: pointer;
}

.payment {
    background: fff;
    padding: 2rem 1rem;
}

.payment-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    padding: 1rem;
    max-width: 150px;
    margin: 1rem;
    text-align: center;
}

.payment-option img {
    max-width: 100%;
    height: auto;
}

.pricing {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #f4f4f4;
    padding: 2rem 1rem;
}

.price-tile {
    flex: 1;
    padding: 1rem;
    max-width: 300px;
    margin: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-tile h3 {
    margin-bottom: 0.5rem;
}

.price-tile .subheading {
    font-weight: bold;
    color: #555;
    margin-bottom: 0.5rem;
}

.pricing-leistungen {
    display: grid;
    flex-direction: column;
    align-items: center; /* Kacheln horizontal zentrieren */
    justify-content: center; /* Kacheln vertikal zentrieren (optional, wenn zentriert in voller Höhe) */
    min-height: 100vh; /* optional, um den gesamten Bildschirm auszufüllen */
    flex-wrap: wrap;
    background: #f4f4f4;
    padding: 2rem 1rem;
}

.price-tile-leistungen {
    flex: 1;
    padding: 1rem;
    max-width: 300px;
    margin: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-tile-leistungen h3 {
    margin-bottom: 0.5rem;
}

.price-tile-leistungen .subheading {
    font-weight: bold;
    color: #555;
    margin-bottom: 0.5rem;
}

.centered-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 20vh; /* optional, um die gesamte Höhe des Bildschirms zu verwenden */
}


.text-blocks-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

.text-block {
    max-width: 600px;
    margin: 0 auto;
}

.disclaimer {
    background: #f4f4f4;
    padding: 1rem 0;
    margin-top: 2rem;
}

.disclaimer p {
    margin: 0.5rem 0;
}

footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
    width: 100%;
}

footer p {
    margin: 0.5rem 0;
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.footer-social-icons {
    display: inline-block;
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 24px;
}

.footer-social-icons a:hover {
    transform: scale(1.1);
    background-color: #4a3c2f;
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-icons a {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin: 0 10px;
    text-align: center;
    line-height: 50px;
    background-color: #333;
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.footer-social-icons a[href*="facebook"] {
    background-color: #000;
    position: relative;
}

.footer-social-icons a[href*="instagram"] {
    background-color: #333;
    position: relative;
}

.footer-social-icons a[href*="youtube"] {
    background-color: #000;
    position: relative;
}

.footer-social-icons a[href*="tiktok"] {
    background-color: #333;
    position: relative;
}

.footer-links-container a {
    color: white;
    text-decoration: none; /* Optional: Entfernt den Unterstrich */
    margin: 0 0px;
}

.phone-button,
.whatsapp-button,
.mail-button {
    position: fixed;
    right: 20px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 50px;
    height: 50px;
    z-index: 1000;
}

.phone-button {
    bottom: 65px;
}

.whatsapp-button {
    bottom: 120px;
}

.mail-button {
    bottom: 10px;
}

.phone-button:hover, .mail-button:hover, .whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.hamburger-menu {
    display: block;
    cursor: pointer;
    font-size: 40px;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 2000;
}

nav {
    background-color: #000;
    padding: 10px 0;
    font-size: 15px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: none; /* Standardmäßig versteckt */
    position: fixed;
    }


nav ul.show {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px; /* Breite des Menüs */
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Leicht transparenter Hintergrund */
    z-index: 1000; /* Stellen Sie sicher, dass es über anderen Elementen liegt */
    transition: left 0.3s ease; /* Übergangsanimation */
}

nav ul.show {
    left: 0; /* Menü einblenden */
}

nav ul li {
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid #ffffff;
}

nav li {
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease, border 0.3s ease;
    border: 0px solid #866d56;
    padding: 5px 5px;
    border-radius: 25px;
}

.google-map {
    display: flex; /* Verwenden Sie Flexbox, um den Inhalt zu zentrieren */
    justify-content: center; /* Zentrieren Sie den Inhalt horizontal */
    margin-top: 20px; /* Etwas Abstand zum oberen Element */
    margin-bottom: 30px;
}

.content-wrapper {
    margin-top: 15px;
    margin-bottom: 15px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing {
        flex-direction: column;
        align-items: center;
    }
    .price-tile {
        width: 90%; /* Adjust this as needed for centering */
        max-width: 300px; /* Ensure it doesn't get too wide */
        margin: 1rem auto; /* Center the tile */
    }
    .hamburger-menu {
        display: block;
        top: 50px; /* Hier den Abstand nach unten anpassen */
    }

    nav ul {
        display: none;
        position: absolute;
        background-color: #000;
        right: 0;
        top: 40px; /* Höhe des Hamburger-Icons */
        width: 100%;
    }

    nav ul li {
        text-align: center;
        padding: 15px;
        border-bottom: 0px solid #ffffff;
    }

    nav a:hover {
        color: #333; /* Gold-Farbe als Beispiel */
        border-color: #000;
        text-decoration: none;
    }

    nav {
        font-size: 17px;
    }
    .google-map iframe {
        width: 400px; /* Reduzierte Höhe für kleine Bildschirme */
        height: 400px;
    }
}

@media (min-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        background-color: #000;
        right: 0;
        top: 40px; /* Höhe des Hamburger-Icons */
        width: 100%;
    }

    nav ul li {
        text-align: center;
        padding: 15px;
        border-bottom: 0px solid #ffffff;
    }

    nav a:hover {
        color: #333; /* Gold-Farbe als Beispiel */
        border-color: #000;
        text-decoration: none;
    }

    nav {
        font-size: 17px;
    }
    .hamburger-menu {
        display: block;
        top: 50px; /* Hier den Abstand nach unten anpassen */
    }

}
