/* Grundeinstellungen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0e12; /* Dunkler Hintergrund */
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Verhindert Scrollen für den Landing-Page-Look */
}
/* Cookie Banner Styling */
.cookie-overlay {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: rgba(13, 18, 22, 0.95);
    border: 1px solid #00bcd4;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
    border-radius: 10px;
    padding: 20px 30px;
    z-index: 2000;
    display: none; /* Wird per JS eingeblendet */
    backdrop-filter: blur(10px);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-text h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #00bcd4;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #e0e0e0;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}

.cookie-text a {
    color: #00bcd4;
    text-decoration: underline;
}

/* Buttons */
.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons button {
    font-family: 'Bebas Neue', sans-serif;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 1px;
}
/* --- Mobile Menu Logik --- */
.mobile-menu-icon {
    display: none; /* Standardmäßig versteckt */
    color: #00bcd4;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

.btn-primary {
    background-color: #00bcd4;
    color: #0d1216;
    border: none;
}

.btn-primary:hover {
    background-color: #ffffff;
    box-shadow: 0 0 15px #00bcd4;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    border-color: #00bcd4;
    color: #00bcd4;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 10;
}

.header-logo img {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(0, 188, 212, 0.3));
}

/* --- Navigation Desktop (Standard) --- */
nav {
    display: flex;
    gap: 25px;
}

/* --- Mobile Anpassungen --- */
@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block; /* Hamburger-Icon anzeigen */
    }

    nav {
        /* WICHTIG: Hier explizit ausblenden */
        display: none; 
        
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(13, 18, 22, 0.98);
        border: 2px solid #00bcd4;
        padding: 20px;
        border-radius: 8px;
        width: 200px;
        z-index: 1000;
        box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    }

    /* Nur wenn 'active' durch JS hinzugefügt wird, zeigen wir es an */
    nav.active {
        display: flex !important; 
    }

    nav a {
        margin: 10px 0;
        font-size: 1.4rem;
        width: 100%;
        text-align: center;
    }
}

nav a {
    color: #00bcd4; /* Dein Cyan-Farbton */
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease; /* Weicher Übergang */
    display: inline-block; /* Wichtig für die Bewegung nach oben */
}

/* Der Leuchteffekt beim Hover (identisch zu Social Media) */
nav a:hover {
    color: #ffffff; /* Wechselt zu Weiß */
    transform: translateY(-3px); /* Hüpft leicht nach oben */
    text-shadow: 0 0 10px rgba(0, 188, 212, 0.8), 
                 0 0 20px rgba(0, 188, 212, 0.4); /* Glow-Effekt */
}

/* Hauptbereich */
main {
    flex: 1;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Optional: Ein dezenter Background-Effekt wie im Bild */
    background: radial-gradient(circle, rgba(0, 188, 212, 0.05) 0%, rgba(10, 14, 18, 1) 80%);
	padding-bottom: 50px; /* Schiebt den Inhalt der Mitte etwas hoch */
}

.center-content {
    text-align: center;
    z-index: 5;
}

.main-logo {
    width: 300px;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 15px rgba(0, 188, 212, 0.5));
}

.title {
    font-size: 5rem;
	font-weight: 100;
    letter-spacing: 2px;
    margin-bottom: 5px;
	color: #00b4d5;
}

.subtitle {
    font-size: 2rem;
	font-weight: 100;
    letter-spacing: 2px;
}

/* Seiten-Grafiken (Hexagons) */
.side-graphics {
    position: absolute;
    width: 30%;
    height: 70%;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.left {
    left: 20px;
    /* Hier kannst du dein generiertes Hexagon-Bild einfügen */
    background-image: url('hexagons-links.png'); 
    background-position: left center;
}

.right {
    right: 20px;
    background-image: url('hexagons-rechts.png');
    background-position: right center;
}

/* Footer */
footer {
    padding: 20px 30px;
    background: rgba(10, 14, 18, 0.95);
    width: 100%;
    
    /* Wichtig: Abstand nach unten massiv erhöhen */
    padding-bottom: calc(env(safe-area-inset-bottom) + 10px); 
    
    /* Zentrierung für mobile Ansicht */
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Verteilt Icons links und Links rechts */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Social Media Icons Styling */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #00bcd4; /* Dein Cyan-Farbton */
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a[aria-label="WhatsApp"]:hover {
    color: #25D366; /* WhatsApp Grün */
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.8));
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-3px); /* Kleiner Sprung-Effekt beim Drüberfahren */
    filter: drop-shadow(0 0 8px rgba(0, 188, 212, 0.8)); /* Glow-Effekt */
}

/* Footer Links (Impressum & Datenschutz) */
.footer-links a {
    color: #00bcd4; /* Startet im Layerwelten-Cyan */
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block; /* Wichtig, damit der Sprung-Effekt funktioniert */
    transition: all 0.3s ease;
    opacity: 0.8; /* Leicht dezent im Normalzustand */
}

