/* ===================================
   Van Gogh Museum - Premium Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-gold: #d4a754;
    --primary-blue: #1e3a5f;
    --starry-blue: #2c4875;
    --deep-navy: #0f1c2e;
    --warm-yellow: #f5d76e;
    --van-gogh-orange: #e67e22;
    --soft-cream: #f8f5f0;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    
    --gradient-gold: linear-gradient(135deg, #d4a754 0%, #f5d76e 50%, #d4a754 100%);
    --gradient-starry: linear-gradient(135deg, #1e3a5f 0%, #2c4875 50%, #1e3a5f 100%);
    --gradient-night: linear-gradient(180deg, #0f1c2e 0%, #1e3a5f 100%);
    
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-strong: 0 16px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(212, 167, 84, 0.3);
    
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--soft-cream);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Preloader
   =================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 1s ease, visibility 1s ease;
    overflow: hidden;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-video-wrap {
    width: 320px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloaderVideo {
    width: 140%;
    height: 140%;
    object-fit: cover;
}

@media (max-width: 575.98px) {
    .preloader-video-wrap {
        width: 240px;
        height: 240px;
    }
}

.skip-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    padding: 10px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100000;
    animation: fadeInSkip 1.5s ease forwards;
    opacity: 0;
}

.skip-btn:hover {
    background: var(--primary-gold);
    color: var(--deep-navy);
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

@keyframes fadeInSkip {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ===================================
   Floating Particles
   =================================== */
#particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 15s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 20px 0;
    background: transparent;
    transition: var(--transition-medium);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(15, 28, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2rem;
    animation: sunflowerSway 3s ease-in-out infinite;
}

@keyframes sunflowerSway {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    padding: 8px 20px !important;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 167, 84, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 6px 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-gold);
    color: var(--deep-navy);
}

.divider {
    color: var(--text-light);
    opacity: 0.5;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-night);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.starry-night-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(245, 215, 110, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(44, 72, 117, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(30, 58, 95, 0.5) 0%, transparent 70%);
    animation: starryPulse 8s ease-in-out infinite;
}

@keyframes starryPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.swirl-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 900'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23d4a754' stop-opacity='0.1'/%3E%3Cstop offset='100%25' stop-color='%231e3a5f' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M0 0C200 100 400 50 600 150S1000 300 1200 200 1440 100 1440 0H0z'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.5;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 167, 84, 0.2);
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0.9;
}

.title-accent {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-glow {
    background: var(--gradient-gold);
    border: none;
    color: var(--deep-navy);
    padding: 16px 40px;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: var(--transition-medium);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--deep-navy);
}

.btn-glow:hover::before {
    left: 100%;
}

.btn-brush {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 14px 38px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-brush::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--text-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn-brush:hover {
    color: var(--deep-navy);
    border-color: var(--text-light);
}

.btn-brush:hover::before {
    width: 300%;
    height: 300%;
}

/* Hero Artwork */
.hero-artwork {
    position: relative;
    padding: 30px;
}

.artwork-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.artwork-frame.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.artwork-image {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.artwork-frame:hover .artwork-image {
    transform: scale(1.05);
}

.frame-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-gold);
    border-radius: 30px;
    opacity: 0.5;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.02); }
}

/* Paint Drips */
.paint-drip {
    position: absolute;
    width: 20px;
    border-radius: 0 0 10px 10px;
    animation: drip 4s ease-in-out infinite;
}

.drip-1 {
    top: -10px;
    right: 30%;
    height: 60px;
    background: var(--primary-gold);
    animation-delay: 0s;
}

.drip-2 {
    top: -10px;
    right: 50%;
    height: 80px;
    background: var(--van-gogh-orange);
    animation-delay: 1s;
}

.drip-3 {
    top: -10px;
    right: 70%;
    height: 50px;
    background: var(--starry-blue);
    animation-delay: 2s;
}

