:root {
    /* Color Palette - Premium Festival */
    --un-blue: #1D8CB3; /* Softer, elegant blue */
    --un-blue-dark: #041B26; /* Deep navy, nearly black */
    --un-blue-light: #64C5E0;
    
    --sand-gold: #D4AF37; /* Metallic premium gold */
    --sand-dark: #B5952F;
    --sand-light: #FBF8F1;
    
    --terracotta: #D95D4A; /* Richer, muted terracotta */
    --terracotta-dark: #B84736;
    
    --text-main: #1A1A1A;
    --text-light: #4A4A4A;
    --bg-main: #F9F9F7; /* Warm off-white */
    --bg-dark: #041B26;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: clamp(80px, 10vw, 150px) 0;
    --border-radius: 20px;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Buttery smooth */
    --navbar-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
    scroll-padding-top: var(--navbar-height); /* Fixes anchor link overlap */
}
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--un-blue-dark); border-radius: 5px; border: 2px solid var(--bg-main); }
::-webkit-scrollbar-thumb:hover { background: var(--terracotta); }

/* Typography Utility */
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-heading); 
    font-weight: 700; 
    line-height: 1.2; 
    color: var(--un-blue-dark); 
}
.text-center { text-align: center; }
.text-light { color: #ffffff !important; }
.text-light-opacity { color: rgba(255,255,255,0.9); }
.text-sand { color: var(--sand-gold); }
.text-blue { color: var(--un-blue); }
.bg-sand { background-color: var(--sand-light); }
.bg-blue { background-color: var(--un-blue-dark); }
.bg-dark { background-color: var(--bg-dark); }
.mt-4 { margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.relative { position: relative; }
.z-10 { z-index: 10; }

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 2.5rem); }
.section { padding: var(--section-padding); position: relative; }
.section-title { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 1.5rem; letter-spacing: -0.5px; font-weight: 800; }
.section-subtitle { font-size: clamp(1.1rem, 2vw, 1.25rem); margin-bottom: 3.5rem; font-weight: 600; max-width: 800px; margin-left: auto; margin-right: auto; color: var(--un-blue);}
.chapter-label { 
    display: inline-block; font-family: var(--font-heading); text-transform: uppercase; 
    letter-spacing: 2px; font-weight: 700; font-size: 0.9rem; margin-bottom: 1rem; color: var(--terracotta);
    background: rgba(255, 111, 89, 0.1); padding: 5px 15px; border-radius: 20px;
}

.divider { width: 80px; height: 4px; background-color: var(--un-blue); margin-bottom: 2.5rem; border-radius: 4px; }
.divider.center { margin: 0 auto 2.5rem; }
.divider.border-sand { background-color: var(--sand-gold); }
.divider.border-blue { background-color: var(--un-blue-light); }

/* Buttons - Festival style */
.btn-primary {
    display: inline-block; background: var(--terracotta); color: #ffffff;
    padding: 14px 35px; font-size: 1rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; text-decoration: none; border-radius: 50px;
    transition: var(--transition); border: none;
    box-shadow: 0 10px 20px rgba(255, 111, 89, 0.3);
}
.btn-primary:hover { transform: translateY(-5px); box-shadow: 0 15px 25px rgba(255, 111, 89, 0.4); background: var(--terracotta-dark); }

.btn-primary-outline {
    display: inline-block; background-color: transparent; color: var(--un-blue-dark);
    padding: 12px 25px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; text-decoration: none; border-radius: 50px;
    transition: all 0.3s ease; border: 2px solid var(--un-blue-dark);
}
.btn-primary-outline:hover { background-color: var(--un-blue-dark); color: #ffffff; }

/* Navigation - FIXED OVERLAP & PADDING */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--navbar-height);
    background: rgba(249, 249, 247, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    z-index: 1000; transition: all 0.4s ease; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; align-items: center;
}
.navbar.scrolled { height: 70px; background: rgba(255, 255, 255, 0.85); box-shadow: 0 10px 30px rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 2rem; }
.logo { text-decoration: none; display: flex; align-items: center; margin-right: 1rem; }
.nav-logo-img { height: 50px; width: auto; object-fit: contain; transition: var(--transition); border-radius: 4px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.navbar.scrolled .nav-logo-img { height: 40px; }

.nav-links { list-style: none; display: flex; align-items: center; gap: clamp(1.5rem, 2.5vw, 3rem); }
.nav-links a {
    text-decoration: none; color: var(--un-blue-dark); font-weight: 700;
    font-size: 0.9rem; transition: color 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px;
    white-space: nowrap; position: relative;
}
.nav-links a:not(.btn-primary-outline)::after {
    content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0;
    background-color: var(--terracotta); transition: width 0.3s ease;
}
.nav-links a:not(.btn-primary-outline):hover { color: var(--terracotta); }
.nav-links a:not(.btn-primary-outline):hover::after { width: 100%; }

.nav-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 5px; }
.hamburger, .hamburger::before, .hamburger::after {
    content: ''; display: block; width: 30px; height: 3px; background-color: var(--un-blue-dark); transition: all 0.3s ease; border-radius: 3px;
}
.hamburger::before { transform: translateY(-8px); }
.hamburger::after { transform: translateY(8px); }

