/* --- Force Dark Mode on City Pages --- */
body, main.main {
    background-color: #0d0616 !important;
    color: #ffffff !important;
}

/* --- Force Dark Mode on City Pages --- */
body, main.main {
    background-color: #0d0616 !important;
    color: #ffffff !important;
}

/* OVERRIDE MAIN.CSS CONFLICT */
section, .section {
    background-color: transparent !important;
}

/* ... keep the rest of your city-style.css ... */

.city-container h1, 
.city-container h2, 
.city-container h3, 
.city-container h4 {
    color: #ffffff !important;
}

.city-container p {
    color: #cccccc !important;
}

/* --- 1. CORE VARIABLES --- */
:root {
    --veliy-purple: #bf00ff;       
    --veliy-dark: #0d0616;         
    --veliy-glass: rgba(255, 255, 255, 0.03); 
    --veliy-border: rgba(191, 0, 255, 0.2);   
}

/* --- 2. LAYOUT GRIDS --- */
.city-container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 40px 20px; 
}

.city-grid-2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center; 
    margin-bottom: 80px; 
}

.city-grid-3 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    margin-bottom: 80px; 
}

@media (max-width: 768px) {
    .city-grid-2, .city-grid-3 { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .city-hero-title { 
        font-size: 2.5rem !important; 
    }
}

/* --- 3. COMPONENTS --- */
.city-card {
    background: var(--veliy-glass) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--veliy-border) !important;
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(191, 0, 255, 0.15);
    border-color: var(--veliy-purple) !important;
}

.city-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(45deg, #fff, #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.city-subheadline {
    font-size: 1.25rem;
    color: #cccccc !important;
    line-height: 1.6;
    margin-bottom: 30px;
}

.city-highlight {
    color: var(--veliy-purple) !important;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(191, 0, 255, 0.4);
    margin-bottom: 15px;
}

.city-btn {
    display: inline-block;
    background: transparent !important;
    color: white !important;
    border: 1px solid var(--veliy-purple) !important;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(191, 0, 255, 0.2);
}

.city-btn:hover {
    background: var(--veliy-purple) !important;
    box-shadow: 0 0 25px rgba(191, 0, 255, 0.6);
}

.city-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    object-fit: cover;
}

.city-spacer { height: 80px; }

/* --- BENTO BOX UNIQUE STYLES FOR THIS PAGE --- */
    .text-gradient-hh {
        background: linear-gradient(135deg, #bf00ff, #ff007f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .hh-bento-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 24px;
    }
    .hh-card {
        background: rgba(20, 10, 35, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(15px);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
    }
    .hh-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    .hh-card-bg-icon {
        position: absolute;
        bottom: -30px;
        right: -20px;
        font-size: 10rem;
        opacity: 0.03;
        z-index: 0;
        pointer-events: none;
    }
    .hh-card-content {
        position: relative;
        z-index: 1;
    }
    
    /* Dynamic Colors */
    .hh-card-velvet { border-top: 2px solid #bf00ff; background: linear-gradient(180deg, rgba(191,0,255,0.05) 0%, transparent 100%); }
    .hh-card-velvet:hover { border-color: #bf00ff; box-shadow: 0 10px 40px rgba(191,0,255,0.15); }
    
    .hh-card-magenta { border-top: 2px solid #ff007f; background: linear-gradient(180deg, rgba(255,0,127,0.05) 0%, transparent 100%); }
    .hh-card-magenta:hover { border-color: #ff007f; box-shadow: 0 10px 40px rgba(255,0,127,0.15); }
    
    .hh-card-cyan { border-top: 2px solid #00f3ff; background: linear-gradient(180deg, rgba(0,243,255,0.05) 0%, transparent 100%); }
    .hh-card-cyan:hover { border-color: #00f3ff; box-shadow: 0 10px 40px rgba(0,243,255,0.15); }

    /* Grid Span Rules */
    .span-12 { grid-column: span 12; }
    .span-8 { grid-column: span 12; }
    .span-7 { grid-column: span 12; }
    .span-6 { grid-column: span 12; }
    .span-5 { grid-column: span 12; }
    .span-4 { grid-column: span 12; }

    @media(min-width: 992px) {
        .span-8 { grid-column: span 8; }
        .span-7 { grid-column: span 7; }
        .span-6 { grid-column: span 6; }
        .span-5 { grid-column: span 5; }
        .span-4 { grid-column: span 4; }
    }
/* --- CINEMATIC WÜRZBURG FLAGSHIP STYLES --- */
    .wue-hero-wrapper {
        text-align: center;
        padding: 40px 20px 0 20px;
        position: relative;
        z-index: 2;
    }
    .wue-hero-img-container {
        width: 100%;
        height: 500px;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 30px 60px rgba(191,0,255,0.1);
        margin-top: -60px;
        z-index: 1;
    }
    .wue-hero-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
    }
    .wue-hero-img-container::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0; height: 70%;
        background: linear-gradient(0deg, #0d0616 5%, transparent 100%);
    }
    
    /* Overlapping Panels */
    .wue-overlap-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 40px;
    }
    .wue-panel-left {
        align-self: flex-start;
        max-width: 80%;
        background: rgba(255, 255, 255, 0.02);
        border-left: 3px solid rgba(255,255,255,0.2);
        padding: 50px;
        border-radius: 0 24px 24px 0;
        backdrop-filter: blur(10px);
    }
    .wue-panel-right {
        align-self: flex-end;
        max-width: 80%;
        background: rgba(191, 0, 255, 0.06);
        border-right: 4px solid #bf00ff;
        padding: 50px;
        border-radius: 24px 0 0 24px;
        backdrop-filter: blur(15px);
        margin-top: -40px; /* The Overlap Magic */
        box-shadow: -10px 10px 40px rgba(0,0,0,0.5);
        z-index: 5;
    }

    /* Minimalist Features */
    .wue-feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px 30px;
    }
    .wue-feat-line {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 25px;
        transition: all 0.3s ease;
    }
    .wue-feat-line:hover {
        border-top-color: #bf00ff;
        background: linear-gradient(180deg, rgba(191,0,255,0.05) 0%, transparent 100%);
    }
    .wue-feat-dot {
        display: inline-block;
        width: 8px; height: 8px;
        background: #bf00ff;
        border-radius: 50%;
        box-shadow: 0 0 10px #bf00ff;
        margin-right: 12px;
    }

    /* Asymmetric Split */
    .wue-split-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        align-items: center;
    }
    @media(min-width: 992px) {
        .wue-split-grid { grid-template-columns: 1.2fr 0.8fr; }
        .wue-panel-left { max-width: 65%; }
        .wue-panel-right { max-width: 65%; }
    }
    .wue-data-pill {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 16px;
        padding: 20px 25px;
        margin-bottom: 15px;
    }