/* ============================= */
/* ✅ RESET & GRUNDEINSTELLUNGEN */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #121212; 
    color: #E0E0E0; 
    line-height: 1.6;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden; 
}

/* ============================= */
/* ✅ GLOBALE BREITEN-ANPASSUNG */
/* ============================= */
main {
    width: 98%;  
    max-width: 1400px; 
    margin: 0 auto;
    padding: 15px;
}

.container, 
#about-content, 
#team-container, 
#studio-gallery, 
#faq, 
#timeline, 
.booking-container, 
.info-container, 
#studio-swiper {
    max-width: 95%;
    width: 95%;
    margin: 0 auto;
}

/* Bilder skalieren */
.swiper-slide, 
.studio-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* ============================= */
/* ✅ NAVIGATION */
/* ============================= */


/* ============================= */
/* ✅ MOBILE NAVIGATION */
/* ============================= */

/* ============================= */
/* ✅ RESPONSIVE DESIGN About */
/* ============================= */
@media (max-width: 768px) {

/* Verhindert horizontales Scrollen */
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

/* Kein Scrollen bei geöffnetem Popup */
body.popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

    #about-content, #team-container, #studio-gallery {
        max-width: 95%;
    }

    #about-content {
        background: rgba(18, 18, 18, 0.95); /* Hintergrund wie beim Logo */
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(192, 192, 192, 0.3);
        padding: 20px;
        margin: 20px auto;
        text-align: center;
    }

    #about-text { display: none; }
    #about-text-preview {
        max-height: 150px; 
        overflow: hidden; 
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    #about-text-preview {
        max-height: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
        word-wrap: break-word;
        color: #E0E0E0;
        font-size: 1em;
        line-height: 1.5;
        margin-top: 20px;
        background: rgba(18, 18, 18, 0.95); /* Gleicher Hintergrund wie das Logo */
        border-radius: 10px;
        padding: 15px;
    }

    .show-more-btn {
        background: linear-gradient(135deg, #e63946, #c62839);
        color: #fff;
        border: none;
        padding: 12px 18px;
        margin: 20px auto; /* ⬅️ Automatischer Rand für Zentrierung */
        border-radius: 30px;
        cursor: pointer;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: fit-content; /* ⬅️ Passt die Breite an den Text an */
        text-align: center;
    }

    .show-more-btn::after {
        content: '➜';
        font-size: 1em;
        transition: transform 0.3s ease;
    }

    .show-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    }

    .show-more-btn:hover::after {
        transform: translateX(5px);
    }

    /* ✅ Mobile Popup */
    .about-popup, .popup-overlay {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.7);
        pointer-events: none;
    }

    /* Popup mit Scroll und vollständigem Text */
    .about-popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 400px;
        height: 60vh;
        background: #1e1e1e;
        color: #E0E0E0;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
        border: 2px solid #e63946;
        z-index: 10000;
        overflow-y: auto;
        text-align: justify;
    }

    .about-popup.show, .popup-overlay.show {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .about-popup.show {
        display: block;
    }

    .about-popup .close-popup {
        position: sticky;
        bottom: 0;
        left: 0;
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 15px;
        background: #e63946;
        color: white;
        border: none;
        border-top: 2px solid #fff;
        border-radius: 0 0 15px 15px;
        cursor: pointer;
        transition: background 0.3s;
        font-size: 1.1em;
        z-index: 1010;
    }

    .about-popup .close-popup:hover {
        background: #c62839;
    }

    .close-popup {
        background: #8B0000;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px;
        transition: background 0.3s;
    }

    .popup-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }

    .popup-overlay.show {
        display: block;
    }

    .close-popup:hover {
        background: #e63946;
    }
}

/* ✅ Desktop bleibt unverändert */
@media (min-width: 769px) {
    .desktop-only { display: block !important; }
    .mobile-only { display: none !important; }
}

/* ✅ Team-Popup */
#team-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: #292929;
    color: #E0E0E0;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
    z-index: 10000;
}

#team-popup.show {
    display: block;
}

#team-popup h3 {
    margin-bottom: 10px;
    color: #FFD700;
}

#team-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

#team-popup .close-btn:hover {
    color: #e63946;
}

/* 🖼️ Swiper Container */
/* 🖼️ Swiper Container */
#studio {
    margin: 40px auto;
    position: relative;
    z-index: 2;
    max-width: 100%;
    text-align: center;
}

