/* ===========================
   Variables et Reset
   =========================== */
:root {
    --sand-white: #F5F1E8;
    --primary-color: #2C5F2D;
    --primary-dark: #1F4620;
    --secondary-color: #FF8C42;
    --accent-color: #4A90E2;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--sand-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0;
}

/* Add space for fixed banner and header */
body:has(.event-announcement-banner) {
    padding-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Header & Navigation
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    gap: 2rem;
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}

.logo-highlight {
    color: var(--primary-color);
}

.logo-plus {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-item-dropdown {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.8rem 0;
    margin-top: 0.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-link i {
    color: var(--primary-color);
    font-size: 0.9rem;
    width: 20px;
}

.dropdown-link:hover {
    background: var(--sand-white);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu li {
    border-bottom: 1px solid rgba(44, 95, 45, 0.08);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 1rem;
    flex-shrink: 0;
}

.btn {
    padding: 0.6rem 1.6rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

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

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

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sand-white) 0%, #E8DFC8 100%);
    padding-top: 100px;
}

/* Video Background Styles */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 95, 45, 0.25) 0%,
        rgba(31, 70, 32, 0.2) 50%,
        rgba(255, 140, 66, 0.15) 100%
    );
    z-index: 1;
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(44, 95, 45, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(74, 144, 226, 0.06) 0%, transparent 50%);
    animation: heroAnimation 20s ease-in-out infinite;
}

@keyframes heroAnimation {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(20px, 20px); }
}

.hero > .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-right: 3px solid var(--secondary-color);
    display: inline-block;
    max-width: 100%;
}

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

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

.btn-hero {
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-hero:hover {
    background: #E67932;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    animation: bounce 2s infinite;
    z-index: 3;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ===========================
   Sections communes
   =========================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   Qui sommes-nous Section
   =========================== */
.qui-sommes-nous {
    background: var(--white);
}

.local-focus {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.local-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-lg);
}

.local-icon i {
    font-size: 4rem;
    color: var(--white);
}

.local-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.local-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* ===========================
   Sections Photos Réparties
   =========================== */

/* Section Photo 1 - Pleine largeur */
.photo-fullwidth {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.photo-content {
    height: 100%;
    position: relative;
}

.photo-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 95, 45, 0.9), transparent);
    padding: 3rem;
    text-align: center;
}

.photo-text-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Section Photo 2 - Deux images côte à côte */
.photo-dual {
    background: var(--sand-white);
    padding: 0;
}

.dual-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.dual-photo-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.dual-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dual-photo-item:hover img {
    transform: scale(1.05);
}

.dual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 140, 66, 0.95), transparent);
    padding: 2.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.dual-photo-item:hover .dual-overlay {
    transform: translateY(0);
}

.dual-overlay h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dual-overlay p {
    color: var(--white);
    font-size: 1.1rem;
}

/* Section Photo 3 - Mini galerie */
.photo-mini-gallery {
    background: var(--white);
    padding: 80px 0;
}

.mini-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mini-gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.mini-gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

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

.mini-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 95, 45, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.mini-overlay i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.mini-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

/* ===========================
   Notre Mission Section
   =========================== */
/* ===========================
   Mission Compact Section
   =========================== */
.mission-compact {
    background: var(--sand-white);
    padding: 3rem 0;
}

.mission-compact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.mission-compact-description {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.mission-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mission-compact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid var(--secondary-color);
}

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

.mission-compact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ff6b1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.mission-compact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.mission-compact-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.mission-compact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.mission-compact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.mission-compact-link:hover {
    gap: 0.8rem;
    color: var(--primary-color);
}

.mission-compact-link i {
    font-size: 0.8rem;
}

@media (max-width: 968px) {
    .mission-compact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-compact-title {
        font-size: 1.8rem;
    }
    
    .mission-compact-description {
        font-size: 1rem;
    }
}