@keyframes drip {
    0%, 100% { transform: scaleY(1); opacity: 0.8; }
    50% { transform: scaleY(1.2); opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    opacity: 0.7;
    animation: bounce 2s ease-in-out infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    padding: 80px 0;
    background: var(--deep-navy);
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===================================
   Section Common Styles
   =================================== */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 167, 84, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 30px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Art Events Calendar Section
   =================================== */
.events-calendar-section {
    padding: 120px 0;
    background: var(--text-light);
    position: relative;
    overflow: hidden;
}

/* Month Navigation */
.calendar-months {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}

.month-btn {
    background: var(--soft-cream);
    border: 2px solid transparent;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.month-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.month-btn.active {
    background: var(--gradient-gold);
    color: var(--deep-navy);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

/* Event Cards */
.events-grid {
    margin-bottom: 60px;
}

.event-card {
    background: var(--soft-cream);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

/* Featured Event */
.event-featured {
    flex-direction: row;
    min-height: 380px;
}

.event-featured .event-image {
    width: 50%;
    min-height: 380px;
    flex-shrink: 0;
}

.event-featured .event-body {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-featured .event-title {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.event-featured .event-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.event-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.event-price small {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Compact Event Card */
.event-compact .event-image {
    height: 220px;
}

.event-compact .event-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-compact .event-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* Event Image */
.event-image {
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 28, 46, 0.5) 0%, transparent 60%);
    pointer-events: none;
}

/* Date Badge */
.event-date-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 60px;
    height: 68px;
    background: var(--text-light);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.event-date-badge .day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Category Badges */
.event-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 18px;
    background: var(--primary-gold);
    color: var(--deep-navy);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    z-index: 2;
}

.event-category-inline {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(212, 167, 84, 0.15);
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* Event Meta & Body */
.event-body .event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 14px;
}

.event-meta span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

.event-title {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 8px;
}

.event-link:hover {
    color: var(--primary-gold);
    gap: 12px;
}

/* Info Strip */
.calendar-info-strip {
    background: var(--deep-navy);
    border-radius: 24px;
    padding: 40px 50px;
    margin-top: 20px;
}

.info-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: var(--text-light);
}

.info-strip-item i {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.info-strip-item h5 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.info-strip-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991.98px) {
    .event-featured {
        flex-direction: column;
        min-height: auto;
    }
    .event-featured .event-image {
        width: 100%;
        min-height: 260px;
    }
    .event-featured .event-body {
        padding: 30px;
    }
    .calendar-info-strip {
        padding: 30px 24px;
    }
}

@media (max-width: 575.98px) {
    .calendar-months {
        gap: 6px;
    }
    .month-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* ===================================
   Collection Section
   =================================== */
.collection-section {
    padding: 120px 0;
    background: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.collection-section .section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 10% 20%, rgba(212, 167, 84, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(44, 72, 117, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.collection-gallery {
    margin-top: 60px;
}

/* Artwork Cards */
.artwork-card {
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    position: relative;
}

.artwork-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.artwork-card.featured {
    border: 3px solid var(--primary-gold);
}

.artwork-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.artwork-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.artwork-card:hover .artwork-img {
    transform: scale(1.1);
}

.artwork-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 46, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.artwork-card:hover .artwork-overlay {
    opacity: 1;
}

.view-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gold);
    border: none;
    color: var(--deep-navy);
    font-size: 1.2rem;
    cursor: pointer;
    transform: scale(0);
    transition: var(--transition-fast);
}

.artwork-card:hover .view-btn {
    transform: scale(1);
}

.view-btn:hover {
    background: var(--text-light);
}

.brush-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-medium);
}

.artwork-card:hover .brush-hover {
    transform: scaleX(1);
}

.artwork-info {
    padding: 24px;
}

.artwork-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.artwork-year {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 12px;
}

.artwork-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.view-all-btn {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.view-all-btn:hover {
    background: var(--primary-blue);
    color: var(--text-light);
}

/* ===================================
   Quote Section
   =================================== */
.quote-section {
    padding: 150px 0;
    background: 
        linear-gradient(rgba(15, 28, 46, 0.9), rgba(15, 28, 46, 0.9)),
        url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ea/Van_Gogh_-_Starry_Night_-_Google_Art_Project.jpg/1280px-Van_Gogh_-_Starry_Night_-_Google_Art_Project.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.quote-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--primary-gold);
    opacity: 0.3;
    line-height: 0.5;
    margin-bottom: 20px;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-light);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.quote-author {
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 500;
    letter-spacing: 2px;
}

.floating-brush {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-gold);
    opacity: 0.1;
    border-radius: 50% 0 50% 50%;
    animation: floatBrush 10s ease-in-out infinite;
}

.brush-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.brush-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes floatBrush {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(10deg); }
    50% { transform: translate(0, -40px) rotate(0deg); }
    75% { transform: translate(-20px, -20px) rotate(-10deg); }
}

/* ===================================
   Exhibitions Section
   =================================== */
.exhibitions-section {
    padding: 120px 0;
    background: var(--text-light);
}

.exhibition-card {
    background: var(--soft-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
}

.exhibition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.exhibition-card.main-exhibition {
    height: 100%;
}

.exhibition-card .exhibition-image {
    position: relative;
    overflow: hidden;
}

.main-exhibition .exhibition-image {
    height: 300px;
}

.side-exhibition .exhibition-image {
    height: 100%;
    min-height: 150px;
}

.exhibition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.exhibition-card:hover .exhibition-image img {
    transform: scale(1.05);
}

.exhibition-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: var(--primary-gold);
    color: var(--deep-navy);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exhibition-content {
    padding: 30px;
}

.side-exhibition .exhibition-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.exhibition-date {
    font-size: 0.85rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.exhibition-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.side-exhibition .exhibition-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.exhibition-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.exhibition-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.exhibition-link:hover {
    color: var(--primary-gold);
    gap: 12px;
}

/* Immersive Card */
.exhibition-card.immersive {
    background: var(--gradient-starry);
}

.immersive-content {
    padding: 30px;
    text-align: center;
}

.immersive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.immersive .exhibition-title {
    color: var(--text-light);
    margin-bottom: 8px;
}

.immersive p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

/* ===================================
   Timeline Section
   =================================== */
.timeline-section {
    padding: 120px 0;
    background: var(--soft-cream);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--gradient-gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-right: 80px;
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--deep-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.timeline-content {
    flex: 1;
    padding: 20px 30px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.timeline-content:hover {
    box-shadow: var(--shadow-medium);
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===================================
   Visit Section
   =================================== */
.visit-section {
    padding: 120px 0;
    background: var(--text-light);
}

.visit-info {
    padding-right: 40px;
}

.visit-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.visit-details {
    margin-bottom: 40px;
}

.visit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--soft-cream);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.visit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.visit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.visit-text h5 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.visit-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.visit-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.visit-buttons .btn-primary {
    background: var(--gradient-gold);
    border: none;
    color: var(--deep-navy);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.visit-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.visit-buttons .btn-outline-dark {
    border: 2px solid var(--text-dark);
    padding: 12px 30px;
    border-radius: 50px;
}

.visit-buttons .btn-outline-dark:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

/* Visit Visual */
.visit-visual {
    position: relative;
}

.museum-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.museum-image img {
    width: 100%;
    display: block;
}

.museum-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 28, 46, 0.5) 0%, transparent 50%);
}

.floating-ticket {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--text-light);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    animation: floatTicket 4s ease-in-out infinite;
}

@keyframes floatTicket {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.ticket-content {
    text-align: center;
    min-width: 150px;
}

.ticket-museum {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ticket-type {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ticket-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.ticket-barcode {
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        var(--text-dark),
        var(--text-dark) 2px,
        transparent 2px,
        transparent 6px
    );
    border-radius: 4px;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    padding: 120px 0;
    background: var(--soft-cream);
    overflow: hidden;
}

.about-image {
    position: relative;
    display: inline-block;
}

.about-image img {
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    position: relative;
    z-index: 2;
}

.paint-splash {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50% 40% 60% 50%;
    z-index: 1;
}

.splash-1 {
    top: -30px;
    right: -30px;
    background: var(--primary-gold);
    opacity: 0.6;
    animation: splashPulse 4s ease-in-out infinite;
}

.splash-2 {
    bottom: -40px;
    left: -40px;
    background: var(--starry-blue);
    opacity: 0.5;
    animation: splashPulse 4s ease-in-out infinite 2s;
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.about-content {
    padding-left: 40px;
}

.about-dates {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--text-light);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

/* ===================================
   Newsletter Section
   =================================== */
.newsletter-section {
    padding: 80px 0;
    background: var(--text-light);
}

.newsletter-card {
    background: var(--gradient-night);
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 167, 84, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 14px 24px;
    font-size: 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.newsletter-form .btn-primary {
    background: var(--gradient-gold);
    border: none;
    color: var(--deep-navy);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
    transform: scale(1.05);
}

/* ===================================
   Footer
   =================================== */
.footer-section {
    background: var(--deep-navy);
    color: var(--text-light);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .brand-icon {
    font-size: 2rem;
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-gold);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 4px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-gold);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--deep-navy);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ===================================
   Image Modal
   =================================== */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 2;
    animation: modalZoom 0.5s ease;
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--deep-navy);
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: var(--shadow-strong);
}

.modal-info {
    text-align: center;
    margin-top: 20px;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.modal-year {
    color: var(--primary-gold);
    font-size: 1rem;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(15, 28, 46, 0.98);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
    }
    
    .language-switcher {
        margin-top: 20px;
        justify-content: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        padding-left: 0;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }
    
    .visit-info {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .newsletter-card {
        padding: 40px 30px;
    }
    
    .newsletter-content {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .floating-ticket {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
    }
    
    .about-image {
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .visit-buttons {
        flex-direction: column;
    }
    
    .visit-buttons .btn {
        width: 100%;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   Custom Scrollbar
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--deep-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--warm-yellow);
}

/* ===================================
   Selection Color
   =================================== */
::selection {
    background: var(--primary-gold);
    color: var(--deep-navy);
}

/* ===================================
   Smooth Animations
   =================================== */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar,
    .back-to-top,
    .scroll-indicator,
    #particles-container {
        display: none !important;
    }
}
