:root {
    --orange: #FF4F00;
    --dark: #070707;
    --glass: rgba(15, 15, 15, 0.75);
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--dark); font-family: 'Inter', sans-serif; color: white; }

.glass-header {
    /* Geändert von fixed auf absolute, damit es mitscrollt */
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%;
    
    padding: clamp(10px, 3vw, 20px); 
    z-index: 1000;
    display: flex; 
    justify-content: center;
    
    /* Hintergrund & Glas-Effekt */
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* WICHTIG: Damit der Inhalt nicht direkt unter dem Header klebt */
body {
    padding-top: 0; /* Da absolute Positionierung Platz einnimmt, falls nötig anpassen */
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Scrolled State */
.header-inner.scrolled {
    max-width: 90%; padding: 8px 16px;
    border-color: var(--orange);
}

.brand { display: flex; align-items: center; gap: 10px; }
.flag { width: 20px; height: 14px; background: linear-gradient(#AE1C28 33%, #FFF 33% 66%, #21468B 66%); border-radius: 2px; }
.logo-text { font-weight: 900; letter-spacing: 1px; font-size: 1.1rem; }
.logo-text span { color: var(--orange); }

/* Navigation Desktop */
.desktop-nav { display: none; align-items: center; gap: 25px; }
.desktop-nav a { color: white; text-decoration: none; font-weight: 700; font-size: 0.8rem; letter-spacing: 1px; opacity: 0.8; transition: 0.3s; }
.desktop-nav a:hover { opacity: 1; color: var(--orange); }

.wa-header-btn { 
    background: #25D366; color: white !important; 
    padding: 10px 20px; border-radius: 14px; opacity: 1 !important;
}

/* Hamburger Trigger */
.menu-trigger {
    display: flex; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; z-index: 1100;
}
.bar { width: 28px; height: 2px; background: white; transition: 0.4s; border-radius: 2px; }

/* --- MOBILE OVERLAY --- */
.mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--dark); z-index: 1050;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

.overlay-content { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.overlay-content a {
    color: white; text-decoration: none; font-size: 2.5rem; font-weight: 900;
    letter-spacing: -1px; transition: 0.3s;
}
.wa-overlay-btn { color: #25D366 !important; font-size: 1.5rem !important; margin-top: 20px; }

/* Hamburger Animation */
.menu-trigger.open .bar:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-trigger.open .bar:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .menu-trigger { display: none; }
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: clamp(60px, 10vw, 120px) 20px;
    background: linear-gradient(rgba(7, 7, 7, 0.75), rgba(7, 7, 7, 0.75)), url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?q=80&w=1200&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-First */
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text .tag {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

.about-text h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 30px;
}

.about-text p {
    color: #aaa;
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Stats Row */
.stats {
    display: flex;
    gap: 40px;
}

.num {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.label {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Image Stack Visual */
.about-visual {
    position: relative;
    padding: 20px;
}

.image-stack {
    position: relative;
    height: 450px;
    width: 100%;
}

.img-main {
    width: 85%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    height: 60%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 5px solid var(--dark); /* Trennung zum Hauptbild */
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: white;
    color: black;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.7rem;
    transform: rotate(5deg);
}

/* --- TOUR & STANDORTE --- */
.tour-section {
    padding: clamp(60px, 8vw, 100px) 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .tag { color: var(--orange); font-weight: 800; letter-spacing: 3px; font-size: 0.8rem; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-top: 10px; }

.tour-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Die Hauptkarte (Next Stop) */
.location-card {
    background: #111;
    border-radius: 24px;
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.next-stop {
    border: 1px solid rgba(255, 79, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.status-badge {
    background: var(--orange);
    color: white;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 6px 15px;
    display: inline-block;
    border-radius: 0 0 12px 0;
}

.card-content {
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.date-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    min-width: 80px;
}

.date-box .day { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.date-box .month { font-size: 0.8rem; font-weight: 700; color: var(--orange); }

.info-box h3 { font-size: 1.5rem; font-weight: 900; margin-bottom: 5px; }
.address { color: #888; font-size: 0.9rem; margin-bottom: 15px; }
.time-pill {
    background: white; color: black;
    padding: 5px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 800; display: inline-block;
}

.map-link {
    margin-left: auto;
    color: var(--orange);
    background: rgba(255, 79, 0, 0.1);
    width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: 0.3s;
}

.map-link:hover { background: var(--orange); color: white; }

/* Grid für die weiteren Termine */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.mini .card-content { padding: 20px; gap: 20px; }
.date-mini { font-weight: 900; color: var(--orange); font-size: 1rem; white-space: nowrap; }
.info-mini h4 { font-size: 1rem; font-weight: 800; }
.info-mini p { font-size: 0.8rem; color: #666; }
.info-mini .time { font-size: 0.8rem; font-weight: 700; color: #aaa; }

/* Mobile Anpassung */
@media (max-width: 600px) {
    .card-content { flex-direction: column; text-align: center; }
    .map-link { margin: 20px auto 0; }
    .date-box { width: 100%; }
}

/* --- TEAM SECTION --- */
.team-section {
    padding: clamp(60px, 10vw, 120px) 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    /* Mobile 1 Spalte, Tablet 2, Desktop 4 */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #111;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
}

.member-img {
    height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: grayscale(100%); /* Professioneller BW-Look */
    transition: filter 0.5s ease;
}

.team-card:hover .member-img {
    filter: grayscale(0%); /* Farbe bei Hover */
}

.member-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.role {
    background: var(--orange);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(255, 79, 0, 0.3);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.member-info p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

/* Mobile-Feinschliff */
@media (max-width: 480px) {
    .member-img {
        height: 320px;
    }
}

/* --- BENTO GALLERY BLOCK --- */
.gallery-section {
    padding: clamp(60px, 10vw, 120px) 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 Spalten */
    grid-auto-rows: 150px; /* Basis-Höhe einer Einheit */
    gap: 15px;
    grid-auto-flow: dense; /* Füllt Lücken für den Block-Effekt */
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

/* Hover-Effekt */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Bento-Logik für die Block-Anordnung */
.w-2 { grid-column: span 2; }
.h-2 { grid-row: span 2; }

/* Desktop-Anpassung für den perfekten Block */
@media (min-width: 768px) {
    .bento-gallery {
        grid-template-columns: repeat(4, 1fr); /* 4 Spalten System */
        grid-auto-rows: 180px;
        gap: 20px;
    }
    
    /* Wir stellen sicher, dass die w-2/h-2 Klassen auf Desktop wirken */
    .gallery-item.w-2 { grid-column: span 2; }
    .gallery-item.h-2 { grid-row: span 2; }
}

/* Verhindert "Einsamkeit" von Bildern auf Mobile */
@media (max-width: 480px) {
    .bento-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Auf ganz kleinen Screens nehmen die w-2 Bilder die volle Breite ein */
    .w-2 { grid-column: span 2; }
}

/* --- STORY CONTENT SECTION --- */
.story-content-section {
    padding: clamp(60px, 12vw, 150px) 20px;
    background: #0d0d0d; /* Minimaler Kontrast zum tiefschwarzen Hintergrund */
}

.story-container {
    max-width: 900px; /* Begrenzte Breite für bessere Lesbarkeit */
    margin: 0 auto;
}

.section-header-left {
    margin-bottom: 50px;
}

.section-header-left .tag {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.section-header-left h2 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 0.95;
    font-weight: 900;
}

/* Text-Styling für Absätze */
.story-text-block {
    display: flex;
    flex-direction: column;
    gap: 25px; /* Abstand zwischen den Absätzen */
}

.story-text-block p {
    color: #ccc;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8; /* Großzügiger Zeilenabstand */
    font-weight: 400;
}

/* Der erste Absatz (Lead-Text) sticht hervor */
.story-text-block p.lead {
    color: white;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 600;
    line-height: 1.6;
    border-left: 4px solid var(--orange);
    padding-left: 25px;
    margin-bottom: 10px;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .section-header-left {
        text-align: left;
    }
    .story-text-block p.lead {
        padding-left: 15px;
    }
}

/* --- BENTO MENU GRID --- */
.menu-section {
    padding: clamp(60px, 10vw, 120px) 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 Spalten */
    grid-auto-rows: 180px;
    gap: 15px;
    grid-auto-flow: dense;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.bento-item:hover {
    transform: scale(0.98);
    border-color: var(--orange);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.5s;
}

.bento-item:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Info Layer */
.bento-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    pointer-events: none;
}

.bento-info h3 {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.price {
    color: var(--orange);
    font-weight: 800;
    font-size: 0.8rem;
}

/* Bento Logik */
.w-2 { grid-column: span 2; }
.h-2 { grid-row: span 2; }

/* Spezielle Headline für das Highlight */
.highlight h3 {
    font-size: 1.5rem;
}

/* Desktop Upgrade */
@media (min-width: 1024px) {
    .bento-menu {
        grid-template-columns: repeat(4, 1fr); /* 4 Spalten auf Desktop */
        grid-auto-rows: 200px;
        gap: 20px;
    }
}

/* --- COMPACT WHATSAPP SECTION --- */
.wa-compact-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.wa-compact-card {
    background: #25D366;
    max-width: 900px; /* Schmaler gehalten */
    width: 100%;
    border-radius: 30px;
    padding: 30px 40px;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.wa-content-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.wa-icon-mini {
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-text-mini {
    flex-grow: 1;
    color: white;
}

.wa-text-mini h2 {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
}

.wa-text-mini .black {
    color: #000;
}

.wa-text-mini p {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.wa-btn-narrow {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.wa-btn-narrow:hover {
    background: white;
    color: #25D366;
    transform: scale(1.05);
}

/* Mobile-Anpassung für die schmale Sektion */
@media (max-width: 768px) {
    .wa-content-split {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .wa-compact-card {
        padding: 40px 20px;
    }

    .wa-btn-narrow {
        width: 100%;
        text-align: center;
    }
}

/* --- FOOTER FINAL --- */
.main-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer p {
    font-size: 18px !important; /* Vorgabe: 18px für p-Tags */
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-locations {
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-locations h3 {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--orange);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-links a:hover {
    color: var(--orange);
}

.footer-legal {
    padding: 80px 0 40px;
    text-align: center;
}

.logo-footer {
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 15px;
}

.logo-footer span { color: var(--orange); }

.legal-links {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    gap: 40px;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.status-dsgvo {
    color: #25D366 !important;
    font-weight: 900;
}

/* Styling für den Logo-Link */
.brand {
    text-decoration: none; /* Entfernt Unterstreichung vom Link */
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0; /* Startet unsichtbar */
}

/* Animation: Logo erscheint verzögert */
.delayed-logo {
    animation: fadeInLogo 0.8s ease forwards;
    animation-delay: 1.2s; /* Erscheint 1.2 Sekunden nach dem Laden */
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Verhindert Hover-Effekte auf dem Text-Link, falls nicht gewünscht */
.brand:hover {
    opacity: 0.8;
}