/* Hero Section - FIXED PADDING TOP */
.hero {
    position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center;
    background-image: url('assets/images/hero_bg_premium.png'); background-size: cover;
    background-position: center; background-attachment: fixed; overflow: hidden;
    padding-top: var(--navbar-height); /* Ensures content does not hide under navbar on short screens */
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(7, 59, 76, 0.7) 0%, rgba(255, 111, 89, 0.4) 100%); }
.hero-content { position: relative; z-index: 10; color: #ffffff; max-width: 900px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.date-badge {
    display: inline-block; background: var(--sand-gold);
    color: var(--un-blue-dark); padding: 8px 24px; border-radius: 30px; font-weight: 800; font-size: 0.95rem;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.hero .title { font-size: clamp(2.2rem, 7vw, 5.5rem); color: #ffffff; margin-bottom: 1rem; line-height: 1.2; font-weight: 800; text-shadow: 0 4px 20px rgba(0,0,0,0.3);}
.hero .title .accent-text { color: var(--sand-gold); font-size: clamp(1.8rem, 5vw, 3.5rem); display: block; margin: 5px 0;}
.hero .description { font-size: clamp(1rem, 2vw, 1.3rem); margin-bottom: 2.5rem; opacity: 1; max-width: 750px; font-weight: 600; line-height: 1.6; text-shadow: 0 2px 10px rgba(0,0,0,0.3);}

/* Dynamic Dividers */
.custom-shape-divider-bottom-hero {
    position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 2;
}
.custom-shape-divider-bottom-hero svg { position: relative; display: block; width: calc(100% + 1.3px); height: clamp(40px, 6vw, 90px); }
.custom-shape-divider-bottom-hero .shape-fill { fill: var(--bg-main); }

.custom-shape-divider-bottom-blue {
    position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg);
}
.custom-shape-divider-bottom-blue svg { position: relative; display: block; width: calc(100% + 1.3px); height: clamp(40px, 6vw, 90px); }
.custom-shape-divider-bottom-blue .shape-fill { fill: var(--bg-main); }

/* Story Section (Chapitre 1) */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem); align-items: center; }
.story-text p { font-size: clamp(1.05rem, 2vw, 1.15rem); margin-bottom: 1.8rem; color: var(--text-light); font-weight: 600;}
.organic-wrapper { 
    position: relative; border-radius: 30px; overflow: hidden; height: clamp(350px, 45vw, 550px);
    box-shadow: 20px 20px 0px var(--sand-gold);
    transition: var(--transition);
}
.organic-wrapper:hover { transform: translate(5px, 5px); box-shadow: 10px 10px 0px var(--sand-gold); }
.organic-wrapper img { width: 100%; height: 100%; object-fit: cover; }

/* Visionaries Section (Chapitre 2) */
#chapitre-2 { padding-bottom: clamp(100px, 15vw, 150px); } 
.quote-card-organic {
    background: #ffffff; padding: clamp(2rem, 5vw, 4rem); border-radius: 30px;
    margin-bottom: 3rem; position: relative; text-align: center; box-shadow: 0 20px 40px rgba(7, 59, 76, 0.08);
    border-top: 8px solid var(--terracotta);
}
.quote-icon { color: var(--un-blue); opacity: 0.2; width: 80px; height: 80px; margin-bottom: 1rem; }
.quote-text { font-family: var(--font-heading); font-size: clamp(1.3rem, 3vw, 2rem); font-style: italic; color: var(--un-blue-dark); line-height: 1.5; margin-bottom: 2rem; font-weight: 600;}
.author-name { font-weight: 800; color: var(--terracotta); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px;}
.author-title { font-weight: 600; font-size: 0.95rem; color: var(--text-light); margin-top: 4px; }
.vision-description p { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 600; max-width: 850px; margin: 0 auto; line-height: 1.8; color: rgba(255,255,255,0.9); }

