@import url(https://fonts.bunny.net/css?family=montserrat:300,400,500,600,700,800,900&display=swap);

/* =========================================
   1. CSS VARIABLES
   ========================================= */
:root {
    /* Brand Colors - Deep & Elegant */
    --deep-ocean: #172531;
    --midnight-blue: #2C4657;
    --stormy-slate: #4d6473;
    --void-black: #0a0a0a;
    /* Accents - Gold/Brass */
    --burnt-brass: #C7843B;
    --golden-trumpet: #F3BD68;
    /* Modern Palette & Utilities */
    --bg-body: #f8f9fa;
    --bg-white: #ffffff;
    --text-main: #2b343b;
    --text-muted: #6c757d;
    --dark-white: #EEE5D9;
    /* Spacing & Shapes */
    --font-family: 'Montserrat', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 20px rgba(199, 132, 59, 0.25);
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
    --nav-glass: rgba(23, 37, 49, 0.85);
    --glass-backdrop: blur(12px);
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* =========================================
   2. GLOBAL STYLES
   ========================================= */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--deep-ocean);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Fluid Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--bg-white);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    text-decoration: none;
    color: var(--burnt-brass);
    transition: var(--transition-fast);
}

    a:hover {
        color: var(--golden-trumpet);
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Classes */
.text-primary {
    color: var(--burnt-brass) !important;
}

.text-accent {
    color: var(--deep-ocean) !important;
}
.bg-light {
    background-color: #f4f7f9 !important;
}

.bg-deep-ocean {
    background-color: var(--deep-ocean) !important;
}

.section-padding {
    padding: clamp(3rem, 8vw, 5rem) 0;
}

/* =========================================
   3. NAVIGATION
   ========================================= */
.navbar {
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    background: transparent;
    z-index: 1000;
}

    .navbar.scrolled {
        background: var(--nav-glass);
        backdrop-filter: var(--glass-backdrop);
        -webkit-backdrop-filter: var(--glass-backdrop);
        box-shadow: var(--shadow-md);
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bg-white) !important;
}

.navbar-logo {
    width: 80px;
    height: 80px;
}

.brand-text {
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.brand-name {
    color: var(--golden-trumpet);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    color: var(--dark-white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--void-black) !important;
        background: var(--golden-trumpet);
    }

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--deep-ocean);
        border-radius: var(--radius-md);
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-subtitle {
        letter-spacing: 1px;
        font-size: 0.65rem;
    }
}

.navbar-toggler {
    border: none;
    color: var(--bg-white);
    padding: 0.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
        color: var(--golden-trumpet);
    }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/orchester_complete.webp') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding-top: 80px;
}

    .hero-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(23, 37, 49, 0.7) 0%, rgba(23, 37, 49, 0.4) 50%, rgba(23, 37, 49, 0.9) 100%);
        z-index: 1;
    }

@media (hover: none) {
    .hero-section {
        background-attachment: scroll;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

.hero-bg-icon {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}

    .hero-bg-icon.one {
        top: -30px;
        left: -30px;
        width: clamp(100px, 15vw, 180px);
        transform: rotate(-15deg);
    }

    .hero-bg-icon.two {
        bottom: -20px;
        right: -20px;
        width: clamp(80px, 12vw, 150px);
        animation-delay: -5s;
        transform: rotate(10deg);
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

/* =========================================
   5. BUTTONS
   ========================================= */
.btn-primary {
    background: linear-gradient(135deg, var(--burnt-brass) 0%, var(--golden-trumpet) 100%);
    border: none;
    color: var(--deep-ocean);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--golden-trumpet) 0%, var(--burnt-brass) 100%);
        z-index: -1;
        transition: opacity 0.3s;
        opacity: 0;
    }

    .btn-primary:hover {
        color: var(--deep-ocean);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(199, 132, 59, 0.4);
    }

        .btn-primary:hover::before {
            opacity: 1;
        }

.btn-outline-primary {
    border: 2px solid var(--stormy-slate);
    color: var(--stormy-slate);
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius-pill);
    background: transparent;
    transition: var(--transition-fast);
}

    .btn-outline-primary:hover {
        background: var(--stormy-slate);
        color: white;
        transform: translateY(-2px);
    }

/* =========================================
   6. CARDS (General)
   ========================================= */
.modern-card, .section-card, .sponsor-card, .contact-form-wrapper, .contact-info, .mission-card, .vision-card, .team-card, .instrument-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    overflow: hidden;
}

    .modern-card:hover, .sponsor-card:hover, .team-card:hover, .instrument-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

/* =========================================
   7. CONCERT CARDS (Grid View for Index)
   ========================================= */