/* 📱 Tablet-Ansicht */
@media (max-width: 768px) {
    .polaroid {
        width: 150px;
        height: 200px;
        transform: rotate(0deg);
    }
    .caption {
        font-size: 12px;
    }
    .polaroid:hover {
        transform: scale(1.05);
    }
}

/* 📱 Smartphone-Ansicht */
@media (max-width: 480px) {
    .polaroid-gallery {
        flex-direction: column;
        align-items: center;
    }

    .polaroid {
        width: 100%;
        max-width: 300px;
        height: auto;
        transform: rotate(0deg);
    }

    .polaroid img {
        height: auto;
        aspect-ratio: 3/4;
    }

    .caption {
        font-size: 14px;
    }

    .lightbox img {
        max-height: 60vh;
    }

    .lightbox p {
        font-size: 1em;
    }

    .lightbox .close-btn {
        font-size: 1.5rem;
        top: 5px;
        right: 10px;
    }
}

.studio-desc {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 1em;
    padding: 5px 0;
    border-radius: 0 0 10px 10px;
    box-sizing: border-box;
    z-index: 10;
}

/* Fix: Verhindert ungewolltes Scrollen */
body {
    overflow-x: hidden;
}

/* ============================= */
/* ✅ STICKY WOLFLOUNGE BUTTON */
/* ============================= */
.mobile-dashboard-link {
    position: fixed;
    bottom: -50px;  /* 🔥 Standardmäßig versteckt */
    right: 15px;
    background: #e63946;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    z-index: 1100;
    transition: bottom 0.3s ease-in-out; /* 🔥 Smooth Slide-Effekt */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-dashboard-link.show {
    bottom: 35px; /* 🔥 Button slidet rein */
}

.mobile-dashboard-link:hover {
    background: #d62839;
    transform: scale(1.05); /* 🔥 Kleiner Hover-Effekt */
}


/* ============================= */
/* ✅ FOOTER */
/* ============================= */
footer {
    background: #1E1E1E;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #C0C0C0;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-login {
    display: block;
    text-align: center;
    color: gray;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-login:hover {
    color: white;
}

/* =========================== */
/* 📱 RESPONSIVE DESIGN GALERIE */
/* =========================== */

/* 🎯 Allgemeine Anpassungen */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🖼️ Memory-Wall anpassen */
.memory-wall {
    padding: 30px 15px;
    gap: 15px;
    justify-content: center;
}

/* 🎨 Memory-Karten */
.memory-card {
    width: 220px;
    height: 280px;
    transition: transform 0.5s, box-shadow 0.5s;
}

.memory-card:hover {
    transform: scale(1.15) rotate(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

/* 🔴 Hotspots */
.hotspot {
    width: 20px;
    height: 20px;
}

.hotspot::after {
    font-size: 0.8rem;
    padding: 4px 6px;
}

/* 🔍 Lightbox anpassen */
.lightbox {
    padding: 10px;
    text-align: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
}

.lightbox-caption {
    font-size: 1.2rem;
    margin-top: 15px;
}

/* =========================== */
/* 📱 TABLET (max-width: 768px) */
/* =========================== */
@media (max-width: 768px) {

    /* 📸 Memory-Wall anpassen */
    .memory-wall {
        flex-wrap: wrap;
        gap: 20px;
    }

    .memory-card {
        width: 180px;
        height: 240px;
    }

    .memory-caption {
        font-size: 0.95rem;
    }

    .hotspot {
        width: 18px;
        height: 18px;
    }

    .hotspot::after {
        font-size: 0.7rem;
        padding: 3px 5px;
    }

    .lightbox-caption {
        font-size: 1.1rem;
    }
}

/* =========================== */
/* 📱 SMARTPHONE (max-width: 480px) */
/* =========================== */
@media (max-width: 480px) {

    /* 📸 Memory-Wall als Spalte */
    .memory-wall {
        flex-direction: column;
        align-items: center;
    }

    .memory-card {
        width: 90%;
        height: auto;
        transform: rotate(0deg);
    }

    .memory-card img {
        height: auto;
        aspect-ratio: 4/3;
    }

    .memory-caption {
        font-size: 1.1rem;
    }

    .hotspot {
        width: 15px;
        height: 15px;
    }

    .hotspot::after {
        font-size: 0.65rem;
        padding: 2px 4px;
    }

    .lightbox-img {
        max-width: 100%;
        max-height: 60vh;
    }

    .lightbox-caption {
        font-size: 1rem;
    }
}

/* =========================== */
/* 🌐 ULTRA-WIDE-SCREENS */
/* =========================== */
@media (min-width: 1600px) {
    .memory-wall {
        max-width: 1400px;
        margin: 0 auto;
    }

    .memory-card {
        width: 250px;
        height: 300px;
    }

    .hotspot {
        width: 25px;
        height: 25px;
    }

    .hotspot::after {
        font-size: 1rem;
    }
}

/* =========================== */
/* 📱 MOBILE FAQ – CLEAN & FULLWIDTH */
/* =========================== */

/* 🌍 Volle Breite & keine Begrenzung */

body.faq-page main {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    #faq {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 20px 5px;
        box-sizing: border-box;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: none;
    }

    /* 🐺 Titel */
    #faq h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: #4b3832;
        text-align: center;
        text-transform: uppercase;
        text-shadow: 0 2px 3px rgba(0, 0, 0, 0.4);
    }

    /* 🖼️ FAQ-Kategorien – groß */
    .faq-category {
        margin: 15px 0;
        padding: 20px;
        border-radius: 6px;
        border-left: 6px solid #e63946;
        background: linear-gradient(145deg, #1e1e1e, #2e2e2e);
        color: #fff;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
        font-size: 1.4rem;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .faq-category:hover {
        transform: translateY(-5px);
        background: #e63946;
    }

    /* ❓ Fragen – mittelgroß */
    .faq-item {
        margin: 10px 0;
        background: #2e2e2e;
        color: #f0f0f0;
        border-left: 5px solid #e63946;
        border-radius: 5px;
        box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4);
        padding: 12px 15px;
    }

    .faq-question {
        font-size: 1rem;
        margin: 0;
        cursor: pointer;
        transition: background 0.3s;
    }

    .faq-question:hover {
        background: rgba(230, 57, 70, 0.4);
    }

    /* 💬 Antworten – klein */
    .faq-answer {
        display: none;
        font-size: 0.85rem;
        padding: 10px;
        background: #3a3a3a;
        color: #ccc;
        border-radius: 0 0 5px 5px;
        margin-top: 5px;
        border-left: 4px dashed #e63946;
    }

    .faq-answer.visible {
        display: block;
    }
}

/* 📱 Extra kleine Geräte */
@media (max-width: 480px) {
    #faq h1 {
        font-size: 1.5rem;
    }

    .faq-category {
        font-size: 1.2rem;
        padding: 15px;
    }

    .faq-question {
        font-size: 0.85rem;
    }

    .faq-answer {
        font-size: 0.75rem;
    }
}

/* =============================== */
/* 📱 RESPONSIVE DESIGN FÜR ALLE BEREICHE */
/* =============================== */

/* ✅ Basis für alle Geräte */
body, main, footer {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* 🌐 Horizontalen Scroll verhindern */
html, body {
    overflow-x: hidden;
    width: 100%;
}


/* 📱 Für Smartphones (bis 480px) */
@media (max-width: 480px) {

    /* 🌐 Hauptbereich */
    main {
        padding: 15px;
        margin: 10px auto;
        border-radius: 5px;
        box-shadow: 0 3px 10px rgba(192, 192, 192, 0.2);
    }

    /* 📜 Hintergrundbild anpassen */
    .piercing-booking-wrapper {
        padding: 20px;
        border: 5px solid #5a3e2b;
        border-radius: 15px;
        box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
        margin-top: 30px;
        background-size: cover;
    }

    /* 🖋️ Swiper */
    .swiper-container {
        max-width: 300px;
        height: 250px;
    }

    /* 🛎️ Glocken-Button */
    .book-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .button-text {
        font-size: 1rem;
        margin-top: 3px;
    }

    /* 📆 Kalender-Button */
    #calendar-button {
        padding: 10px 15px;
        font-size: 1rem;
    }

    #booking-popup {
        left: 5%;                  /* 5% vom linken Rand */
        right: 5%;                 /* 5% vom rechten Rand */
        width: 90%;                /* 90% der Bildschirmbreite */
        max-width: none;           /* Keine feste Maximalbreite */
        padding: 15px;             /* Weniger Innenabstand */
        font-size: 0.95rem;        /* Kleinere Schrift */
        box-sizing: border-box;    /* Padding mit einrechnen */
    }

    #booking-popup h2 {
        font-size: 1.3rem;         /* Überschrift kleiner */
        margin-bottom: 10px;
    }

    #popup-booking-form input,
    #popup-booking-form textarea {
        font-size: 0.85rem;
        padding: 6px;
    }

    .booking-info {
        font-size: 0.8rem;
        padding: 10px;
    }

    .close-btn {
        font-size: 16px;
        top: 2px;
        right: 5px;
    }

    .button-text {
        font-size: 1rem;
    }

    #calendar-button {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

