/* CSS Design Tokens & Root Variables */
:root {
    --rich-mahogany: #250902;
    --rich-mahogany-2: #38040e;
    --black-cherry: #640d14;
    --dark-wine: #800e13;
    --brown-red: #ad2831;

    /* Accent & Neutral Highlights */
    --gold-accent: #d4af37;
    --champagne: #e0a96d;
    --cream: #f9f5ed;
    --text-muted: #c9b3b8;
    --glass-bg: rgba(56, 4, 14, 0.45);
    --glass-border: rgba(224, 169, 109, 0.25);
    --glass-glow: rgba(173, 40, 49, 0.3);
    
    /* WhatsApp Green */
    --whatsapp-green: #25D366;
    --whatsapp-hover: #20ba59;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--rich-mahogany);
    color: var(--cream);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Utility Containers */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.text-center {
    text-align: center;
}

/* Section Header Typography */
.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--champagne);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 1px;
}

.section-desc {
    max-width: 650px;
    margin: 0.75rem auto 0;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 300;
}

.title-separator {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
    margin: 1.25rem auto 2.5rem;
}

/* Buttons & CTA */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brown-red), var(--black-cherry));
    color: var(--cream);
    border-color: var(--glass-border);
    box-shadow: 0 4px 20px rgba(173, 40, 49, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(173, 40, 49, 0.6);
    background: linear-gradient(135deg, var(--dark-wine), var(--brown-red));
}

.btn-outline {
    background: rgba(37, 9, 2, 0.4);
    color: var(--champagne);
    border-color: var(--champagne);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: var(--champagne);
    color: var(--rich-mahogany);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(37, 9, 2, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 1px;
    line-height: 1.1;
}

.artist-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--champagne);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--champagne);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--cream);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-btn {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    background: var(--glass-bg);
    color: var(--champagne);
}

.nav-link.nav-btn::after {
    display: none;
}

.nav-link.nav-btn:hover {
    background: var(--brown-red);
    color: var(--cream);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--champagne);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease forwards;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #e0a96d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1.2s ease forwards;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.8;
}

.bounce-icon {
    animation: bounce 2s infinite;
}

/* Biographie Section */
.biographie-section {
    background: linear-gradient(180deg, rgba(37, 9, 2, 0.7) 0%, rgba(56, 4, 14, 0.85) 100%);
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.bio-frame {
    position: relative;
    padding: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.artist-real-portrait {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.portrait-caption {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--champagne);
    text-align: center;
    margin-top: 0.8rem;
}

.artist-quote {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--champagne);
    border-left: 3px solid var(--gold-accent);
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    line-height: 1.7;
    background: rgba(100, 13, 20, 0.15);
    padding: 1rem 1.2rem;
    border-radius: 0 8px 8px 0;
}

.artist-quote.secondary-quote {
    font-size: 1.1rem;
    border-left-color: var(--brown-red);
    color: var(--cream);
}

/* Critics Section */
.critics-section {
    background: linear-gradient(180deg, rgba(37, 9, 2, 0.95) 0%, rgba(56, 4, 14, 0.85) 100%);
}

.critics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.critic-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.critic-card:hover {
    transform: translateY(-6px);
    border-color: var(--champagne);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.critic-author-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-accent);
    margin-bottom: 0.2rem;
}

.critic-author-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.critic-title-header {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.critic-excerpt {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.critic-read-more-btn {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--champagne);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: color 0.3s ease;
}

.critic-read-more-btn:hover {
    color: var(--cream);
}

/* Expositions Section Redesign */
.expositions-section {
    background: linear-gradient(180deg, rgba(37, 9, 2, 0.95) 0%, rgba(56, 4, 14, 0.98) 100%);
}

.expo-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.expo-stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem 1.2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.expo-stat-card:hover, .expo-stat-card.active {
    transform: translateY(-4px);
    border-color: var(--champagne);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px var(--glass-glow);
    background: linear-gradient(135deg, rgba(100, 13, 20, 0.5), rgba(56, 4, 14, 0.7));
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--champagne);
}

.expo-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    background: rgba(37, 9, 2, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.expo-tabs {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    background: rgba(25, 5, 2, 0.6);
    padding: 0.35rem;
    border-radius: 35px;
    border: 1px solid rgba(224, 169, 109, 0.15);
}

.expo-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.expo-tab-btn i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--champagne);
}

.expo-tab-btn:hover {
    color: var(--cream);
    background: rgba(100, 13, 20, 0.3);
    border-color: rgba(224, 169, 109, 0.25);
    transform: translateY(-1px);
}

.expo-tab-btn.active {
    background: linear-gradient(135deg, var(--brown-red), var(--dark-wine));
    color: #ffffff;
    border-color: var(--gold-accent);
    box-shadow: 0 4px 20px rgba(173, 40, 49, 0.5), 0 0 15px rgba(212, 175, 55, 0.3);
}