/* Der konsistente Leuchteffekt */
.footer-links a:hover {
    color: #ffffff; /* Wechselt zu Weiß */
    opacity: 1;
    transform: translateY(-3px); /* Hüpft wie die Social-Icons nach oben */
    text-shadow: 0 0 8px rgba(0, 188, 212, 0.8), 
                 0 0 15px rgba(0, 188, 212, 0.4); /* Eleganter Glow */
}
/* Modal Grundgerüst */
.modal {
    display: none; /* Standardmäßig unsichtbar */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Dunkler Overlay-Hintergrund */
    backdrop-filter: blur(5px); /* Leichtes Verschwimmen des Hintergrunds */
}

/* Grunddesign für das Modal-Fenster */
.modal-content {
    background-color: #0d1216;
    margin: 5% auto; /* Weniger Abstand nach oben */
    padding: 30px;
    border: 2px solid #00bcd4;
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.4);
    width: 90%; /* Auf Desktop etwas schmaler */
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
}

/* Spezielle Anpassung für Mobilgeräte (Handys) */
@media (max-width: 600px) {
    .modal-content {
        width: 95%; /* Nutzt fast die volle Breite */
        margin: 10px auto; /* Minimaler Abstand zum Rand oben/unten */
        padding: 20px 15px; /* Weniger Innenabstand, mehr Platz für Text */
    }

    .modal-content h2 {
        font-size: 1.8rem; /* Verkleinert die Überschrift, damit sie nicht bricht */
        word-wrap: break-word; /* Erzwingt Umbruch bei extrem langen Wörtern */
        hyphens: auto; /* Erlaubt Silbentrennung */
        line-height: 1.2;
    }

    .modal-content h3 {
        font-size: 1.2rem;
    }

    .close-btn {
        top: 10px;
        right: 15px;
        font-size: 28px;
    }
}
.modal-content a {
    color: #00bcd4;
    text-decoration: none;
    transition: 0.3s;
}

.modal-content a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #00bcd4;
}
/* Styling für Chrome/Safari/Edge Scrollbalken */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #0d1216;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #00bcd4;
    border-radius: 10px;
    border: 2px solid #0d1216;
}

/* Überschriften im Modal in Bebas Neue */
.modal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #00bcd4;
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* Schließen-Button (X) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #00bcd4;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ffffff;
    transform: rotate(90deg);
}
.legal-section {
    margin-bottom: 25px;
}

.legal-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #00bcd4;
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.legal-section p {
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.legal-section a {
    color: #00bcd4;
    text-decoration: none;
    transition: 0.3s;
}

.legal-section a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px #00bcd4;
}
/* Styling für den Textinhalt im Modal */
.privacy-body {
    text-align: left;
    font-family: 'Arial', sans-serif; /* Fließtext in gut lesbarer Sans-Serif */
    font-size: 0.95rem;
    color: #cccccc;
}

.privacy-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #00bcd4;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.privacy-body p {
    margin-bottom: 15px;
}

.privacy-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.privacy-body ul li {
    margin-bottom: 5px;
    list-style-type: square;
    color: #00bcd4; /* Aufzählungspunkte in Cyan */
}

.privacy-body a {
    color: #00bcd4;
    text-decoration: underline;
}

.privacy-body a:hover {
    color: #ffffff;
}
/* Mobile Optimierung */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 25px; /* Mehr Platz zwischen Social Icons und Rechts-Links */
        padding-bottom: 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: column; /* Links untereinander für bessere Klickbarkeit */
        align-items: center;
        gap: 15px;
        margin-bottom: 20px; /* Zusätzlicher Puffer nach unten */
    }

    .footer-links a {
        margin-left: 0; /* Reset des Desktop-Abstands */
        font-size: 1rem;
        padding: 5px; /* Größere Klickfläche */
    }
}

/* --- Globaler Fix für die Seitenhöhe --- */
html, body {
    /* Verhindert, dass der Inhalt hinter die Leiste rutscht */
    height: 100%;
    min-height: -webkit-fill-available; 
}
/* Responsive Anpassung */
@media (max-width: 768px) {
    .title { font-size: 3rem; }
    .subtitle { font-size: 1.2rem; }
    .side-graphics { display: none; } /* Versteckt Grafiken auf dem Handy */
}
/* --- WhatsApp Call-to-Action Button --- */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Abstand zwischen Icon und Text */
    margin-top: 35px;
    padding: 14px 35px;
    background-color: transparent;
    color: #00bcd4; /* Dein Layerwelten-Cyan */
    border: 2px solid #00bcd4;
    border-radius: 5px;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif !important;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 188, 212, 0.1);
}

/* Hover-Effekt: Weißer Text, Cyan-Glow und Bewegung nach oben */
.whatsapp-btn:hover {
    color: #ffffff;
    background-color: rgba(0, 188, 212, 0.05);
    transform: translateY(-4px); /* Hüpft wie die Nav-Links nach oben */
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.6), 
                0 0 40px rgba(0, 188, 212, 0.2);
    border-color: #ffffff;
}

/* Aktiv/Klick-Zustand: Wechselt zu WhatsApp-Grün für direktes Feedback */
.whatsapp-btn:active {
    transform: translateY(-1px);
    color: #25D366;
    border-color: #25D366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

/* Icon-Größe im Button */
.whatsapp-btn i {
    font-size: 1.6rem;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .whatsapp-btn {
        width: 85%; /* Nimmt auf Smartphones fast die volle Breite ein */
        padding: 12px 25px;
        font-size: 1.1rem;
        margin-top: 25px;
    }
}