/* 📱 Für Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {

    /* 📜 Hauptbereich */
    main {
        padding: 20px;
        margin: 15px auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(192, 192, 192, 0.3);
    }

    /* 🖋️ Swiper */
    .swiper-container {
        max-width: 350px;
        height: 280px;
    }

    /* 🛎️ Glocken-Button */
    .book-btn {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

    .button-text {
        font-size: 1.1rem;
    }

    /* 📆 Kalender-Button */
    #calendar-button {
        padding: 12px 18px;
        font-size: 1.1rem;
    }

    #booking-popup {
        left: 5%;                  /* 5% vom linken Rand */
        right: 5%;                 /* 5% vom rechten Rand */
        width: 90%;                /* 90% der Bildschirmbreite */
        max-width: none;           /* Keine feste Maximalbreite */
        padding: 15px;             /* Weniger Innenabstand */
        font-size: 0.95rem;        /* Kleinere Schrift */
        box-sizing: border-box;    /* Padding mit einrechnen */
    }

    #booking-popup h2 {
        font-size: 1.3rem;         /* Überschrift kleiner */
        margin-bottom: 10px;
    }

    #popup-booking-form input,
    #popup-booking-form textarea {
        font-size: 0.85rem;
        padding: 6px;
    }

    .booking-info {
        font-size: 0.8rem;
        padding: 10px;
    }

    .close-btn {
        font-size: 16px;
        top: 2px;
        right: 5px;
    }

    .booking-info {
        font-size: 1rem;
        padding: 15px;
    }
}