.concert-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: white;
    overflow: hidden;
}

.concert-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .concert-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.concert-card:hover .concert-image-wrapper img {
    transform: scale(1.05);
}

.concert-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-sm);
    z-index: 2;
    min-width: 70px;
}

    .concert-date-badge span {
        display: block;
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1;
        color: var(--deep-ocean);
    }

    .concert-date-badge small {
        display: block;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 0.8rem;
        color: var(--burnt-brass);
        letter-spacing: 1px;
    }

.concert-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.concert-meta div {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.concert-meta i {
    color: var(--burnt-brass);
    width: 16px;
    text-align: center;
}

/* =========================================
   7b. CONCERT LIST CARDS (Row View for Concerts Page)
   ========================================= */
.concert-list-card {
    display: flex;
    flex-direction: row;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

    .concert-list-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

.concert-list-date {
    background: var(--deep-ocean);
    color: white;
    width: 120px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

    .concert-list-date .day {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1;
        color: var(--golden-trumpet);
    }

    .concert-list-date .month {
        font-size: 1.2rem;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 0.2rem;
    }

    .concert-list-date .year {
        font-size: 0.9rem;
        opacity: 0.7;
    }

.time-badge {
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.concert-list-image {
    width: 350px;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

    .concert-list-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.concert-list-card:hover .concert-list-image img {
    transform: scale(1.05);
}

.concert-list-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .concert-list-card {
        flex-direction: row; /* Keep date on side on mobile */
    }

    .concert-list-image {
        display: none; /* Hide image on small screens to save space */
    }

    .concert-list-date {
        width: 90px;
        min-width: 90px;
        padding: 1rem;
    }

        .concert-list-date .day {
            font-size: 1.8rem;
        }

        .concert-list-date .month {
            font-size: 1rem;
        }
}

/* =========================================
   8. TIMELINE (Restored)
   ========================================= */
.timeline-section {
    position: relative;
    overflow-x: hidden;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 350px;
    gap: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 3rem;
}

    .timeline::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--burnt-brass), var(--golden-trumpet));
        transform: translateY(-50%);
        z-index: 0;
        border-radius: 2px;
    }

.timeline-item {
    position: relative;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

    .timeline-item:nth-child(odd) {
        margin-bottom: 50px;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column-reverse;
        margin-top: 50px;
    }

.timeline-year {
    position: relative;
    background: var(--deep-ocean);
    color: var(--golden-trumpet);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.1rem;
    border: 4px solid var(--bg-body);
    box-shadow: var(--shadow-sm);
    z-index: 2;
    margin: 1rem 0;
}

.timeline-content {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    position: relative;
    border-top: 4px solid var(--burnt-brass);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--bg-white);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--bg-white);
}

.timeline-item:nth-child(even) .timeline-content {
    border-top: none;
    border-bottom: 4px solid var(--burnt-brass);
}

@media (max-width: 991px) {
    .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
        overflow-x: visible;
    }

        .timeline::before {
            width: 4px;
            height: 100%;
            top: 0;
            left: 30px;
            transform: none;
            background: linear-gradient(180deg, var(--burnt-brass), var(--golden-trumpet));
        }

    .timeline-item {
        flex: 1 1 auto;
        width: 100%;
        flex-direction: column !important;
        align-items: flex-start;
        margin: 0 0 3rem 40px;
        padding-left: 10px;
    }

    .timeline-year {
        margin: 0 0 1rem 0;
        position: absolute;
        left: -55px;
        top: 0;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-size: 0.9rem;
        border-radius: 50%;
    }

    .timeline-content::after {
        left: -10px;
        top: 20px;
        bottom: auto;
        transform: none;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid var(--bg-white);
        border-left: none;
    }

    .timeline-item:nth-child(even) .timeline-content::after {
        top: 20px;
        border-bottom: 10px solid transparent;
        border-right: 10px solid var(--bg-white);
    }
}

