
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bergstena+Script&family=Nuptial+Liberty&family=Bristle+Radiant&display=swap');
:root {
    --orange-primary: #d35400;
    --brown-dark: #6e2c00;
    --gold: #f39c12;
    --white: #ffffff;
    --beige-light: #fdf3e7;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #2c3e50;
    --text-secondary: #7f8c8d;
    --border-color: #e9ecef;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #404040;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--brown-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--orange-primary), var(--gold));
    border-radius: 2px;
}

.text-gold {
    color: var(--gold) !important;
}

.text-primary {
    color: var(--orange-primary) !important;
}

.bg-primary {
    background-color: var(--orange-primary) !important;
}

.theme-toggle-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--orange-primary);
    transform: scale(1.1);
}

.theme-toggle-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--orange-primary);
}

#themeIcon {
    transition: transform 0.3s ease;
}

.theme-toggle-btn:hover #themeIcon {
    transform: rotate(180deg);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px var(--shadow-color);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bg-light {
    background-color: var(--bg-secondary) !important;
    transition: background-color 0.3s ease;
}

.text-muted {
    color: var(--text-secondary) !important;
    transition: color 0.3s ease;
}

.card {
    background-color: var(--bg-primary);
    border-color: var(--border-color);
    color: var(--text-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.section-title {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.theme-section {
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.info-card-enhanced {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.cta-section {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
    color: var(--white);
}

.navbar-nav .nav-link {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--orange-primary);
}

.glassmorphism-nav {
    background: rgba(110, 44, 0, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.glassmorphism-menu {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-left: auto;
}

.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white) !important;
    letter-spacing: 2px;
}

.glassmorphism-menu .navbar-nav {
    flex-direction: row;
    gap: 20px;
}

.glassmorphism-menu .nav-item .nav-link {
    font-weight: 500;
    color: var(--white) !important;
    transition: all 0.3s ease;
    padding: 8px 16px !important;
    border-radius: 25px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.glassmorphism-menu .nav-item .nav-link:hover {
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


:root {
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
    --glass-blur-strong: blur(40px);
    
    --gradient-primary: linear-gradient(135deg, #d35400 0%, #f39c12 50%, #e67e22 100%);
    --gradient-gold: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    --animation-duration: 0.6s;
    --animation-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(110, 44, 0, 0.2), rgba(211, 84, 0, 0.15)), url('../images/gallery/babavillage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: screen;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(243, 156, 18, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(211, 84, 0, 0.4), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(243, 156, 18, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(243, 156, 18, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(211, 84, 0, 0.1) 50%, transparent 70%);
    animation: gradientShift 15s ease-in-out infinite;
}

.hero-light-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(243, 156, 18, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(211, 84, 0, 0.15) 0%, transparent 40%);
    animation: lightPulse 8s ease-in-out infinite;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
    padding: 2rem 0;
}

.hero-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    position: relative;
}

.hero-main-title {
    position: relative;
    margin-bottom: 0;
}

.festival-name {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.2;
    margin: 0;
    position: relative;
    z-index: 2;
}

.festival-text {
    font-family: 'Bristle Radiant', 'Times New Roman', serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
    animation: festivalGlow 4s ease-in-out infinite;
    display: block;
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 400;
    font-size: 1.1em;
    margin-bottom: 0.3rem;
}

.baba-village-text {
    font-family: 'Bristle Radiant', 'Times New Roman', serif;
    background: linear-gradient(135deg, #f39c12 0%, #f1c40f 30%, #e67e22 60%, #d35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(243, 156, 18, 0.6);
    animation: babaVillageGlow 3s ease-in-out infinite;
    display: block;
    letter-spacing: 0.01em;
    text-transform: none;
    font-weight: 400;
    font-size: 1.2em;
    margin-top: 0.2rem;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: titleGlow 6s ease-in-out infinite;
    z-index: -1;
}

.hero-year {
    position: relative;
    margin: 0;
}

.year-text {
    font-family: 'Bristle Radiant', 'Times New Roman', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
    animation: yearGlow 3s ease-in-out infinite;
    display: block;
    letter-spacing: 0.02em;
}

.hero-edition-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
}

.hero-edition {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.edition-number {
    font-family: 'Bristle Radiant', 'Times New Roman', serif;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    animation: editionGlow 3s ease-in-out infinite;
    font-size: 1.2em;
    font-weight: 400;
}

.edition-text {
    font-family: 'Bristle Radiant', 'Times New Roman', serif;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    font-size: 0.6em;
    font-weight: 400;
    text-transform: none;
}


@keyframes festivalGlow {
    0%, 100% { 
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 60px rgba(255, 255, 255, 1);
        filter: brightness(1.1);
    }
}

@keyframes titleGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes editionGlow {
    0%, 100% { 
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
    }
    50% { 
        text-shadow: 0 0 45px rgba(255, 255, 255, 0.8);
    }
}

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    }
}

@keyframes yearGlow {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 50px rgba(255, 255, 255, 0.9);
        transform: scale(1.05);
    }
}

@keyframes babaVillageGlow {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(243, 156, 18, 0.6);
        filter: brightness(1);
    }
    50% { 
        text-shadow: 0 0 50px rgba(243, 156, 18, 0.8);
        filter: brightness(1.1);
    }
}

.countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 800px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.countdown-title {
    text-align: center;
    position: relative;
}

.countdown-title h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 0.05em;
}

.countdown-title-decoration {
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1rem auto 0;
    border-radius: 1px;
    animation: decorationPulse 2s ease-in-out infinite;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.countdown-item {
    display: flex;
    justify-content: center;
}

.countdown-card {
    position: relative;
    width: 100%;
    max-width: 140px;
    padding: 2rem 1rem;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.5s var(--animation-easing);
    overflow: hidden;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.countdown-card:hover::before {
    opacity: 1;
}

.countdown-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(243, 156, 18, 0.3);
}

.countdown-number-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    z-index: 2;
}

.countdown-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gold);
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
    line-height: 1;
    transition: all 0.3s ease;
}