/* 💻 Für große Bildschirme (ab 769px) */
@media (min-width: 769px) {

    /* 🌐 Hauptbereich */
    main {
        max-width: 1000px;
        margin: 20px auto;
    }

    /* 📜 Hintergrund */
    .piercing-booking-wrapper {
        background-size: 100% auto;
    }

    /* 🛎️ Glocken-Button */
    .book-btn {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .button-text {
        font-size: 1.2rem;
    }

    /* 📆 Kalender-Button */
    #calendar-button {
        padding: 15px 20px;
        font-size: 1.2rem;
    }

    /* 📑 Popup */
    /* 📱 Popup auf Mobile auf 90% der Bildschirmbreite begrenzen */
/* 🛠️ Mobile: Popup 90% Breite, Desktop bleibt unverändert */
@media (max-width: 767px) {
    #booking-popup {
        position: fixed;
        top: 10%;
        left: 5%;
        right: 5%;
        width: 90%;
        height: auto;
        padding: 15px;
        font-size: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
        border: 4px dashed #7c5e3a;
        border-radius: 10px;
        background: #fffbea;
        z-index: 9999;
    }
}

/* 📱 Mobile: Popup auf 90% Breite und 5% Rand */
@media (max-width: 767px) {
    #booking-popup {
        width: 80%;     /* 90% der Breite */
        left: 5%;       /* 5% vom linken Rand */
        right: 5%;      /* 5% vom rechten Rand */
        max-width: none; /* Maximalbreite entfernen */
        padding: 20px;   /* Kompaktes Padding */
        font-size: 1rem; /* Schriftgröße anpassen */
        box-sizing: border-box;
    }
}
}

/* 📱 Responsive für kleinere Bildschirme */
@media (max-width: 500px) {
    .day {
        width: 60px;
        height: 80px;
        font-size: 0.85rem;
    }

    .month {
        padding: 5px 10px;
        font-size: 0.85rem;
    }

    .calendar-wrapper {
        transform: perspective(800px) rotateX(3deg);
    }
}

