/**
 * XIVE - Services Stylesheet (services.css)
 * Spezifische Styles für die Service-Karten, Icons und Outline-Typografie.
 * Inklusive lokaler, DSGVO-konformer Schriftarten.
 */

/* ==========================================================================
   Lokale Schriftarten (Geladen aus assets/fonts/)
   ========================================================================== */



/* ==========================================================================
   Service-Sektion Design & Layout
   ========================================================================== */

/* --- Service-Titel & Outline-Effekt --- */
.service-title-outline {
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--neon-pink, #fa0081);
    letter-spacing: -2px;
    font-size: calc(1.8rem + 1.5vw);
}

@media (min-width: 992px) {
    .service-title-outline {
        -webkit-text-stroke: 2px var(--neon-pink, #fa0081);
        letter-spacing: -4px;
        font-size: calc(2.2rem + 2vw);
    }
}

/* --- QLUB Akzent im Titel (Glow-Effekt) --- */
.text-glow-accent {
    -webkit-text-stroke: 1.5px var(--neon-purple, #6c3be8);
    filter: drop-shadow(0 0 8px rgba(108, 59, 232, 0.8));
}

@media (min-width: 992px) {
    .text-glow-accent {
        -webkit-text-stroke: 2px var(--neon-purple, #6c3be8);
    }
}

/* --- Glassmorphic Club-Cards (Responsive Grid-Karten) --- */
.club-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.club-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(250, 0, 129, 0.3);
}

.club-card-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.club-card-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Mobile-optimierter SVG-Container & leuchtende Schatten --- */
.service-icon-wrapper {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translateZ(0); /* Hardware-Beschleunigung für flüssiges Scrollen auf Handys */
    filter: drop-shadow(0 2px 10px rgba(250, 0, 129, 0.45));
}

/* --- Vorverkauf-Button (Exklusiv für diese Sektion) --- */
.btn-pre-sale {
    background: linear-gradient(135deg, var(--neon-pink, #fa0081) 0%, #9d00ff 100%);
    color: #ffffff !important;
    font-family: 'Lexend', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    padding: 12px 28px;
    box-shadow: 0 8px 24px rgba(250, 0, 129, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-block;
}

.btn-pre-sale:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(250, 0, 129, 0.5);
}

/* --- Interactive Service Cards Details Animation & Layout --- */
.interactive-club-card {
    cursor: pointer;
    height: auto !important;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Highlight selected active card with pink glow */
.interactive-club-card.active {
    border-color: #FF1083 !important;
    box-shadow: 0 0 25px rgba(255, 16, 131, 0.45) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-8px);
}

/* Detailbereich in der Karte (zu Beginn ausgeblendet) */
.club-card-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s ease,
                margin-top 0.4s ease;
    margin-top: 0;
    width: 100%;
    text-align: left;
}

/* Wenn aktiv / ausgeklappt */
.interactive-club-card.active .club-card-details {
    max-height: 800px; /* Groß genug für den gesamten Text */
    opacity: 1;
    margin-top: 1.5rem;
}

/* Drehung des Chevron-Icons */
.interactive-club-card .card-expand-icon {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.interactive-club-card.active .card-expand-icon {
    transform: rotate(180deg);
    color: var(--neon-pink, #fa0081) !important;
}