.countdown-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: numberGlow 2s ease-in-out infinite;
    z-index: -1;
}

.countdown-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
    z-index: 2;
    position: relative;
}

.countdown-decoration {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-card:hover .countdown-decoration {
    opacity: 1;
}

.festival-info-section {
    width: 100%;
    max-width: 1000px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-card-modern {
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.5s var(--animation-easing);
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 100px;
}

.info-card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.info-card-modern:hover .info-card-background {
    opacity: 1;
}

.info-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(243, 156, 18, 0.3);
}

.info-icon-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.info-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 3s ease-in-out infinite;
    z-index: -1;
}

.info-card-modern:hover .info-icon-container {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
}

.info-icon {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.info-content-modern {
    flex: 1;
    text-align: left;
    z-index: 2;
    position: relative;
}

.info-title {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.info-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    margin: 0;
}

.info-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.info-card-modern:hover .info-accent {
    width: 100%;
}

.hero-cta {
    display: flex;
    justify-content: center;
    width: 100%;
}

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

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.4s var(--animation-easing);
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 200px;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-hero:hover .btn-glow {
    opacity: 0.2;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.4);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(243, 156, 18, 0.5);
    color: white;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 20px 20px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 40px 40px, rgba(255, 255, 255, 0.2), transparent);
    background-size: 30px 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-hero:hover .btn-particles {
    opacity: 1;
    animation: buttonParticles 2s linear infinite;
}

.scroll-indicator-modern {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 1px;
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.floating-lights {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.light {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: float 6s ease-in-out infinite;
}

.light-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.light-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.light-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.light-4 {
    top: 40%;
    right: 30%;
    animation-delay: 4.5s;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes lightPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes logoGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes logoParticles {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(243, 156, 18, 0.5); }
    50% { text-shadow: 0 0 40px rgba(243, 156, 18, 0.8); }
}

@keyframes decorationPulse {
    0%, 100% { transform: scaleX(1); opacity: 0.7; }
    50% { transform: scaleX(1.2); opacity: 1; }
}

@keyframes numberGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.4; }
}

@keyframes iconGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

@keyframes buttonParticles {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

@keyframes scrollLine {
    0%, 100% { height: 40px; opacity: 0.7; }
    50% { height: 60px; opacity: 1; }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    33% { transform: translateY(-30px) translateX(10px); opacity: 1; }
    66% { transform: translateY(15px) translateX(-5px); opacity: 0.8; }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--animation-easing);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes countdownParticle {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(var(--random-x, 20px), var(--random-y, -20px)) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--random-x, 40px), var(--random-y, -40px)) scale(0);
        opacity: 0;
    }
}

.glassmorphism-advanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.glassmorphism-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.glassmorphism-advanced:hover::before {
    opacity: 1;
}

.hero-section * {
    will-change: transform;
}

.countdown-card,
.info-card-modern,
.btn-hero {
    will-change: transform, box-shadow;
}

.countdown-card,
.info-card-modern,
.btn-hero,
.hero-logo,
.hero-edition {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero:focus,
.countdown-card:focus,
.info-card-modern:focus {
    outline: 2px solid rgba(243, 156, 18, 0.6);
    outline-offset: 2px;
}

.hero-edition,
.countdown-number,
.info-title,
.info-text {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    background-color: var(--orange-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--brown-dark);
    transform: translateY(-2px);
}

.content-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(243, 156, 18, 0.1);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--beige-light) !important;
}

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

.promoteur-image i {
    color: var(--orange-primary);
    margin-bottom: 1rem;
}

.promoteur-image h4 {
    color: var(--brown-dark);
    font-weight: 700;
}

.nav-tabs {
    border-bottom: 3px solid var(--gold);
}

.nav-tabs .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    border: none;
    border-radius: 0;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--orange-primary);
    background-color: rgba(243, 156, 18, 0.1);
}

.nav-tabs .nav-link.active {
    color: var(--white);
    background-color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.programme-list {
    list-style: none;
    padding: 0;
}

.programme-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(243, 156, 18, 0.2);
    position: relative;
    padding-left: 30px;
}

.programme-list li:before {
    content: '🎭';
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.2rem;
}

.programme-list li:last-child {
    border-bottom: none;
}