.expo-tab-btn.active i {
    color: #ffffff;
    transform: scale(1.1);
}

.expo-search-box {
    position: relative;
    min-width: 320px;
    flex: 1;
    max-width: 440px;
    display: flex;
    align-items: center;
}

.expo-search-box .search-icon {
    position: absolute;
    left: 1.1rem;
    color: var(--champagne);
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.expo-search-box input {
    width: 100%;
    padding: 0.75rem 2.8rem 0.75rem 3rem;
    background: rgba(25, 5, 2, 0.7);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.4);
}

.expo-search-box input::placeholder {
    color: rgba(201, 179, 184, 0.6);
}

.expo-search-box input:focus {
    outline: none;
    border-color: var(--champagne);
    background: rgba(37, 9, 2, 0.9);
    box-shadow: 0 0 25px rgba(224, 169, 109, 0.35), inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

.expo-search-box input:focus + .search-icon,
.expo-search-box:hover .search-icon {
    color: var(--gold-accent);
    transform: scale(1.1);
}

.search-clear-btn {
    position: absolute;
    right: 0.9rem;
    background: rgba(100, 13, 20, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--champagne);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-clear-btn:hover {
    background: var(--brown-red);
    color: #ffffff;
    transform: scale(1.1);
}

.expo-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    max-height: 750px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.expo-timeline::-webkit-scrollbar {
    width: 6px;
}
.expo-timeline::-webkit-scrollbar-track {
    background: rgba(37, 9, 2, 0.8);
}
.expo-timeline::-webkit-scrollbar-thumb {
    background: var(--brown-red);
    border-radius: 3px;
}

.expo-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.expo-item:hover {
    border-color: var(--champagne);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.expo-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
}

.expo-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-accent);
    letter-spacing: 1px;
}

.expo-badge-solo {
    background: linear-gradient(135deg, var(--brown-red), var(--dark-wine));
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    border: 1px solid rgba(224, 169, 109, 0.4);
}

.expo-badge-group {
    background: rgba(56, 4, 14, 0.6);
    color: var(--text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.expo-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--cream);
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.expo-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 992px) {
    .expo-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .expo-stats-grid {
        grid-template-columns: 1fr;
    }
    .expo-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .expo-search-box {
        max-width: 100%;
        min-width: 100%;
    }
}

.bio-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
}

.bio-paragraph {
    color: var(--cream);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.bio-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(100, 13, 20, 0.25);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--champagne);
}

.badge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-align: center;
}

/* Galerie Section */
.gallerie-section {
    background: rgba(37, 9, 2, 0.9);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(56, 4, 14, 0.6);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--cream);
    border-color: var(--champagne);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--dark-wine), var(--brown-red));
    color: var(--cream);
    border-color: var(--champagne);
    box-shadow: 0 4px 15px rgba(173, 40, 49, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.art-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.art-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--glass-glow);
    border-color: var(--champagne);
}

.art-card-media {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--rich-mahogany-2);
}

.art-card-media svg,
.art-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.art-card:hover .art-card-media svg,
.art-card:hover .art-card-media img {
    transform: scale(1.05);
}

.art-card-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(37, 9, 2, 0.8);
    border: 1px solid var(--glass-border);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--champagne);
}

.art-card-body {
    padding: 1.5rem;
}

.art-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.art-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.art-card-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    line-height: 1.5;
}

/* 3D Carousel Sections (Newspaper & Videos) */
.newspaper-section, .videos-section {
    background: linear-gradient(180deg, rgba(56, 4, 14, 0.7) 0%, rgba(37, 9, 2, 0.95) 100%);
    overflow: hidden;
}

.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    min-height: 520px;
    perspective: 1200px;
    margin: 2rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-3d-stage {
    position: relative;
    width: 100%;
    height: 440px;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-3d-item {
    position: absolute;
    width: 360px;
    height: 420px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(16px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    user-select: none;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

/* Newspaper Carousel Specific */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}

.news-source {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--champagne);
}

.news-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.news-clipping {
    height: 180px;
    background: var(--rich-mahogany-2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.news-quote {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
}

/* Video Carousel Specific (Video MUST be bigger than description) */
.video-carousel-mode .carousel-3d-item {
    width: 520px;
    height: 450px;
}

.video-player-frame {
    position: relative;
    width: 100%;
    height: 290px; /* Dominant video sizing */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}

.video-placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(173, 40, 49, 0.85);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--champagne);
    box-shadow: 0 0 25px rgba(224, 169, 109, 0.5);
    transition: transform 0.3s ease, background 0.3s ease;
}

.art-card:hover .video-play-btn,
.carousel-3d-item:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--brown-red);
}

.video-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.4rem;
}

.video-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Carousel Nav Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    z-index: 10;
}

.carousel-nav {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--champagne);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--brown-red);
    color: var(--cream);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.6rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(224, 169, 109, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--champagne);
    width: 26px;
    border-radius: 10px;
}

