/* ========== Globale Stile ========== */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9fafb; /* Angenehmer Hintergrund */
    color: #333;
}

/* Sicherheitsmaßnahmen */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
img, iframe {
    pointer-events: none;
}

/* ========== Header & Navigation ========== */
.glass-header {
    will-change: backdrop-filter;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* Logo */
.header-logo {
    height: 80px;
}

/* Desktop Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
}
.navbar a:hover {
    color: #555;
}

/* Mobile Menü */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}
.mobile-menu.open {
    display: block;
}

/* ========== Hero-Bereich ========== */
.hero {
    height: 80vh; /* Hero größer für bessere Wirkung */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: url("../assets/hero.jpg") no-repeat center center / cover;
}
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
}
.hero-subtitle {
    font-size: 1.7rem;
    margin-top: 10px;
}

/* Apple-Style Button */
.hero-btn {
    display: inline-block;
    padding: 12px 24px;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease-in-out;
}
.hero-btn:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.3);
}

/* ========== Kontaktleiste über dem Footer ========== */
.contact-bar {
    background-color: #d1d1d1;
    color: #ffffff;
    padding: 15px 0;
}

/* Container für zentrierte Darstellung */
.container-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gleichmäßige Verteilung der Kontaktinfos */
.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 40px; /* Abstand zwischen den Blöcken */
}

/* Kontaktblöcke */
.contact-block {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

/* Individuelle Icon-Größen */
.contact-block img.phone-icon {
    width: 80px;
    height: 80px;
}

.contact-block img.location-icon {
    width: 80px;
    height: 80px;
}

.contact-block img.email-icon {
    width: 80px;
    height: 80px;
}


/* ========== Copyright-Bereich ========== */
.copyright-section {
    background-color: #1f2937;
    color: white;
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-top: 0px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

/* ========== Scroll to Top Button ========== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
}
.scroll-to-top:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* ========== Responsive Anpassungen ========== */
@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .contact-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