.sponsor-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.sponsor-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.sponsor-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.sponsor-header {
    padding: 20px;
    text-align: center;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.sponsor-header.bronze {
    background: linear-gradient(135deg, #cd7f32, #8b5a2b);
}

.sponsor-header.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
}

.sponsor-header.gold {
    background: linear-gradient(135deg, var(--gold), var(--orange-primary));
}

.sponsor-header.diamond {
    background: linear-gradient(135deg, #b9f2ff, #0077be);
}

.sponsor-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.sponsor-body {
    padding: 30px 20px;
}

.sponsor-percentage {
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange-primary);
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.sponsor-subtitle {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.sponsor-body ul {
    padding-left: 20px;
}

.sponsor-body li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-info {
    text-align: center;
    padding: 20px;
}

.contact-info i {
    margin-bottom: 20px;
}

.contact-info h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-info a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero-content-wrapper {
        gap: 3rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .btn-hero {
        min-width: 180px;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .glassmorphism-menu {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 15px;
        padding: 15px;
        margin-top: 15px;
    }
    
    .glassmorphism-menu .navbar-nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .glassmorphism-menu .nav-item .nav-link {
        padding: 12px 20px !important;
        border-radius: 10px;
    }
    
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
        background-size: cover;
        background-position: center;
    }
    
    .hero-section::before {
        background: rgba(0, 0, 0, 0.1);
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content-wrapper {
        gap: 2.5rem;
        padding: 1rem 0;
    }
    
    .hero-branding {
        gap: 1rem;
    }
    
    .festival-name {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }
    
    .baba-village-text {
        font-size: 1.1em;
    }
    
    .title-glow {
        width: 110%;
        height: 110%;
    }
    
    .hero-edition {
        font-size: clamp(1.4rem, 6vw, 2.2rem);
    }
    
    .year-text {
        font-size: clamp(1.6rem, 5.5vw, 2.5rem);
    }
    
    .countdown-section {
        gap: 1.5rem;
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
    }
    
    .countdown-card {
        padding: 1.5rem 0.8rem;
        max-width: 120px;
    }
    
    .countdown-number {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .festival-info-section {
        max-width: 100%;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card-modern {
        padding: 1.5rem 1rem;
        min-height: 80px;
    }
    
    .info-icon-container {
        width: 50px;
        height: 50px;
    }
    
    .info-icon {
        font-size: 1.2rem;
    }
    
    .info-title {
        font-size: 0.7rem;
    }
    
    .info-text {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        min-width: auto;
        padding: 1rem 1.5rem;
    }
    
    .scroll-indicator-modern {
        bottom: 1.5rem;
    }
    
    .scroll-line {
        height: 30px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .light {
        width: 3px;
        height: 3px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .sponsor-card.featured {
        transform: none;
    }
    
    .sponsor-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .nav-tabs .nav-link {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-container {
        padding: 0 0.8rem;
    }
    
    .hero-section {
        background-size: cover;
        background-position: center;
    }
    
    .hero-section::before {
        background: rgba(0, 0, 0, 0.12);
    }
    
    .hero-content-wrapper {
        gap: 2rem;
    }
    
    .festival-name {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    
    .baba-village-text {
        font-size: 1em;
    }
    
    .title-glow {
        width: 105%;
        height: 105%;
    }
    
    .hero-edition {
        font-size: clamp(0.9rem, 6vw, 1.6rem);
    }
    
    .year-text {
        font-size: clamp(1rem, 5vw, 1.4rem);
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 320px;
    }
    
    .countdown-card {
        padding: 1.2rem 0.6rem;
        max-width: 100px;
    }
    
    .countdown-number {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }
    
    .countdown-label {
        font-size: 0.6rem;
    }
    
    .info-card-modern {
        padding: 1.2rem 0.8rem;
        min-height: 70px;
        gap: 0.8rem;
    }
    
    .info-icon-container {
        width: 45px;
        height: 45px;
    }
    
    .info-icon {
        font-size: 1rem;
    }
    
    .info-title {
        font-size: 0.65rem;
    }
    
    .info-text {
        font-size: 0.8rem;
    }
    
    .btn-hero {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator-modern {
        bottom: 1rem;
    }
    
    .scroll-line {
        height: 25px;
    }
    
    .scroll-arrow {
        font-size: 1rem;
    }
    
    .scroll-text {
        font-size: 0.65rem;
    }
}

@media (max-width: 400px) {
    .hero-container {
        padding: 0 0.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-image-container {
        height: 160px;
        aspect-ratio: 1;
    }
    
    .gallery-image {
        height: 160px;
    }
    
    .hero-section {
        background-size: cover;
        background-position: center;
    }
    
    .hero-section::before {
        background: rgba(0, 0, 0, 0.15);
    }
    
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        max-width: 280px;
    }
    
    .countdown-card {
        padding: 1rem 0.4rem;
        max-width: 90px;
    }
    
    .countdown-number {
        font-size: clamp(1.5rem, 12vw, 2rem);
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .info-card-modern {
        padding: 1rem 0.6rem;
        min-height: 60px;
        gap: 0.6rem;
    }
    
    .info-icon-container {
        width: 40px;
        height: 40px;
    }
    
    .info-icon {
        font-size: 0.9rem;
    }
    
    .info-title {
        font-size: 0.6rem;
    }
    
    .info-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .hero-content-wrapper {
        gap: 2rem;
        padding: 0.5rem 0;
    }
    
    .hero-branding {
        gap: 1rem;
    }
    
    .hero-logo {
        max-width: 80px;
    }
    
    .hero-edition {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .countdown-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
        max-width: 500px;
    }
    
    .countdown-card {
        padding: 1rem 0.5rem;
        max-width: 100px;
    }
    
    .countdown-number {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .info-card-modern {
        padding: 1rem 0.8rem;
        min-height: 60px;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 0.8rem;
    }
    
    .btn-hero {
        min-width: 140px;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section {
        background: linear-gradient(135deg, rgba(110, 44, 0, 0.2), rgba(211, 84, 0, 0.15)), url('../images/gallery/babavillage.jpg');
        background-size: cover;
        background-position: center;
    }
    
    .hero-particles {
        background-size: 100px 100px;
    }
    
    .btn-particles {
        background-size: 15px 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-particles,
    .hero-gradient-overlay,
    .hero-light-effects,
    .hero-logo-glow,
    .hero-logo-particles,
    .edition-number,
    .countdown-title-decoration,
    .countdown-glow,
    .info-icon-glow,
    .btn-particles,
    .scroll-line,
    .scroll-arrow,
    .light {
        animation: none;
    }
    
    .fade-in-up {
        opacity: 1;
        transform: translateY(0);
    }
    
    .countdown-card:hover,
    .info-card-modern:hover,
    .btn-hero:hover {
        transform: none;
    }
}

@media (prefers-color-scheme: dark) {
    .hero-section {
        background: linear-gradient(135deg, rgba(110, 44, 0, 0.2), rgba(211, 84, 0, 0.15)), url('../images/gallery/babavillage.jpg');
    }
    
    .hero-section::before {
        background: rgba(0, 0, 0, 0.1);
    }
    
    :root {
        --glass-bg: rgba(255, 255, 255, 0.05);
        --glass-border: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 576px) {
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .hero-section .h3 {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .sponsor-percentage {
        font-size: 2.5rem;
    }
    
    .content-card {
        margin-bottom: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--beige-light);
}

::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brown-dark);
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}


.projet-hero {
    background: linear-gradient(135deg, rgba(110, 44, 0, 0.9), rgba(211, 84, 0, 0.8)), url('../images/gallery/babavillage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.galerie-hero {
    background: linear-gradient(135deg, rgba(110, 44, 0, 0.9), rgba(211, 84, 0, 0.8)), url('../images/gallery/baba3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
}

.galerie-title, .projet-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.galerie-subtitle, .projet-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 400;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    gap: 10px;
}

.breadcrumb-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-nav .current {
    color: var(--gold);
    font-weight: 600;
}

.projet-title, .galerie-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.projet-subtitle, .galerie-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--orange-primary));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.vision-content, .mission-content {
    padding: 2rem 0;
}

.vision-stats .stat-card {
    padding: 25px 15px;
    transition: all 0.3s ease;
}

.vision-stats .stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--orange-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.image-placeholder {
    background: rgba(211, 84, 0, 0.1);
    border: 2px dashed var(--orange-primary);
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    color: var(--orange-primary);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: rgba(211, 84, 0, 0.15);
    transform: translateY(-5px);
}

.concept-grid {
    margin-top: 3rem;
}

.concept-card {
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 84, 0, 0.1);
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.concept-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.concept-card h4 {
    color: var(--brown-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.concept-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.impact-card {
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 84, 0, 0.1);
    height: 100%;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.impact-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.impact-title {
    color: var(--brown-dark);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

.impact-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.theme-card {
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 84, 0, 0.1);
    height: 100%;
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.theme-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.theme-card h3 {
    color: var(--brown-dark);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.4rem;
}

.theme-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.theme-description {
    margin-top: 3rem;
}

.description-container {
    padding: 40px;
}

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

.stat-item {
    display: block;
    margin-bottom: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--orange-primary);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 5px;
}

.objectives-list {
    margin-top: 20px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px 0;
}

.objective-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.objective-item span {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.mission-image {
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.image-container:hover img {
    transform: scale(1.05);
}

.overlay-content h4 {
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.3rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.timeline-card {
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--orange-primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-card:hover::before {
    transform: scaleX(1);
}

.timeline-card:hover {
    transform: translateY(-10px);
}

.timeline-icon {
    font-size: 2.5rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.timeline-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--brown-dark);
    line-height: 1;
}

.timeline-label {
    font-weight: 600;
    color: var(--orange-primary);
    margin: 10px 0 5px;
    font-size: 0.9rem;
}

.timeline-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.mission-icon {
    color: var(--orange-primary);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.mission-text h4 {
    color: var(--brown-dark);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.2rem;
}

.mission-text p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.point-icon {
    color: var(--orange-primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.point-content h5 {
    color: var(--brown-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.point-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.cta-section {
    background: linear-gradient(135deg, var(--orange-primary), var(--brown-dark));
    color: var(--white);
}

.cta-content {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--white);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-buttons .btn {
    margin: 5px;
}


.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--orange-primary);
    color: var(--orange-primary);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 0;
    align-items: start;
}

.gallery-item {
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item.hidden-on-load {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item.hidden-on-load.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 400px;
    background: #f8f9fa;
    cursor: pointer;
    margin: 0;
    padding: 0;
}


.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-image-container:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.gallery-image-container:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 300px;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Style pour les images dans les cartes de galerie */

.gallery-image .image-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.1), rgba(243, 156, 18, 0.1));
    border: none;
    border-radius: 15px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.gallery-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.stat-card {
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--orange-primary);
    margin-bottom: 20px;
}

.counter {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--brown-dark);
    line-height: 1;
}

/* ========================================
   SECTION GALERIE MINI (INDEX)
   ======================================== */

.mini-gallery {
    padding: 80px 0;
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.mini-gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mini-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SECTION STANDS
   ======================================== */

.stands-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf3e7 0%, #ffffff 50%, #fdf3e7 100%);
    position: relative;
    overflow: hidden;
}

.stands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(211, 84, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(110, 44, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stands-grid {
    position: relative;
    z-index: 2;
    margin-top: 3rem;
}

.stand-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.stand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.08) 0%, rgba(211, 84, 0, 0.08) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.stand-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 0;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stand-card:hover::before {
    opacity: 1;
}

.stand-card:hover::after {
    opacity: 1;
}

.stand-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #f39c12;
    box-shadow: 0 25px 50px rgba(211, 84, 0, 0.25);
}

.stand-card > * {
    position: relative;
    z-index: 2;
}

.stand-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #d35400, #f39c12);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.4);
    z-index: 3;
    transform: rotate(5deg);
    transition: all 0.3s ease;
}

.stand-card:hover .stand-badge {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.5);
}

.stand-badge.popular {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.stand-badge.gastronomy {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.stand-badge.ambiance {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

.stand-badge.premium-badge {
    background: linear-gradient(135deg, #f39c12, #d35400);
    font-size: 0.9rem;
    padding: 12px 24px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.5);
}

.stand-badge.enterprise-badge {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    font-size: 0.9rem;
    padding: 12px 24px;
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.5);
}

.stand-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f39c12, #d35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    position: relative;
}

.stand-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #f39c12, #d35400);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.stand-card:hover .stand-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.stand-card:hover .stand-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.5);
}

.stand-icon i {
    font-size: 1.8rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stand-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stand-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    padding: 0 0.5rem;
    font-size: 0.85rem;
}

.stand-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #d35400;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 3px 6px rgba(211, 84, 0, 0.2);
    position: relative;
}

.stand-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #f39c12, #d35400);
    border-radius: 2px;
}

.stand-btn {
    background: linear-gradient(135deg, #d35400, #f39c12);
    border: none;
    border-radius: 20px;
    padding: 6px 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
    position: relative;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    text-decoration: none;
    color: white;
    display: inline-block;
    font-size: 0.65rem;
    width: auto;
    min-width: 120px;
    text-align: center;
}

.stand-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.stand-btn:hover::before {
    left: 100%;
}

.stand-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.5);
    background: linear-gradient(135deg, #f39c12, #d35400);
    color: white;
    text-decoration: none;
}

.stand-card.premium {
    border: 3px solid #f39c12;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.08), rgba(255, 255, 255, 0.98));
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.stand-card.enterprise {
    border: 3px solid #34495e;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.08), rgba(255, 255, 255, 0.98));
    box-shadow: 0 15px 40px rgba(52, 73, 94, 0.2);
}

.stand-card.premium:hover,
.stand-card.enterprise:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.col-lg-6 .stand-card {
    max-width: 500px;
}

.col-lg-6 .stand-icon {
    width: 80px;
    height: 80px;
    margin: 2rem auto 1.5rem;
}

.col-lg-6 .stand-icon i {
    font-size: 2rem;
}

.col-lg-6 .stand-title {
    font-size: 1.5rem;
}

.col-lg-6 .stand-description {
    font-size: 0.95rem;
    padding: 0 1rem;
}

.col-lg-6 .stand-price {
    font-size: 2rem;
}

.col-lg-6 .stand-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
    margin: 0 auto 2rem;
    min-width: 140px;
}

/* ========================================
   PROGRAMME ACCORDION HORIZONTAL
   ======================================== */

.programme-accordion-horizontal {
    margin-top: 3rem;
}

.programme-accordion-horizontal .accordion-item {
    border: none;
    border-radius: 15px !important;
    overflow: hidden;
    height: 100%;
}

.programme-accordion-horizontal .accordion-button {
    background: transparent;
    border: none;
    padding: 20px 15px;
    box-shadow: none;
    border-radius: 15px !important;
    height: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.programme-accordion-horizontal .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(211, 84, 0, 0.1));
    color: var(--brown-dark);
}

.programme-accordion-horizontal .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.programme-accordion-horizontal .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d35400'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.programme-header-vertical {
    text-align: center;
    width: 100%;
}

.programme-date-badge {
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.programme-day-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.programme-subtitle {
    color: var(--text-light);
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.programme-activities-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.activity-item-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(243, 156, 18, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--orange-primary);
    transition: all 0.3s ease;
}

.activity-item-compact:hover {
    background: rgba(243, 156, 18, 0.1);
    transform: translateX(3px);
}

.activity-time {
    background: var(--orange-primary);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    min-width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.activity-content h6 {
    color: var(--brown-dark);
    margin: 0;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.2;
}

/* ========================================
   GALLERY IMAGES
   ======================================== */

/* Style principal pour les images de galerie - défini plus haut */

.mini-gallery-item .gallery-image {
    height: 100%;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-img,
.mini-gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* ========================================
   PARTNER LOGOS
   ======================================== */

.partner-logo-img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* ========================================
   CONTEXTE IMAGES GRID
   ======================================== */

.contexte-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0;
    height: 400px;
    background: #f39c12;
    padding: 0;
    border-radius: 0;
}

.contexte-image-item {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    background: #f39c12;
    border: none;
}

.contexte-image-item:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contexte-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 0;
}

.contexte-image-item:hover .contexte-grid-img {
    transform: scale(1.05);
}

/* ========================================
   PROMOTEUR IMAGE
   ======================================== */

.promoteur-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--gold);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.promoteur-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(243, 156, 18, 0.4);
}

.promoteur-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.promoteur-photo:hover .promoteur-img {
    transform: scale(1.1);
}

/* ========================================
   CONTACT IMAGE
   ======================================== */

.contact-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
}

.contact-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.4);
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.contact-image:hover .contact-img {
    transform: scale(1.1);
}

/* ========================================
   OBJECTIVES LIST
   ======================================== */

.objectives-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(243, 156, 18, 0.1);
    font-size: 0.9rem;
    line-height: 1.4;
}

.objective-item:last-child {
    border-bottom: none;
}

.objective-item i {
    margin-top: 2px;
    flex-shrink: 0;
}

.mission-stat {
    transition: all 0.3s ease;
}

.mission-stat:hover {
    transform: translateY(-5px);
}

/* ========================================
   SECTION PARTENAIRES
   ======================================== */

.partners-section {
    padding: 80px 0;
    background: var(--beige-light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.partner-card {
    background: var(--white);
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 100%;
    height: 80px;
    margin: 0;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-primary);
    font-size: 2rem;
}

.partner-name {
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.partner-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.programme-modern {
    background: linear-gradient(135deg, var(--beige-light), var(--white));
    position: relative;
    overflow: hidden;
}

.programme-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(211,84,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
}

.programme-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--orange-primary);
    transition: all 0.3s ease;
    position: relative;
}

.programme-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.programme-date {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--orange-primary);
    margin-bottom: 10px;
}

.programme-day {
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 20px;
}

.programme-activities {
    list-style: none;
    padding: 0;
}

.programme-activities li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(211, 84, 0, 0.1);
    position: relative;
    padding-left: 40px;
}

.programme-activities li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--orange-primary);
}

.programme-activities li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .projet-title, .galerie-title {
        font-size: 2.5rem;
    }
    
    .filter-tabs {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .mini-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .concept-card, .timeline-card {
        padding: 25px 20px;
    }
    
    .mission-point {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .programme-accordion-horizontal .accordion-button {
        min-height: 150px;
        padding: 15px 10px;
    }
    
    .programme-date-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .programme-day-title {
        font-size: 1rem;
    }
    
    .programme-subtitle {
        font-size: 0.8rem;
    }
    
    .activity-item-compact {
        padding: 6px 10px;
    }
    
    .activity-time {
        font-size: 0.7rem;
        min-width: 45px;
    }
    
    .activity-content h6 {
        font-size: 0.8rem;
    }
    
    .gallery-image {
        height: 100%;
    }
    
    .gallery-image-container {
        height: 200px;
        aspect-ratio: 1;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .mini-gallery-item .gallery-image {
        height: 100%;
    }
    
    .partner-logo-img {
        max-height: 60px;
    }
    
    .partner-card {
        min-height: 100px;
        padding: 15px;
    }
    
    .partner-logo {
        height: 60px;
    }
    
    .contact-image {
        width: 100px;
        height: 100px;
    }
    
    .promoteur-photo {
        width: 150px;
        height: 150px;
    }
    
    .contexte-images-grid {
        height: 300px;
        gap: 0;
        padding: 0;
    }
}

@media (max-width: 576px) {
    .programme-accordion-horizontal .accordion-button {
        min-height: 120px;
        padding: 10px 8px;
    }
    
    .programme-date-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        margin-bottom: 10px;
    }
    
    .programme-day-title {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .programme-subtitle {
        font-size: 0.75rem;
    }
    
    .gallery-image {
        height: 100%;
    }
    
    .gallery-image-container {
        height: 180px;
        aspect-ratio: 1;
    }
    
    .gallery-img {
        height: 150px;
    }
    
    .mini-gallery-item .gallery-image {
        height: 100%;
    }
    
    .partner-logo-img {
        max-height: 50px;
    }
    
    .partner-card {
        min-height: 80px;
        padding: 10px;
    }
    
    .partner-logo {
        height: 50px;
    }
    
    .contact-image {
        width: 80px;
        height: 80px;
    }
    
    .promoteur-photo {
        width: 120px;
        height: 120px;
    }
    
    .contexte-images-grid {
        height: 250px;
        gap: 0;
        padding: 0;
    }
    
    .hero-section {
        background-attachment: scroll !important;
    }
    
    .stands-section {
        padding: 60px 0;
    }
    
    .stand-card {
        margin-bottom: 2rem;
    }
    
    .stand-icon {
        width: 70px;
        height: 70px;
        margin: 1.5rem auto 1rem;
    }
    
    .stand-icon i {
        font-size: 1.8rem;
    }
    
    .stand-title {
        font-size: 1.3rem;
    }
    
    .stand-price {
        font-size: 1.8rem;
    }
    
    .stand-btn {
        padding: 6px 12px;
        font-size: 0.6rem;
        margin: 0 auto 1.5rem;
        min-width: 100px;
    }
}

@media print {
    .navbar, .scroll-indicator, footer {
        display: none;
    }
    
    section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
    
    .hero-section {
        background: var(--white) !important;
        color: var(--text-dark) !important;
    }
    
    .hero-section {
        background-attachment: scroll !important;
    }
}

/* ========================================
   BACKGROUND SECTIONS
   ======================================== */

.background-section {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(211, 84, 0, 0.3) 0%,
        rgba(243, 156, 18, 0.2) 25%,
        rgba(110, 44, 0, 0.4) 50%,
        rgba(243, 156, 18, 0.2) 75%,
        rgba(211, 84, 0, 0.3) 100%
    );
    backdrop-filter: blur(1px);
}

.background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(211, 84, 0, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.background-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.05) 75%,
        transparent 100%
    );
    z-index: 2;
}

/* Responsive pour les sections background */
@media (max-width: 768px) {
    .background-section {
        height: 40vh;
        min-height: 300px;
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .background-section {
        height: 35vh;
        min-height: 250px;
    }
}

/* ========================================
   CONTACT SECTION - DESIGN MODERNE
   ======================================== */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf3e7 0%, #ffffff 50%, #fdf3e7 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(211, 84, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(110, 44, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    position: relative;
    z-index: 2;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.08) 0%, rgba(211, 84, 0, 0.08) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #f39c12;
    box-shadow: 0 20px 40px rgba(211, 84, 0, 0.2);
}

.contact-card > * {
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f39c12, #d35400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #f39c12, #d35400);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.contact-card:hover .contact-icon::before {
    opacity: 0.3;
    transform: scale(1.1);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.5);
}

.contact-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.contact-link {
    color: #d35400;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.contact-link:hover {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.contact-text {
    color: #7f8c8d;
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

/* Responsive pour la section contact */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-avatar {
        width: 50px;
        height: 50px;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-card {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-avatar {
        width: 40px;
        height: 40px;
    }
    
    .contact-title {
        font-size: 1rem;
    }
    
    .contact-link {
        font-size: 0.8rem;
    }
}

/* ========================================
   Styles pour la page Artistes - Style Cohérent
   ======================================== */

/* Hero Section Artistes */
.artiste-hero {
    background: linear-gradient(135deg, rgba(110, 44, 0, 0.9), rgba(211, 84, 0, 0.8)), url('../images/gallery/baba1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 80px;
}

.artiste-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.artiste-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* Formulaire Card */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Form Floating Labels */
.form-floating {
    position: relative;
}

.form-floating > .form-control {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    border: 2px solid rgba(211, 84, 0, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.2rem rgba(211, 84, 0, 0.25);
    background: white;
}

.form-floating > label {
    color: var(--text-light);
    font-weight: 500;
}

/* Section Prestation */
.prestation-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin-top: 1rem;
}

.prestation-option {
    position: relative;
}

.prestation-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(211, 84, 0, 0.2);
    border-radius: 15px;
    padding: 2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.option-card:hover {
    border-color: var(--orange-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.2);
}

.option-card.active {
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    color: white;
    border-color: var(--orange-primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(211, 84, 0, 0.3);
}

.option-card i {
    color: var(--orange-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.option-card.active i {
    color: white;
}

.option-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.info-card h5 {
    color: var(--brown-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-light);
    margin: 0;
}

/* Bouton Principal */
.btn-primary {
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(211, 84, 0, 0.4);
    background: linear-gradient(135deg, #b8450a, #e67e22);
}

/* Modal Styles */
.modal-content.glassmorphism {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artiste-title {
        font-size: 2.5rem;
    }
    
    .artiste-subtitle {
        font-size: 1rem;
    }
    
    .form-card {
        padding: 2rem 1.5rem;
    }
    
    .option-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .info-card {
    margin-bottom: 2rem;
}

    .galerie-title, .projet-title {
        font-size: 2.5rem;
    }
    
    .galerie-subtitle, .projet-subtitle {
        font-size: 1rem;
    }
    
    /* Responsive pour les nouvelles sections */
    .concept-card, .impact-card, .theme-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .concept-icon, .impact-icon, .theme-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .impact-number {
        font-size: 2rem;
    }
    
    .theme-card h3 {
    font-size: 1.2rem;
    }
    
    .description-container {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .mission-point {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .mission-icon {
        margin-top: 0;
    }
    
    .image-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .objective-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .objective-item i {
        margin-top: 0;
    }
}

/* ========================================
   FOOTER MODERNE
   ======================================== */

.footer-modern {
    background: linear-gradient(135deg, var(--brown-dark), #8b4513);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 10px;
}

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

.admin-access .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.admin-access .btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.admin-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 40px 0 30px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-version {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-version .fa-heart {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-modern {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-links a:hover {
        padding-left: 0;
    }
    
    .footer-copyright,
    .footer-version {
        text-align: center;
        margin-bottom: 10px;
    }
}

/* ========================================
   STYLES POUR LA PAGE D'ACCUEIL MODERNE
   ======================================== */

/* Hero Section pour la page d'accueil */
.hero-section {
    background: linear-gradient(135deg, rgba(110, 44, 0, 0.15), rgba(211, 84, 0, 0.1)), url('../images/gallery/babavillage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6), 0 0 15px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 1;
}

.hero-countdown-text {
    font-size: 1rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    font-weight: 600;
    font-style: italic;
    opacity: 1;
}

/* Compteur dans le hero */
.hero-countdown-grid {
    margin-top: 2rem;
}

.countdown-card-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 120px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.countdown-card-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.countdown-card-hero .countdown-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    color: white;
}

.countdown-card-hero .countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6), 0 0 10px rgba(0,0,0,0.3);
}

.countdown-card-hero .countdown-label {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    opacity: 1;
}

/* Compteur moderne */
.countdown-grid-modern {
    margin-top: 2rem;
}

.countdown-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.countdown-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.countdown-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.countdown-label {
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Cartes d'informations améliorées */
.info-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(211, 84, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: 140px;
    width: 100%;
}

.info-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.info-icon-enhanced {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.3);
}

.info-content-enhanced {
    flex: 1;
}

.info-content-enhanced h5 {
    color: var(--brown-dark);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    line-height: 1.2;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.info-number {
    color: var(--orange-primary);
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1;
}

.info-text {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    display: block;
}

/* Cartes d'informations modernes (ancien style) */
.info-card-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-card-modern .info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.info-card-modern h5 {
    color: var(--brown-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card-modern p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

/* Section CTA */
.cta-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
    color: var(--brown-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Responsive pour la page d'accueil */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-countdown-text {
    font-size: 0.9rem;
    }
    
    .countdown-card-hero {
        padding: 1rem 0.8rem;
        min-width: 100px;
    }
    
    .countdown-card-hero .countdown-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .countdown-card-hero .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-card-hero .countdown-label {
        font-size: 0.7rem;
    }
    
    .countdown-card-modern,
    .info-card-modern {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .countdown-icon,
    .info-card-modern .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem !important;
    }
    
    .cta-buttons .btn {
    display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Responsive pour les cartes d'informations améliorées */
    .info-card-enhanced {
        padding: 1.8rem 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
        min-height: 170px;
    }
    
    .info-icon-enhanced {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 15px;
    }
    
    .info-content-enhanced h5 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .info-number {
        font-size: 1.1rem;
    }
    
    .info-text {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

/* ========================================
   LIGHTBOX STYLES
   ======================================== */

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
    margin: auto;
    animation: lightboxZoomIn 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(211, 84, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(211, 84, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 90%;
        max-height: 70%;
    }
    
    .lightbox-close {
        top: -40px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-caption {
        bottom: -40px;
        font-size: 1rem;
    }
}

/* ========================================
   PRESTATION CARDS STYLES
   ======================================== */

.prestation-option {
    height: 100%;
    display: flex;
}

.option-card {
    height: 140px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    flex: 1;
}

.option-card:hover {
    border-color: #d35400;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.option-card.active {
    border-color: #d35400;
    background: linear-gradient(135deg, #d35400, #f39c12);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(211, 84, 0, 0.3);
}

.option-card i {
    color: #d35400;
    transition: color 0.3s ease;
}

.option-card.active i {
    color: white;
}

.option-card span {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}

.prestation-option input[type="radio"] {
    display: none;
}

/* ========================================
   MODERN ALERT POPUP STYLES
   ======================================== */

.modern-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modern-alert-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modern-alert-popup {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.modern-alert-overlay.show .modern-alert-popup {
    transform: scale(1) translateY(0);
}

.modern-alert-header {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    padding: 25px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modern-alert-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.modern-alert-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    position: relative;
    z-index: 1;
}

.modern-alert-icon i {
    font-size: 28px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.modern-alert-title {
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-alert-body {
    padding: 30px;
    text-align: center;
}

.modern-alert-message {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.modern-alert-button {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border: none;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-alert-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modern-alert-button:hover::before {
    left: 100%;
}

.modern-alert-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.modern-alert-button:active {
    transform: translateY(0);
}

/* Animation d'entrée */
@keyframes modernAlertSlideIn {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modern-alert-popup.animate-in {
    animation: modernAlertSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Styles pour le logo agrandi dans la navbar */
.navbar-brand {
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
}

.navbar-brand img {
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.navbar-brand img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

/* Permettre au logo de déborder de la navbar */
.navbar {
    overflow: visible;
}

.navbar .container {
    overflow: visible;
}

/* Ajuster l'espacement pour le logo agrandi */
.navbar-brand .me-2 {
    margin-right: 1rem !important;
}