/* Links Section */
.links-section {
    background: rgba(37, 9, 2, 0.95);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.link-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    border-color: var(--champagne);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.link-source-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--champagne);
    background: rgba(128, 14, 19, 0.4);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.link-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.link-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.link-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-accent);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.link-card:hover .link-action {
    gap: 0.8rem;
    color: var(--cream);
}

/* Inquiry Section */
.inquiry-section {
    background: linear-gradient(180deg, rgba(37, 9, 2, 0.95) 0%, rgba(56, 4, 14, 0.9) 100%);
}

.inquiry-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.inquiry-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--champagne);
    margin-bottom: 0.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(37, 9, 2, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--champagne);
    box-shadow: 0 0 10px var(--glass-glow);
}

option {
    background: var(--rich-mahogany-2);
    color: var(--cream);
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-status.success {
    color: #4ECA84;
}

/* Social Buttons Card */
.social-connect-card {
    background: rgba(37, 9, 2, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.social-connect-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.social-connect-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.social-svg-icon {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #ffffff;
}

.whatsapp-social-btn {
    background: var(--whatsapp-green);
    color: #ffffff;
}

.facebook-btn {
    background: #1877F2;
    color: #ffffff;
}

.social-btn:hover {
    transform: translateX(6px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.contact-direct-info {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Floating WhatsApp Corner Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulseGlow 3s infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.15) rotate(8deg);
    background-color: var(--whatsapp-hover);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: rgba(37, 9, 2, 0.95);
    color: var(--cream);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    border: 1px solid var(--glass-border);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 3, 4, 0.92);
    backdrop-filter: blur(12px);
}

.lightbox-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    z-index: 10;
    overflow-y: auto;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(37, 9, 2, 0.8);
    border: 1px solid var(--glass-border);
    color: var(--cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--brown-red);
    transform: rotate(90deg);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #1a0501;
    border-top: 1px solid var(--glass-border);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--champagne);
    margin-bottom: 0.5rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
}

/* Mobile Optimization & Responsive Utility Rules */
html {
    -webkit-tap-highlight-color: transparent;
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* Fluid Typography Adjustments */
.hero-title {
    font-size: clamp(2.4rem, 6.5vw, 4.5rem);
}

.section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

/* Comprehensive Responsive Breakpoints */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.2rem;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .inquiry-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .expo-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    /* Navbar Mobile Menu */
    .navbar {
        padding: 0.8rem 0;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        background: rgba(56, 4, 14, 0.6);
        border: 1px solid var(--glass-border);
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 64px);
        background: rgba(25, 5, 2, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2.5rem 1.5rem;
        gap: 1.8rem;
        border-bottom: 1px solid var(--glass-border);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 7rem 1rem 3rem;
        min-height: 90vh;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Gallery Mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.25rem;
    }

    .art-card-media {
        height: 240px;
    }

    /* Expositions Mobile */
    .expo-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 1rem;
    }

    .expo-tabs {
        width: 100%;
        justify-content: center;
    }

    .expo-tab-btn {
        flex: 1;
        justify-content: center;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .expo-search-box {
        min-width: 100%;
        max-width: 100%;
    }

    .expo-timeline {
        grid-template-columns: 1fr;
        max-height: 600px;
    }

    /* 3D Carousels Mobile Sizing */
    .carousel-3d-wrapper {
        min-height: 440px;
        perspective: 800px;
    }

    .carousel-3d-stage {
        height: 380px;
    }

    .carousel-3d-item {
        width: 290px;
        height: 370px;
        padding: 1.2rem;
    }

    .video-carousel-mode .carousel-3d-item {
        width: 310px;
        height: 380px;
    }

    .video-player-frame {
        height: 200px;
    }

    /* Critics Grid Mobile */
    .critics-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .critic-card {
        padding: 1.5rem;
    }

    /* Links Grid Mobile */
    .links-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Inquiry Mobile */
    .inquiry-box {
        padding: 1.8rem 1.2rem;
        border-radius: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-connect-card {
        padding: 1.5rem;
    }

    /* Floating WhatsApp Button Mobile */
    .floating-whatsapp-btn {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    .whatsapp-tooltip {
        display: none; /* Hide tooltip on touch screens */
    }

    /* Lightbox Modal Mobile */
    .lightbox-container {
        width: 94%;
        padding: 1.25rem;
        max-height: 90vh;
    }

    .lightbox-content > div {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .artist-name {
        font-size: 1.3rem;
    }

    .bio-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .expo-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .stat-num {
        font-size: 2.4rem;
    }

    .carousel-3d-item {
        width: 260px;
        height: 350px;
    }

    .video-carousel-mode .carousel-3d-item {
        width: 270px;
        height: 360px;
    }

    .video-player-frame {
        height: 180px;
    }
}

