/* =========================================
   1. IMPORT & VARIABLEN (Cyberpunk Palette)
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;800&display=swap');

:root {
    /* Styleguide Farben */
    --bg-dark: #141721;
    --bg-darker: #0b0d12;
    --glass-bg: rgba(20, 23, 33, 0.7);
    --accent-cyan: #00F0FF;
    --accent-purple: #9F00FF;
    --text-highlight: #D0FFFF;
    --text-body: #a0aab8;
    --text-white: #ffffff;
    
    /* Mapping auf System-Variablen der Webseite */
    --theme-user-defined-background-color: var(--bg-dark) !important;
    --theme-color-primary: var(--bg-darker) !important;
    --theme-color-text: var(--text-body) !important;
    --color-primary: var(--accent-cyan) !important;
    --color-primary-90: var(--accent-cyan) !important;
    
    /* Globale Settings */
    --font-family: 'Outfit', sans-serif !important;
    --card-radius: 24px;
    --btn-radius: 50px;
}

/* =========================================
   2. BASIS & TYPOGRAFIE
   ========================================= */
body, #__nuxt, #__app, .dl {
    background-color: var(--bg-dark) !important;
    font-family: var(--font-family);
    color: var(--text-body);
}

/* Hintergründe entfernen für sauberen Dark Mode */
.dl__wrapper__background {
    display: none !important;
}

/* Überschriften: Gradient Effekt */
h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    color: var(--text-white) !important;
    text-transform: uppercase;
}

/* Spezieller Gradient für Hauptüberschriften */
.services__header__title h3, h1 {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

/* =========================================
   3. HEADER & NAVIGATION (Glassmorphism)
   ========================================= */
.header {
    background-color: var(--glass-bg) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Navigation Links */
.header__content__primary__left__items a {
    color: var(--text-body) !important;
    font-weight: 500 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px !important;
    transition: all 0.3s ease;
}

.header__content__primary__left__items a:hover,
.header__content__primary__left__items a.router-link-active {
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 8px var(--accent-cyan);
}

.header__content__primary__left__items a.router-link-active:after {
    background-color: var(--accent-cyan) !important;
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* =========================================
   4. CARDS & CONTAINER (Tech Look)
   ========================================= */
/* Haupt-Wrapper der Service Cards */
.service-card-wrapper {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(0, 240, 255, 0.1) !important;
    border-radius: var(--card-radius) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.1);
}

/* Bild-Bereich in der Card */
.service-card-grid__header {
    border-radius: var(--card-radius) var(--card-radius) 0 0 !important;
    filter: brightness(0.8) contrast(1.1);
}

/* Textbereich in der Card */
.service-card-grid__cnt {
    background: transparent !important;
}

.service-card-grid__cnt h4 {
    color: var(--text-highlight) !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}

/* Details in der Card (Dauer, Kapazität) */
.service-card-dc__item__title {
    color: var(--text-body) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-dc__item__value {
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
    font-weight: 600 !important;
}

/* =========================================
   5. BUTTONS (Neon Pill Shape)
   ========================================= */
.ui-button {
    border-radius: var(--btn-radius) !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    font-size: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Primary Button (Book Now) */
.ui-button__type__primary {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3) !important;
}

.ui-button__type__primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(159, 0, 255, 0.6) !important;
}

/* Secondary Button (Learn More) - Outline Style */
.ui-button__type__info {
    background: transparent !important;
    border: 1px solid var(--accent-cyan) !important;
    color: var(--accent-cyan) !important;
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.1) !important;
}

.ui-button__type__info:hover {
    background: rgba(0, 240, 255, 0.1) !important;
    color: var(--text-white) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4) !important;
}

/* =========================================
   6. INPUTS & SUCHE
   ========================================= */
/* Suchfeld Container */
.ui-search__input, .ui-filter__button {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    color: var(--text-white) !important;
    backdrop-filter: blur(5px);
}

/* Input Textfeld */
.ui-search__input input {
    background-color: transparent !important;
    color: var(--text-white) !important;
}

.ui-search__input input::placeholder {
    color: rgba(160, 170, 184, 0.6) !important;
}

/* Focus States */
.ui-search__input:focus-within, 
.ui-filter__button:focus,
.ui-filter__button[data-headlessui-state="open"] {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2) !important;
}

/* Icons in Inputs */
.ui-icon {
    color: var(--accent-cyan) !important;
}

/* =========================================
   7. SONSTIGES & RESPONSIVE
   ========================================= */
/* Scrollbar Anpassung */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 4px;
}

/* Footer bereinigen */
.footer {
    background-color: var(--bg-darker) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
    color: var(--text-body) !important;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .header__content__primary {
        background: var(--bg-darker);
    }
    
    .service-card-wrapper {
        margin-bottom: 20px;
    }
    
    .services__header__title h3 {
        font-size: 1.5rem !important;
    }
}

/* Dropdown Menüs (Sortier-Funktion) */
.ui-filter__list {
    background-color: var(--bg-darker) !important;
    border: 1px solid var(--accent-cyan) !important;
    color: var(--text-white) !important;
}

.ui-filter__list__item:hover {
    background-color: rgba(0, 240, 255, 0.2) !important;
}