/* Old mission styles kept for compatibility */
.mission {
    background: var(--sand-white);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mission-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pillar {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.pillar:hover::before {
    transform: scaleX(1);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.pillar:hover .pillar-icon {
    transform: perspective(500px) rotateY(15deg) scale(1.05);
    box-shadow: -8px 6px 16px rgba(255, 140, 66, 0.3);
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.pillar:hover .pillar-icon i {
    transform: scale(1.1);
}

.pillar h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* ===========================
   Domaines d'activité Section
   =========================== */
.domaines {
    background: var(--white);
    padding-top: 120px;
    position: relative;
}

.domaines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.domaines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.domaine-card {
    background: var(--sand-white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.domaine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.domaine-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.domaine-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.domaine-card:hover .domaine-icon {
    transform: scale(1.1) rotate(5deg);
}

.domaine-icon i {
    font-size: 2rem;
    color: var(--white);
}

.domaine-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.domaine-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.domaine-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.domaine-highlight h3,
.domaine-highlight p {
    color: var(--white);
}

.domaine-highlight .domaine-icon {
    background: var(--white);
}

.domaine-highlight .domaine-icon i {
    color: var(--primary-color);
}

.e-learning-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ===========================
   Actualités & Carousel Section
   =========================== */
.actualites {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.actualites .section-title {
    color: var(--white);
}

.actualites .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-slide {
    display: none;
    min-height: 400px;
    padding: 3rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    animation: slideIn 0.5s ease;
    position: relative;
    overflow: hidden;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 95, 45, 0.35) 0%,
        rgba(31, 70, 32, 0.30) 50%,
        rgba(255, 140, 66, 0.25) 100%
    );
    border-radius: 20px;
    z-index: 1;
}

.carousel-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.slide-image {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.slide-image i {
    font-size: 3.5rem;
    color: var(--white);
}

.slide-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.slide-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

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

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

/* ===========================
   Bannière Partenaires Défilante
   =========================== */
.partners-banner {
    background: linear-gradient(180deg, var(--white) 0%, var(--sand-white) 100%);
    padding: 3rem 0 3rem;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    border-bottom: 3px solid rgba(44, 95, 45, 0.08);
}

.partners-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

/* Override section-header spacing for partners section */
.partners-banner .section-header {
    margin-bottom: 2rem;
}

.partners-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.partners-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.partners-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.partners-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to right, var(--white), transparent);
}

.partners-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to left, rgba(245, 241, 232, 1), transparent);
}

.partners-slider {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    padding: 1rem;
}

.partner-slide img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.partner-slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.partner-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #9E9E9E;
    opacity: 0.8;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
    filter: grayscale(100%);
}

.partner-slide:hover .partner-logo-text {
    opacity: 1;
    transform: scale(1.1);
    color: var(--primary-color);
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-scroll {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.6s ease;
    flex-shrink: 0;
    animation: logoHighlight 24s ease-in-out infinite;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1) !important;
    transform: scale(1.1) !important;
    animation-play-state: paused;
}

/* Animation individuelle pour chaque logo */
.partner-logo:nth-child(1) { animation-delay: 0s; }
.partner-logo:nth-child(2) { animation-delay: 2s; }
.partner-logo:nth-child(3) { animation-delay: 4s; }
.partner-logo:nth-child(4) { animation-delay: 6s; }
.partner-logo:nth-child(5) { animation-delay: 8s; }
.partner-logo:nth-child(6) { animation-delay: 10s; }
.partner-logo:nth-child(7) { animation-delay: 12s; }
.partner-logo:nth-child(8) { animation-delay: 14s; }
.partner-logo:nth-child(9) { animation-delay: 16s; }
.partner-logo:nth-child(10) { animation-delay: 18s; }
.partner-logo:nth-child(11) { animation-delay: 20s; }
.partner-logo:nth-child(12) { animation-delay: 22s; }

/* Logos dupliqués (pour la boucle infinie) */
.partner-logo:nth-child(13) { animation-delay: 0s; }
.partner-logo:nth-child(14) { animation-delay: 2s; }
.partner-logo:nth-child(15) { animation-delay: 4s; }
.partner-logo:nth-child(16) { animation-delay: 6s; }
.partner-logo:nth-child(17) { animation-delay: 8s; }
.partner-logo:nth-child(18) { animation-delay: 10s; }
.partner-logo:nth-child(19) { animation-delay: 12s; }
.partner-logo:nth-child(20) { animation-delay: 14s; }
.partner-logo:nth-child(21) { animation-delay: 16s; }
.partner-logo:nth-child(22) { animation-delay: 18s; }
.partner-logo:nth-child(23) { animation-delay: 20s; }
.partner-logo:nth-child(24) { animation-delay: 22s; }

@keyframes logoHighlight {
    0%, 8.33%, 100% {
        filter: grayscale(100%) opacity(0.7);
        transform: scale(1);
    }
    4.165% {
        filter: grayscale(0%) opacity(1);
        transform: scale(1.15);
    }
}

/* ===========================
   Séparation de Section
   =========================== */
.section-separator {
    background: var(--sand-white);
    padding: 3rem 0;
    position: relative;
}

.separator-line {
    position: relative;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(44, 95, 45, 0.2) 20%,
        rgba(44, 95, 45, 0.4) 50%,
        rgba(44, 95, 45, 0.2) 80%,
        transparent 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 0 4px var(--sand-white),
                0 0 0 6px rgba(44, 95, 45, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
}

/* ===========================
   Partenaires Section
   =========================== */
.partenaires {
    background: var(--sand-white);
}

.partenaires-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.partenaire-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

/* ===========================
   Showroom Section
   =========================== */
.showroom {
    background: var(--sand-white);
    padding: 5rem 0;
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.showroom-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    height: 400px;
}

.showroom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.showroom-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showroom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.showroom-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 95, 45, 0.95), rgba(44, 95, 45, 0.7));
    padding: 2rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.showroom-card:hover .showroom-overlay {
    transform: translateY(0);
}

.showroom-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.showroom-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .showroom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showroom-card {
        height: 350px;
    }
}

/* ===========================
   Photo Sections
   =========================== */
.photo-section {
    padding: 0;
    margin: 0;
}

.photo-dual {
    background: var(--sand-white);
}