/* Festival Experience (Chapitre 3) */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(1.5rem, 4vw, 2.5rem); margin-top: 3rem; }
.feature-card-festival {
    background: #ffffff; padding: 3rem 2rem; border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); text-align: center; transition: var(--transition);
    border: 2px solid transparent; display: flex; flex-direction: column; align-items: center;
}
.feature-card-festival:hover { transform: translateY(-15px); border-color: var(--un-blue-light); box-shadow: 0 20px 40px rgba(0, 168, 232, 0.15); }
.feature-icon {
    width: 80px; height: 80px; background: var(--sand-light);
    color: var(--terracotta); border-radius: 20px; transform: rotate(10deg);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; transition: var(--transition);
}
.feature-card-festival:hover .feature-icon { transform: rotate(0deg) scale(1.1); background: var(--terracotta); color: #fff;}
.feature-card-festival h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--un-blue-dark); font-family: var(--font-heading); font-weight: 800;}
.feature-card-festival p { color: var(--text-light); font-size: 1rem; line-height: 1.6; font-weight: 600;}

/* Artists Section (Chapitre 4) */
.artists { position: relative; overflow: hidden; padding-bottom: 8rem;}
.artists-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.artists-background img { width: 100%; height: 100%; object-fit: cover; }
.overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(7, 59, 76, 0.85), rgba(7, 59, 76, 0.95)); }
.artists-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 4rem;}

.artist-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1); border-radius: 24px;
    overflow: hidden; transition: var(--transition); cursor: pointer; display: flex; flex-direction: column;
}
.artist-card:hover { transform: translateY(-10px); border-color: var(--sand-gold); background: rgba(255, 255, 255, 0.1); box-shadow: 0 15px 30px rgba(0,0,0,0.3);}
.artist-image-placeholder { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }

/* Vibrant Colorful Gradients for artists */
.pattern-1 { background: linear-gradient(135deg, #00A8E8 0%, #073B4C 100%); }
.pattern-2 { background: linear-gradient(135deg, #FF6F59 0%, #E05E49 100%); }
.pattern-3 { background: linear-gradient(135deg, #FFD166 0%, #E6B94D 100%); }
.pattern-4 { background: linear-gradient(135deg, #48CAE4 0%, #00A8E8 100%); }
.pattern-5 { background: linear-gradient(135deg, #E05E49 0%, #073B4C 100%); }
.pattern-6 { background: linear-gradient(135deg, #E6B94D 0%, #FF6F59 100%); }
.pattern-7 { background: linear-gradient(135deg, #073B4C 0%, #00A8E8 100%); }
.pattern-8 { background: linear-gradient(135deg, #FF6F59 0%, #FFD166 100%); }
.pattern-9 { background: linear-gradient(135deg, #00A8E8 0%, #FF6F59 100%); }
.pattern-10 { background: linear-gradient(135deg, #FFD166 0%, #48CAE4 100%); }

.artist-initials { font-family: var(--font-heading); font-size: 3.5rem; color: #ffffff; font-weight: 800; opacity: 0.9;}
.artist-info { padding: 2rem 1.5rem; text-align: center; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; align-items: center;}
.artist-info h3 { color: #ffffff; font-size: 1.3rem; margin-bottom: 0.2rem; font-family: var(--font-heading); font-weight: 700;}
.artist-genre { color: var(--sand-gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; font-weight: 800;}
.btn-read-more {
    background: rgba(255, 255, 255, 0.1); border: none; color: #ffffff;
    padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; text-transform: uppercase;
    cursor: pointer; transition: var(--transition); font-family: var(--font-heading); font-weight: 700;
}
.artist-card:hover .btn-read-more { background: var(--sand-gold); color: var(--un-blue-dark);}

/* Artist Modal */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 27, 38, 0.6); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    z-index: 2000; display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); padding: 1rem;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container {
    background: rgba(255, 255, 255, 0.95); width: 100%; max-width: 650px; border-radius: 30px;
    padding: clamp(2rem, 5vw, 3rem); position: relative; transform: translateY(30px) scale(0.95); transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.4); max-height: 90vh; overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.2);
}
.modal-overlay.active .modal-container { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem; background: var(--bg-main); border: none;
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--un-blue-dark); cursor: pointer; transition: var(--transition);
}
.modal-close:hover { background: var(--terracotta); color: #ffffff; transform: rotate(90deg); }
.modal-header { margin-bottom: 2rem; text-align: center; border-bottom: 2px dashed rgba(0,0,0,0.1); padding-bottom: 2rem;}
.modal-header h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); color: var(--un-blue-dark); margin-bottom: 0.2rem; font-weight: 800;}
.modal-body p { color: var(--text-light); font-size: 1.05rem; line-height: 1.8; font-weight: 600;}

/* Footer */
.footer { background-color: var(--un-blue-dark); color: #ffffff; padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); margin-bottom: 4rem; }
.footer-brand h3 { color: var(--sand-gold); font-size: 1.8rem; margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 800;}
.footer-brand p { color: rgba(255, 255, 255, 0.7); max-width: 350px; font-weight: 600; line-height: 1.7;}
.footer h4 { color: #ffffff; font-size: 1.1rem; margin-bottom: 1.5rem; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase;}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: all 0.3s ease; font-weight: 600;}
.footer-links a:hover { color: var(--sand-gold); padding-left: 8px; }
.footer-contact p { color: rgba(255, 255, 255, 0.7); margin-bottom: 0.8rem; font-weight: 600;}
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; color: #ffffff;
    text-decoration: none; transition: var(--transition); font-size: 1rem;
}
.social-links a:hover { background: var(--terracotta); transform: translateY(-5px); }
.footer-bottom { background-color: rgba(0, 0, 0, 0.2); padding: 2rem 0; text-align: center; }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; font-weight: 600;}
.footer-logo img { filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2)); transition: var(--transition); }
.footer-logo img:hover { transform: scale(1.05) rotate(5deg); }

/* Animations */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1); }
.fade-in { opacity: 0; transition: opacity 1.2s ease-out; }
.slide-in-left { opacity: 0; transform: translateX(-50px); transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1); }
.slide-in-right { opacity: 0; transform: translateX(50px); transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1); }
.visible { opacity: 1; transform: translateY(0) translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--un-blue-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
}
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--sand-gold);
    border: 4px solid #fff;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.2);
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-content {
    padding: 20px 30px;
    background-color: #ffffff;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--un-blue);
    transition: var(--transition);
}
.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.15);
}
.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--un-blue-dark);
}


/* Responsive Overrides */
@media (max-width: 992px) {
    .story-grid { grid-template-columns: 1fr; }
    .story-image { order: -1; } 
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem;}
}

@media (max-width: 768px) {
    .nav-toggle { display: block; z-index: 1001; }
    .nav-links { 
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; 
        background: rgba(249, 249, 247, 0.98);
        flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.2rem; }
    .nav-toggle.active .hamburger { background-color: transparent; }
    .nav-toggle.active .hamburger::before { transform: rotate(45deg); }
    .nav-toggle.active .hamburger::after { transform: rotate(-45deg); }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center;}
    .social-links { justify-content: center; }
    .footer-brand p { margin: 0 auto; }
    
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item:nth-child(even) { left: 0%; }
    .timeline-dot { left: 21px; }
    .timeline-item:nth-child(even) .timeline-dot { left: 21px; }
}

/* Media Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin-top: 3rem;
}
.partner-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    aspect-ratio: 3/2;
}
.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.15);
}
.partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}
.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.modal-header .artist-genre {
    color: var(--terracotta); /* Better contrast on white background than sand-gold */
    background: rgba(255, 111, 89, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 0;
}

/* Vision Royale */
.royal-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--un-blue-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-left: 4px solid var(--sand-gold);
    padding-left: 1.5rem;
}
.royal-reference {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 2rem;
}
.royal-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px var(--terracotta);
    border: 8px solid white;
}

/* Charte du Oujda */
.charte-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.charte-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 6px solid var(--un-blue);
    transition: var(--transition);
}
.charte-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.15);
}
.charte-item h3 {
    font-family: var(--font-heading);
    color: var(--un-blue-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.charte-item p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
}

/* Revue de Presse */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.press-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
}
.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 168, 232, 0.15);
    border-color: var(--un-blue-light);
}
.press-card .press-icon {
    color: var(--un-blue);
    margin-bottom: 1rem;
}
.press-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--un-blue-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.press-card .read-more {
    margin-top: auto;
    color: var(--terracotta);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.press-card:hover .read-more {
    color: var(--terracotta-dark);
}