@media (max-width: 991px) {
    /* Container Ausrichtung */
    .timeline-item,
    .timeline-item:nth-child(even),
    .timeline-item:nth-child(odd) {
        flex-direction: column-reverse !important; /* Datum (Year) nach oben */
        align-items: flex-start !important;
        margin-left: 0 !important;
        padding-left: 20px !important;
        margin-bottom: 3rem !important;
        margin-top: 0 !important;
    }

    /* Die Linie links anpassen */
    .timeline::before {
        left: 20px !important; /* Linie näher an den Rand */
    }

    /* Das Datum selbst (die Bubble) */
    .timeline-year {
        position: static !important; /* Zurück in den normalen Fluss */
        width: auto !important; /* Breite passt sich Text an */
        height: auto !important; /* Höhe passt sich Text an */
        /* Optik als Badge/Pille */
        border-radius: 50px !important;
        padding: 0.5rem 1.5rem !important;
        margin: 0 0 1rem 0 !important; /* Abstand nach unten zum Text */
        /* Text Formatierung */
        display: inline-block !important;
        white-space: nowrap;
        /* Verhindert Überlappung mit der Linie */
        transform: translateX(-10px);
        z-index: 5;
    }

    /* Den Pfeil am Content-Box entfernen, da Position sich ändert */
    .timeline-content::after {
        display: none !important;
    }

    /* Content Box Anpassung */
    .timeline-content {
        width: 100% !important;
        margin-left: 15px; /* Etwas Abstand zur Linie */
    }
}

/* =========================================
   9. PAGE HEADER & TITLES
   ========================================= */
.page-header {
    background: linear-gradient(135deg, var(--deep-ocean) 0%, var(--midnight-blue) 100%);
    color: white;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    margin-top: 0 !important;
    margin-bottom: 0;
}

    .page-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 20% 50%, rgba(243, 189, 104, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--burnt-brass), var(--golden-trumpet));
        margin-top: 8px;
        border-radius: 2px;
    }

.text-center .section-title::after {
    margin: 8px auto 0;
}

/* =========================================
   10. GALLERY
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 37, 49, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

    .gallery-overlay i {
        color: white;
        font-size: 2rem;
        transform: scale(0.5);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

    .gallery-item:hover .gallery-overlay i {
        transform: scale(1);
    }

/* =========================================
   11. SPONSORS
   ========================================= */
.sponsor-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
}

.main-sponsor {
    border-top: 4px solid var(--burnt-brass);
}

.other-sponsor {
    border-top: 4px solid var(--golden-trumpet);
}

.sponsor-logo-container {
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .sponsor-logo-container img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        filter: grayscale(1);
        opacity: 0.7;
        transition: 0.3s;
    }

.sponsor-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* =========================================
   12. CONTACT PAGE STYLES (New)
   ========================================= */
.contact-info {
    position: relative;
    overflow: hidden;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-info:hover .icon-circle {
    transform: scale(1.1);
    background-color: rgba(255,255,255,0.2) !important;
}

/* =========================================
   13. SECTIONS / INSTRUMENTS (New)
   ========================================= */
.section-category-title {
    color: var(--deep-ocean);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Updated styles for large feature layout */
.instrument-feature-img {
    height: 350px; /* Taller height for feature layout */
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

@media (max-width: 991px) {
    .instrument-feature-img {
        height: auto !important;
        object-fit: contain !important;
        min-height: 0 !important;
    }
}

.instrument-row:hover .instrument-feature-img {
    transform: scale(1.03);
}

.group-header-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .group-header-image img {
        transition: transform 0.7s ease;
    }

    .group-header-image:hover img {
        transform: scale(1.02);
    }

/* Deprecated card styles kept for backup */
.instrument-card .instrument-img {
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.instrument-card .card-body {
    background: linear-gradient(to bottom, #fff, #fbfbfb);
}

.instrument-card:hover .icon-wrapper {
    transform: scale(1.2) rotate(5deg);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* =========================================
   14. FOOTER
   ========================================= */
.footer {
    background: var(--deep-ocean);
    color: rgba(255,255,255,0.7);
    border-top: 5px solid var(--burnt-brass);
    margin-top: auto; /* Pushes footer to bottom if content is short */
}

.footer-logo {
    width: 60px;
    margin-bottom:12rem;
}

.footer-logo-mkd {
    max-height: 80px;
    width: auto;
    margin-bottom: 2rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}

    .social-btn:hover {
        background: var(--golden-trumpet);
        color: var(--deep-ocean);
        transform: translateY(-3px);
    }

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

    .footer-links a:hover {
        color: var(--golden-trumpet);
        padding-left: 5px;
    }

/* =========================================
   15. QUICK ACTIONS & LIGHTBOX
   ========================================= */
.quick-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-action-btn {
    width: 50px;
    height: 50px;
    background: var(--burnt-brass);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    font-size: 1.2rem;
    transition: 0.3s;
}

    .quick-action-btn:hover {
        background: var(--golden-trumpet);
        color: var(--deep-ocean);
        transform: scale(1.1);
    }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-height: 90vh;
    max-width: 90vw;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
}

.lightbox-prev {
    left: 0;
}

.lightbox-next {
    right: 0;
}

/* =========================================
   16. ACCESSIBILITY
   ========================================= */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