/* 🌍 Allgemeine mobile Optimierung */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* 🖥️ Desktop: Standardmäßig 80% Breite für Hauptcontainer */
.container.booking-page {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* 📆 Kalender-Container */
.timeline-calendar, .day-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* 🌟 Buttons & Touch-Optimierung */
button {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}
/* Smartphones (max. 768px) */
@media screen and (max-width: 768px) {
    /* 🏗️ Hauptcontainer in die volle Breite setzen */
    .container.booking-page {
        max-width: 95%;
        padding: 10px;
    }

    .timeline-track {
        display: flex;
        flex-direction: row; /* Monate nebeneinander */
        overflow-x: auto; /* Horizontales Scrollen aktivieren */
        gap: 10px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; /* Flüssiges Scrollen auf iOS */
        scrollbar-width: none; /* Firefox: Scrollleiste verstecken */
    }

    .timeline-track::-webkit-scrollbar {
        display: none; /* Chrome & Safari: Scrollleiste verstecken */
    }

    /* 📅 Monats-Karten anpassen */
    .timeline-checkpoint {
        min-width: 100px; /* Feste Breite für bessere Touch-Navigation */
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        padding: 10px;
        text-align: center;
    }

    /* 📅 Verhindert, dass die Monate zu eng aneinander liegen */
    .timeline-checkpoint:not(:last-child) {
        margin-right: 10px;
    }

    /* 📅 Tagesauswahl als Scroll-Leiste */
    .timeline-days {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .timeline-days::-webkit-scrollbar {
        display: none;
    }

    /* 🗓️ Tageskarten in kleinere Buttons umwandeln */
    .day-card {
        width: 70px;
        height: 90px;
        font-size: 0.8rem;
    }

    /* ⏰ Zeit-Slots kleiner machen */
    .time-slot {
        width: 150px;
        font-size: 1rem;
        padding: 12px;
    }

    /* 📆 Kalender-Schaltflächen für Mobile größer machen */
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* 🖤 Buchungsbutton besser sichtbar machen */
    .book-btn-wolf {
        font-size: 1rem;
        padding: 12px;
        width: 100%;
    }
}
@media screen and (max-width: 1024px) {
    /* Container leicht breiter für bessere Lesbarkeit */
    .container.booking-page {
        max-width: 90%;
    }

    /* Größere Buttons für Touchscreens */
    .book-btn-wolf {
        font-size: 1.2rem;
        padding: 15px;
    }
}
@media screen and (min-width: 1200px) {
    .container.booking-page {
        max-width: 70%;
    }
}

/* ========================= */
/* ✅ RESPONSIVE DESIGN - MOBILE OPTIMIERUNG */
/* ========================= */

/* 📱 Mobile Screens (bis 768px) */
@media (max-width: 768px) {
    
    /* Container Anpassung */
    .container {
        width: 95%;
        padding: 15px;
    }

    /* 🖋️ Überschriften kleiner machen */
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    /* 📜 Akkordeon auf voller Breite */
    .accordion-item {
        width: 100%;
        font-size: 0.9rem;
    }

    .accordion-header {
        padding: 10px 15px;
        font-size: 1.1rem;
    }

    .accordion-content {
        padding: 10px;
        font-size: 0.95rem;
    }

    /* ✅ Tattoo-Stil Galerie Swiper */
    #style-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .style-card {
        min-width: 80%;
        max-width: 90%;
        scroll-snap-align: center;
    }

    /* ⏱️ Timeline auf eine Spalte reduzieren */
    .timeline {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .timeline-step {
        width: 90%;
        font-size: 1rem;
        padding: 12px;
    }

    /* 🖼️ Bilder in Lightbox & Styles */
    .style-image {
        max-width: 100%;
        height: auto;
    }

    .style-image-large {
        width: 90%;
    }

    /* 📜 Popups anpassen */
    .popup-content {
        width: 90%;
        padding: 15px;
    }

    /* 🛠️ Buttons und Links */
    button, .btn {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .book-btn {
        width: 100%;
    }
}

/* ✅ Tablet-Optimierung (bis 1024px) */
@media (max-width: 1024px) {

    /* 🖋️ Schriftgrößen leicht anpassen */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .accordion-header {
        font-size: 1.2rem;
    }

    .accordion-content {
        font-size: 1rem;
    }

    /* 📜 Timeline in zwei Spalten */
    .timeline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    /* 🖼️ Tattoo-Stil Karten kleiner */
    .style-card {
        max-width: 70%;
    }
}

/* ✅ Große Bildschirme */
@media (min-width: 1280px) {
    .container {
        max-width: 1100px;
    }
}

@media (max-width: 768px) {
    #gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .gallery-nav {
        flex-direction: column;
        align-items: center;
    }

    .gallery-nav a {
        display: block;
        text-align: center;
        width: 100%;
        padding: 10px;
    }
}

/* ✅ Responsive Anpassungen */
@media (max-width: 768px) {
    #news-list {
        grid-template-columns: 1fr;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .member-table th, .member-table td {
        padding: 8px;
        font-size: 14px;
    }

    .member-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}