.dual-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.dual-photo-item {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.dual-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dual-photo-item:hover img {
    transform: scale(1.05);
}

.dual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, 
        rgba(44, 95, 45, 0.95) 0%,
        rgba(44, 95, 45, 0.85) 50%,
        rgba(44, 95, 45, 0.7) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s ease;
}

.dual-photo-item:hover .dual-overlay {
    transform: translateY(100%);
    opacity: 0;
}

.dual-overlay h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.dual-overlay p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 80%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ===========================
   Utility Classes
   =========================== */
.section-padding {
    padding: 5rem 0;
}

/* ===========================
   Event Announcement Banner
   =========================== */
.event-announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-color), #ff6b1a);
    color: var(--white);
    padding: 0.4rem 0;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.event-announcement-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.banner-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.banner-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.banner-text strong {
    font-weight: 700;
}

.banner-btn {
    background: var(--white);
    color: var(--secondary-color);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.banner-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.3rem;
    transition: var(--transition);
    opacity: 0.8;
}

.banner-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Adjust header position when banner is visible */
body:has(.event-announcement-banner) .header {
    top: 38px;
}

/* ===========================
   Event Highlight Home Section
   =========================== */
.event-highlight-home {
    background: linear-gradient(135deg, #f8f9fa 0%, var(--sand-white) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.event-highlight-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.event-highlight-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.event-highlight-content {
    padding-right: 2rem;
}

.event-badge-home {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 66, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 140, 66, 0);
    }
}

.event-highlight-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.event-highlight-date {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.event-highlight-location {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.event-highlight-features {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.feature-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(44, 95, 45, 0.1);
    font-size: 1rem;
    color: var(--text-dark);
}

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

.event-highlight-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.event-highlight-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.event-highlight-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.event-highlight-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .event-announcement-banner .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text {
        font-size: 0.8rem;
    }
    
    .banner-btn {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .event-announcement-banner {
        padding: 0.3rem 0;
    }
    
    body:has(.event-announcement-banner) .header {
        top: 48px;
    }
    
    .banner-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .event-highlight-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-highlight-content {
        padding-right: 0;
    }
    
    .event-highlight-title {
        font-size: 2rem;
    }
    
    .event-highlight-date {
        font-size: 1.1rem;
    }
    
    .event-highlight-location {
        font-size: 1rem;
    }
    
    .event-highlight-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.bg-light {
    background: var(--bg-light);
}

/* Mission Cards with Hover Effect */
.mission-card-home {
    position: relative;
    transition: all 0.3s ease;
}

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

.btn-savoir-plus-home {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
}

.mission-card-home:hover .btn-savoir-plus-home {
    opacity: 1;
    transform: translateY(0);
}

.btn-savoir-plus-home:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ===========================
   Responsive Styles
   =========================== */
@media (max-width: 968px) {
    .dual-photos {
        grid-template-columns: 1fr;
    }
    
    .dual-photo-item {
        height: 400px;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .page-hero {
        padding: 6rem 0 3rem;
    }
}

.partenaire-logo h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* ===========================
   Agenda Section
   =========================== */
.agenda {
    background: var(--white);
}

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

.agenda-card {
    background: var(--sand-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.agenda-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.agenda-date {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.agenda-date .day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.agenda-date .month {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.agenda-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.agenda-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.agenda-location,
.agenda-time {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agenda-location i,
.agenda-time i {
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.agenda-description {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    flex-grow: 1;
}

.agenda-content .btn {
    align-self: flex-start;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: var(--sand-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--sand-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--sand-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(44, 95, 45, 0.2);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* ===========================
   Animations
   =========================== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideLeft 0.8s ease forwards;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideRight 0.8s ease forwards;
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.6s ease forwards;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2.5rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 0;
        align-items: flex-start;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(44, 95, 45, 0.1);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: flex;
        justify-content: space-between;
        padding: 1rem 0;
        font-size: 1.05rem;
        width: 100%;
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: var(--sand-white);
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 600px;
    }

    .dropdown-link {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(44, 95, 45, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .domaines-grid,
    .mission-pillars {
        grid-template-columns: 1fr;
    }

    /* Photos sections responsive */
    .dual-photos {
        grid-template-columns: 1fr;
    }

    .dual-photo-item {
        height: 350px;
    }

    .mini-gallery-grid {
        grid-template-columns: 1fr;
    }

    .mini-gallery-item {
        height: 250px;
    }

    .photo-fullwidth {
        height: 300px;
    }

    .photo-text-overlay h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 1rem 0;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.9rem;
    }

    .carousel-slide {
        min-height: 350px;
        padding: 2rem;
    }

    .slide-content h3 {
        font-size: 1.4rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    /* Photos sections mobile */
    .photo-fullwidth {
        height: 250px;
    }

    .photo-text-overlay {
        padding: 2rem 1rem;
    }

    .photo-text-overlay h3 {
        font-size: 1.5rem;
    }

    .dual-photo-item {
        height: 300px;
    }

    .dual-overlay h4 {
        font-size: 1.4rem;
    }

    .photo-mini-gallery {
        padding: 60px 0;
    }

    .mini-gallery-item {
        height: 220px;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
    display: none;
}

.visible {
    display: block;
}