/* ==========================================
   PAGE HERO STYLES
   ========================================== */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.9), rgba(26, 26, 26, 0.9)),
                url('../images/houses/hero-houses.jpg') center/cover;
    color: white;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.7;
}

/* ==========================================
   MAISONS STATISTICS
   ========================================== */
.maisons-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-head);
}

.stat-card p {
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   COUNTRY SECTIONS
   ========================================== */
.country-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.country-flag {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-info h2 {
    color: var(--primary);
    margin-bottom: 5px;
}

.country-count {
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* ==========================================
   HOUSES GRID
   ========================================== */
.houses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.house-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.house-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
}

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

.house-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.house-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.house-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.house-location i {
    color: var(--secondary);
    margin-right: 5px;
}

.house-count {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

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

.house-list li {
    padding: 5px 0;
    color: var(--gray);
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.house-list li::before {
    content: '•';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 8px;
}

/* ==========================================
   ANIMATION DELAYS
   ========================================== */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .maisons-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .country-header {
        flex-direction: column;
        text-align: center;
    }

    .houses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-hero {
        min-height: 50vh;
        padding: 100px 0 50px;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 30px 20px;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .house-card {
        padding: 20px;
    }

    .country-header {
        padding: 20px;
    }
}

/* ==========================================
   1. VARIABLES & RESET
   ========================================== */
:root {
    --primary: #8B1E3F;
    --secondary: #D4AF37;
    --dark: #1A1A1A;
    --light: #F4F4F4;
    --white: #FFFFFF;
    --gray: #666666;

    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    padding-top: 120px; /* Compensation pour top bar (35px) + header (85px) */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

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

/* ==========================================
   2. TYPOGRAPHIE
   ========================================== */
h1, h2, h3 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

p {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.sub-heading {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    margin-bottom: 10px;
    font-weight: 600;
}

/* ==========================================
   3. BOUTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

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

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

.btn-text {
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
    display: inline-block;
}

.btn-text:hover i {
    margin-left: 10px;
    transition: 0.3s;
}

/* ==========================================
   4. TOP BAR
   ========================================== */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    background: #111;
    color: #ccc;
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.infos span {
    margin-right: 20px;
}

.infos i {
    color: var(--secondary);
    margin-right: 5px;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-switch i {
    color: var(--secondary);
    font-size: 1rem;
    margin-right: 5px;
}

.lang-switch a {
    margin-left: 5px;
    padding: 5px 10px;
    border-radius: 4px;
    opacity: 0.7;
    transition: 0.3s;
    font-weight: 600;
    font-size: 0.85rem;
}

.lang-switch a.active,
.lang-switch a:hover {
    opacity: 1;
    background: var(--secondary);
    color: var(--dark);
}

/* ==========================================
   5. HEADER / NAVIGATION
   ========================================== */
header {
    position: fixed;
    top: 35px; /* Juste en dessous de la top bar */
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background: #8B1E3F !important; /* Nav bar en bordeaux harmonisé */
}

header.sticky {
    top: 35px; /* Reste en dessous de la top bar */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 15px 0;
}

header.sticky .nav-links > ul > li > a {
    color: white; /* Force le texte blanc même au scroll */
}

header.sticky .logo {
    color: white !important; /* Force le logo blanc même au scroll */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    z-index: 1001;
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo-img-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.logo-link:hover .logo-img-wrapper {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

header.sticky .logo-img-wrapper {
    box-shadow: 0 4px 15px rgba(139, 30, 63, 0.2);
}

.nav-links > ul {
    display: flex;
    gap: 20px;
}

.nav-links li {
    position: relative;
}

/* Reset du flex pour les dropdowns */
.dropdown-menu {
    display: block !important;
}

.nav-links a {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
}

.nav-links a i.fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-links .dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
    transition: 0.3s;
}

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

/* Active state - Page actuelle */
.nav-links a.active {
    color: var(--secondary);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

header.sticky .nav-links a.active {
    color: var(--primary);
}

header.sticky .nav-links a.active::after {
    background: var(--secondary);
}

/* Dropdown menus dans header sticky */
header.sticky .dropdown-menu {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

header.sticky .dropdown-menu a {
    color: #000000 !important;
    background: transparent !important;
}

header.sticky .dropdown-menu a:hover {
    color: var(--primary) !important;
    background: #f5f5f5 !important;
}

header.sticky .dropdown-menu.simple-dropdown a {
    color: #000000 !important;
}

header.sticky .dropdown-menu.simple-dropdown a:hover {
    color: var(--primary) !important;
}

/* Dropdown Menu - Style Vertical Classique */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid #e0e0e0;
    border-top: 2px solid var(--primary);
    padding: 8px 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s ease;
    white-space: nowrap;
}

.dropdown-menu a i {
    margin-right: 10px;
    color: var(--primary);
    width: 16px;
    display: inline-block;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: var(--primary);
}

/* Dropdown Simple - Sans icônes */
.dropdown-menu.simple-dropdown a {
    color: #666;
}

.dropdown-menu.simple-dropdown a i {
    display: none;
}

.dropdown-menu.simple-dropdown a:hover {
    background: #f8f8f8;
    color: var(--primary);
    padding-left: 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-donate {
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-donate:hover {
    background: white;
    transform: translateY(-2px);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--secondary);
    margin: 5px;
    transition: 0.3s;
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ==========================================
   6. HERO SECTION / SLIDER
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide.active .hero-bg img {
    animation: kenBurns 20s infinite alternate;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(139, 30, 63, 0.4));
    z-index: -1;
}

.hero-content {
    color: white;
    z-index: 3;
    max-width: 700px;
}

.hero-content h3 {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-content h1 {
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.3);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

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

/* ==========================================
   7. ABOUT SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 400px;
}

.img-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    overflow: hidden;
    border-radius: 10px;
}

.img-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 70%;
    border: 5px solid white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.img-back img,
.img-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-badge {
    position: absolute;
    top: 20%;
    right: -20px;
    background: var(--secondary);
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow);
    color: var(--dark);
}

.exp-badge .number {
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
}

.exp-badge .text {
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.check-list {
    margin: 25px 0;
}

.check-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list i {
    color: var(--primary);
    margin-right: 10px;
}

/* ==========================================
   8. STATS SECTION
   ========================================== */
.stats-section {
    background: var(--primary);
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   9. NEWS & AGENDA SECTION
   ========================================== */
.section-header {
    margin-bottom: 50px;
}

.news-agenda-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.col-title {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 10px;
}

.col-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.btn-view-all i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.btn-view-all:hover i {
    transform: translateX(3px);
}

/* News Card */
.news-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

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

.news-img {
    width: 40%;
    position: relative;
    overflow: hidden;
}

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

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

.date-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: var(--dark);
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
}

.news-content {
    padding: 20px;
    width: 60%;
}

.news-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.news-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

/* Event Card */
.event-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.event-date {
    text-align: center;
    min-width: 60px;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.event-date .month {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.event-details p {
    font-size: 0.8rem;
    color: var(--gray);
}

.btn-event {
    margin-left: auto;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    transition: var(--transition);
}

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

/* Ad Banner */
.ad-banner-small {
    margin-top: 30px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    color: white;
}

.ad-banner-small p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ad-banner-small a {
    color: var(--secondary);
    font-weight: 700;
    transition: var(--transition);
}

.ad-banner-small a:hover {
    text-decoration: underline;
}

/* ==========================================
   10. VOCATION SECTION
   ========================================== */
.vocation-section {
    background: url('../images/vocation/background.jpg') fixed center/cover;
    position: relative;
    padding: 120px 0;
    color: white;
}

.vocation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.7);
}

.vocation-content {
    position: relative;
    z-index: 1;
}

.vocation-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.vocation-content p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-style: italic;
    margin-bottom: 40px;
    font-family: var(--font-head);
}

.vocation-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   11. PARTNERS SECTION
   ========================================== */
.partners-section {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.partners-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 2.5rem;
    color: #ccc;
}

.partner-logo {
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--dark);
    transform: scale(1.1);
}

/* ==========================================
   12. FOOTER
   ========================================== */
footer {
    background: #1a1a1a;
    color: #aaa;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer p {
    margin-bottom: 15px;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.socials {
    margin-top: 20px;
}

.socials a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
    display: inline-block;
}

.socials a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 15px;
    background: var(--secondary);
    border: none;
    cursor: pointer;
    color: var(--dark);
    border-radius: 0 4px 4px 0;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 0;
    font-size: 0.85rem;
}

/* ==========================================
   13. BACK TO TOP BUTTON
   ========================================== */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ==========================================
   14. ANIMATIONS
   ========================================== */
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes wheel {
    0% { top: 10px; opacity: 1; }
    100% { top: 25px; opacity: 0; }
}

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

/* Animation Classes */
.animate-text,
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-text {
    transform: translateY(30px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.active-anim {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* Animation Delays */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* ==========================================
   14.5 PAGES INTERNES - HEADERS & SECTIONS
   ========================================== */

/* Page Header */
.page-header {
    position: relative;
    height: 95vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(139, 30, 63, 0.6));
    z-index: -1;
}

.page-header-content {
    position: relative;
    z-index: 1;
    padding-top: 20px; /* Réduit car body a déjà padding */
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--secondary);
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    opacity: 0.95;
}

/* Intro Text */
.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    margin-top: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    flex: 0 0 45%;
    text-align: right;
    padding-right: 40px;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-left: 40px;
    padding-right: 0;
}

.timeline-date span {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

.timeline-content {
    flex: 0 0 45%;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    background: var(--secondary);
    border: 3px solid white;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 3px var(--secondary);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -47.5px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -47.5px;
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.founder-quote {
    background: var(--primary);
    color: white;
    padding: 20px;
    margin-top: -50px;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 8px;
    font-style: italic;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.founder-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--secondary);
    font-family: Georgia, serif;
}

.founder-text h4 {
    color: var(--gray);
    font-weight: 400;
    margin-bottom: 20px;
}

.founder-text p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.value-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: var(--transition);
}

.value-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.value-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.value-item:hover i {
    color: white;
}

.value-item h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.value-item p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.mission-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Values List */
.values-list {
    max-width: 900px;
    margin: 50px auto;
}

.value-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.value-row:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.value-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.3;
    line-height: 1;
    font-family: var(--font-head);
}

.value-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.value-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Organization Cards */
.org-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.org-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.org-card:hover {
    transform: translateY(-5px);
}

.org-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.org-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.org-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Leadership */
.team-leadership {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #eee;
}

.team-leadership h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.leader-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.leader-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.leader-card h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.leader-role {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
}

.leader-card a {
    display: inline-block;
    margin-top: 10px;
    color: var(--secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.leader-card a:hover {
    color: var(--primary);
}

.leader-card a i {
    margin-right: 5px;
}

/* Content Blocks */
.content-block {
    max-width: 900px;
    margin: 40px auto;
}

.content-block h3 {
    color: var(--primary);
    margin: 30px 0 15px;
}

.content-block p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-block .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 30px;
}

.content-block ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-block ul li {
    margin-bottom: 10px;
    color: var(--gray);
    list-style: disc;
}

.timeline-list {
    list-style: none !important;
    padding: 0 !important;
}

.timeline-list li {
    padding: 15px;
    background: var(--light);
    margin-bottom: 10px;
    border-left: 4px solid var(--primary);
    border-radius: 4px;
}

/* Stats Cards */
.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-card .stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-card h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-card p {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.stat-card small {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Mission Highlight */
.mission-highlight {
    text-align: center;
    margin: 40px 0;
}

.mission-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #a52547);
    color: white;
    padding: 30px 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mission-badge h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.mission-badge p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Two Columns */
.two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.col-item {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-box i {
    font-size: 1.8rem;
    color: var(--primary);
}

.col-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.col-item p {
    color: var(--gray);
}

/* Founder Content */
.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    margin: 50px 0;
}

.founder-bio h3 {
    color: var(--primary);
    margin-top: 25px;
    margin-bottom: 15px;
}

.founder-bio p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.quote-highlight {
    background: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 20px 30px;
    margin: 25px 0;
    font-style: italic;
    color: var(--dark);
    font-size: 1.1rem;
}

.dates {
    font-size: 1.2rem;
    color: var(--gray);
    font-style: italic;
    margin-top: 10px;
}

/* Qualities Grid */
.qualities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.quality-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.quality-card:hover {
    transform: translateY(-5px);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.quality-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.quality-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: #f0f8ff;
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h4 {
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* History Timeline */
.history-timeline {
    max-width: 1000px;
    margin: 50px auto;
}

.timeline-block {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.timeline-block:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-head);
    text-align: right;
    padding-top: 5px;
}

.timeline-content {
    padding-left: 20px;
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Provincial Government */
.provincial-superior {
    max-width: 800px;
    margin: 50px auto;
}

.superior-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 40px;
}

.superior-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

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

.superior-info {
    flex: 1;
}

.superior-title {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.superior-info h3 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 15px;
}

.superior-info p {
    color: var(--gray);
    font-size: 1.05rem;
}

/* Assistants */
.assistants-section {
    margin-top: 60px;
}

.assistants-section h3 {
    margin-bottom: 40px;
}

.assistants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.assistant-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.assistant-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.assistant-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.assistant-role {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #a52547);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

/* Projets Sociaux Page Styles */
.projet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 50px 0;
}

.projet-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.projet-content.reverse .projet-text {
    order: 1;
}

.projet-content.reverse .projet-image {
    order: 2;
}

.projet-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.projet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.5s;
}

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

.location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.location-badge i {
    margin-right: 8px;
}

.projet-text p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.mission-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mission-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-icon i {
    font-size: 1.5rem;
    color: white;
}

.mission-details h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.mission-details p {
    color: var(--gray);
    line-height: 1.7;
}

.locations-list {
    margin-top: 30px;
    padding: 25px;
    background: var(--light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.locations-list h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.locations-list ul {
    list-style: none;
    padding: 0;
}

.locations-list ul li {
    padding: 10px 0;
    color: var(--gray);
    font-weight: 500;
}

.locations-list ul li i {
    color: var(--secondary);
    margin-right: 10px;
}

/* Responsive Projets Sociaux */
@media (max-width: 992px) {
    .projet-content,
    .projet-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .projet-content.reverse .projet-text,
    .projet-content.reverse .projet-image {
        order: unset;
    }

    .projet-image img {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .mission-item {
        flex-direction: column;
        text-align: center;
    }

    .mission-icon {
        margin: 0 auto;
    }

    .projet-image img {
        min-height: 250px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #a52547);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   15. RESPONSIVE DESIGN
   ========================================== */

/* Tablettes */
@media (max-width: 992px) {
    .section-padding {
        padding: 60px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        height: 350px;
        margin: 0 auto;
        max-width: 500px;
    }

    .news-agenda-grid {
        grid-template-columns: 1fr;
    }

    .slider-controls button {
        width: 40px;
        height: 40px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    /* Logo */
    .logo-img {
        height: 40px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-langs small {
        font-size: 0.55rem;
    }

    /* Dropdown menus */
    .dropdown-menu {
        min-width: 200px;
    }

    /* Two columns */
    .two-cols {
        grid-template-columns: 1fr;
    }

    /* Founder content */
    .founder-content {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline-block {
        grid-template-columns: 100px 1fr;
        gap: 20px;
    }

    /* Superior card */
    .superior-card {
        flex-direction: column;
        text-align: center;
    }

    /* Assistants */
    .assistants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobiles */
@media (max-width: 768px) {
    /* Body padding adjustment */
    body {
        padding-top: 60px; /* Compensation pour top bar + header collés */
    }

    /* Top Bar */
    .top-bar {
        font-size: 0.7rem;
        padding: 6px 0;
        position: fixed;
        top: 0;
        z-index: 1001;
    }

    .infos span {
        margin-right: 8px;
        display: inline-block;
    }

    .infos span:first-child {
        display: inline-block;
    }

    /* Header */
    header {
        top: 28px; /* Collé directement sous la top bar */
        background: rgba(0, 0, 0, 0.9);
        padding: 10px 0; /* Réduit pour coller */
        position: fixed;
        z-index: 1000;
    }

    header.sticky {
        background: rgba(255, 255, 255, 0.98);
    }

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

    header.sticky .burger div {
        background: var(--primary);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background: #111;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        z-index: 999;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links.nav-active li {
        animation: navLinkFade 0.5s ease forwards;
    }

    .nav-links.nav-active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.nav-active li:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.nav-active li:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.nav-active li:nth-child(4) {
        animation-delay: 0.4s;
    }

    .nav-links.nav-active li:nth-child(5) {
        animation-delay: 0.5s;
    }

    .nav-links.nav-active li:nth-child(6) {
        animation-delay: 0.6s;
    }

    .nav-links.nav-active li:nth-child(7) {
        animation-delay: 0.7s;
    }

    .nav-links.nav-active li:nth-child(8) {
        animation-delay: 0.8s;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: white !important;
    }

    .burger {
        display: block;
    }

    .btn-donate {
        display: none;
    }

    /* Logo mobile */
    .logo-img-wrapper {
        width: 50px;
        height: 50px;
        padding: 4px;
    }

    /* Burger menu amélioré */
    .burger div {
        background: var(--secondary);
    }

    header.sticky .burger div {
        background: var(--primary);
    }

    /* Navigation mobile améliorée */
    .nav-links {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        padding-top: 80px;
    }

    .nav-links ul {
        max-height: 80vh;
        overflow-y: auto;
        padding: 20px;
    }

    .nav-links li {
        margin: 0;
        opacity: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

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

    .nav-links a {
        font-size: 1.3rem !important;
        color: white !important;
        padding: 15px 20px !important;
        display: block;
        border-left: 3px solid transparent;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(139, 30, 63, 0.2);
        border-left-color: var(--secondary);
    }

    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        border: none;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding: 0;
        margin: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
    }

    .dropdown-menu a {
        color: rgba(255,255,255,0.9) !important;
        padding: 12px 20px 12px 30px !important;
        font-size: 0.95rem !important;
    }

    .dropdown-menu a:hover {
        background: rgba(212, 175, 55, 0.2);
        color: white !important;
        padding-left: 35px !important;
    }

    .dropdown-menu.simple-dropdown a:hover {
        padding-left: 35px !important;
    }

    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-links a i.fa-chevron-down {
        transition: transform 0.3s;
    }

    .dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Lang switch mobile */
    .lang-switch {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(139, 30, 63, 0.9);
        padding: 10px 20px;
        border-radius: 30px;
        z-index: 1001;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .lang-switch i {
        color: white;
    }

    .lang-switch a {
        color: white;
        opacity: 0.7;
    }

    .lang-switch a.active {
        background: var(--secondary);
        color: var(--dark);
        opacity: 1;
    }

    /* Page Header */
    .page-header {
        height: 50vh;
        min-height: 350px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Hero */
    .hero {
        min-height: 500px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .scroll-down {
        display: none;
    }

    /* Stats cards */
    .stats-cards {
        grid-template-columns: 1fr;
    }

    /* Mission badge */
    .mission-badge {
        padding: 25px 30px;
    }

    .mission-badge h3 {
        font-size: 1.5rem;
    }

    /* Two cols */
    .two-cols {
        grid-template-columns: 1fr;
    }

    /* Founder */
    .founder-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Qualities */
    .qualities-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline-block {
        grid-template-columns: 100px 1fr;
        gap: 20px;
    }

    .timeline-year {
        font-size: 1.2rem;
    }

    .timeline-content {
        padding-left: 15px;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    /* Provincial superior */
    .superior-card {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .superior-photo {
        width: 150px;
        height: 150px;
    }

    .superior-info h3 {
        font-size: 1.5rem;
    }

    /* Assistants */
    .assistants-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline */
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        padding-left: 70px;
    }

    .timeline-date {
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 15px;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-item .timeline-content::before {
        left: -57.5px !important;
    }

    /* Founder Section */
    .founder-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-quote {
        margin-left: 15px;
        margin-right: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Mission Grid */
    .mission-grid {
        grid-template-columns: 1fr;
    }

    /* Values List */
    .value-row {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .value-row:hover {
        transform: translateX(0);
    }

    .value-number {
        font-size: 2rem;
    }

    /* Leadership */
    .leadership-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
    }

    .cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    /* News */
    .news-card {
        flex-direction: column;
    }

    .news-img,
    .news-content {
        width: 100%;
    }

    .news-img {
        height: 200px;
    }

    /* Events */
    .event-card {
        flex-wrap: wrap;
    }

    .btn-event {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    /* Vocation */
    .vocation-section {
        padding: 80px 0;
        background-attachment: scroll;
    }

    .vocation-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .vocation-btns .btn {
        width: 100%;
        text-align: center;
    }

    /* Partners */
    .partners-wrapper {
        font-size: 2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Petits mobiles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .hero {
        min-height: 450px;
    }

    .slider-controls button {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .about-images {
        height: 300px;
    }

    .exp-badge {
        width: 80px;
        height: 80px;
        right: -10px;
    }

    .exp-badge .number {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .partners-wrapper {
        font-size: 1.5rem;
    }

    #backToTop {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
}

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

/* ==========================================
   DEVENIR PIARISTE PAGE STYLES
   ========================================== */

/* Vocation Header */
.vocation-header {
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.0), rgba(165, 37, 71, 0.9));
}

.header-question {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.header-question .lead {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    font-weight: 500;
}

/* Identity Grid */
.identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.identity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.identity-card.highlight {
    background: linear-gradient(135deg, var(--primary), #a52547);
    color: white;
}

.identity-card.highlight h3,
.identity-card.highlight p {
    color: white;
}



.identity-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.identity-card.highlight .identity-icon {
    background: white;
}

.identity-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.identity-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.identity-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.identity-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 20px;
}

.identity-list li {
    padding: 8px 0;
    color: var(--gray);
}

.identity-card.highlight .identity-list li {
    color: rgba(255,255,255,0.9);
}

.identity-list li i {
    color: var(--secondary);
    margin-right: 10px;
}

/* Formation Timeline */
.formation-timeline {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
}

.formation-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.formation-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.formation-step:nth-child(odd) {
    flex-direction: row;
}

.formation-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-head);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.formation-step.highlight .step-number {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.2);
}

.step-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.formation-step.highlight .step-content {
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.05), rgba(165, 37, 71, 0.05));
    border: 2px solid var(--primary);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

.step-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 15px;
}

.step-badge.final {
    background: linear-gradient(135deg, var(--primary), #a52547);
    color: white;
}

.step-badge i {
    margin-right: 8px;
}

/* Checklist Container */
.checklist-container {
    max-width: 800px;
    margin: 50px auto;
}

.checklist-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.check-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon i {
    font-size: 1.3rem;
    color: white;
}

.checklist-item p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
    font-size: 1.05rem;
}

.checklist-item p strong {
    color: var(--primary);
}

/* Contact CTA */
/* ==========================================
   PAGE DEVENIR PIARISTE - SECTION CONTACT CTA
   NOUVEAU DESIGN AMÉLIORÉ 🔥
   À REMPLACER dans style.css
   ========================================== */

.contact-cta {
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 50%, #2d0a13 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.contact-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-cta .cta-content > p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 60px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Methods - Nouveau Design */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-box:hover::before {
    left: 100%;
}

.contact-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.4);
}

/* Icônes améliorées */
.contact-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px dashed;
    opacity: 0;
    transition: all 0.4s ease;
}

.contact-box:hover .contact-icon::after {
    opacity: 0.3;
    transform: rotate(180deg);
}

.contact-icon i {
    font-size: 3rem;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-icon.whatsapp::after {
    border-color: #25D366;
}

.contact-icon.email {
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 100%);
}

.contact-icon.email::after {
    border-color: #8B1E3F;
}

.contact-icon.location {
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
}

.contact-icon.location::after {
    border-color: #D4AF37;
}

.contact-box:hover .contact-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Titres des boxes */
.contact-box h4 {
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

/* Liens de contact */
.contact-link {
    font-size: 1.2rem;
    color: #8B1E3F;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(139, 30, 63, 0.05);
}

.contact-link:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, #8B1E3F, #5a1426);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.3);
}

/* Description */
.contact-desc {
    font-size: 1rem;
    color: #666666;
    margin: 0;
    font-style: italic;
}

/* CTA Final - Amélioré */
.cta-final {
    margin-top: 60px;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.motto {
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    margin-bottom: 20px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.encouragement {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
}

.encouragement strong {
    color: #D4AF37;
    font-size: 1.6rem;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.5);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 80px 0;
    }

    .contact-cta h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .contact-cta .cta-content > p {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-box {
        padding: 40px 30px;
    }

    .contact-icon {
        width: 85px;
        height: 85px;
    }

    .contact-icon i {
        font-size: 2.5rem;
    }

    .contact-box h4 {
        font-size: 1.5rem;
    }

    .contact-link {
        font-size: 1.1rem;
    }

    .cta-final {
        padding: 40px 30px;
    }

    .motto {
        font-size: 2rem;
    }

    .encouragement {
        font-size: 1.2rem;
    }

    .encouragement strong {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .contact-cta {
        padding: 60px 0;
    }

    .contact-box {
        padding: 35px 25px;
    }

    .contact-icon {
        width: 75px;
        height: 75px;
    }

    .contact-icon i {
        font-size: 2.2rem;
    }

    .contact-icon::after {
        width: 95px;
        height: 95px;
    }

    .contact-box h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .contact-link {
        font-size: 1rem;
        padding: 8px 16px;
    }

    .cta-final {
        padding: 30px 20px;
    }

    .motto {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .encouragement {
        font-size: 1.1rem;
    }

    .encouragement strong {
        font-size: 1.3rem;
    }
}

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

.contact-box {
    animation: fadeInUp 0.6s ease forwards;
}

.contact-box:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-box:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-box:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsive Devenir Piariste */
@media (max-width: 992px) {
    .identity-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .formation-timeline::before {
        left: 40px;
    }

    .formation-step,
    .formation-step:nth-child(even) {
        flex-direction: row !important;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vocation-header h1 {
        font-size: 2rem;
    }

    .header-question .lead {
        font-size: 1.1rem;
    }

    .identity-card {
        padding: 30px 20px;
    }

    .identity-icon {
        width: 80px;
        height: 80px;
    }

    .identity-icon i {
        font-size: 2rem;
    }

    .formation-timeline::before {
        left: 35px;
    }

    .formation-step {
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }

    .step-content {
        padding: 20px;
    }

    .checklist-item {
        flex-direction: column;
        text-align: center;
    }

    .check-icon {
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .contact-icon {
        width: 70px;
        height: 70px;
    }

    .contact-icon i {
        font-size: 1.8rem;
    }
}

/* ==========================================
   MAISONS, ÉCOLES, PAROISSES PAGES
   ========================================== */

/* Maisons Stats */
.maisons-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-card .stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-card .stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: var(--font-head);
}

.stat-card p {
    color: var(--gray);
    font-size: 1.1rem;
    margin: 0;
}

/* Country Header */
.country-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--secondary);
}

.country-flag {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-info h2 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.country-count {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Houses Grid */
.houses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.house-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary);
}

.house-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-top-color: var(--secondary);
}

.house-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.house-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.house-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.house-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.house-location i {
    color: var(--secondary);
    margin-right: 5px;
}

.house-count {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.house-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.house-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray);
    font-size: 0.95rem;
}

.house-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Responsive - Maisons */
@media (max-width: 992px) {
    .maisons-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .houses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .country-header {
        flex-direction: column;
        text-align: center;
    }

    .country-flag {
        width: 100px;
        height: 65px;
    }
}

@media (max-width: 768px) {
    .houses-grid {
        grid-template-columns: 1fr;
    }

    .country-info h2 {
        font-size: 1.8rem;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }
}

/* ==========================================
   ÉCOLES PAGE STYLES
   ========================================== */

/* School Section */
.school-section {
    margin-bottom: 60px;
}

.city-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light);
}

.city-title i {
    color: var(--secondary);
    margin-right: 10px;
}

.schools-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.school-item {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    align-items: flex-start;
    overflow: hidden;
}

.school-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.school-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.school-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.school-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.school-image-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
}

.school-content {
    flex: 1;
    padding: 25px;
}

.school-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 15px;
}

.school-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.school-info h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.school-location {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.school-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 8px;
    margin-top: 8px;
}

.school-badge.maternelle {
    background: #e3f2fd;
    color: #1976d2;
}

.school-badge.college {
    background: #f3e5f5;
    color: #7b1fa2;
}

.school-badge.bilingue {
    background: #fff3e0;
    color: #e65100;
}

.school-badge.internat {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Map Container */
.map-container {
    position: relative;
    margin: 40px 0;
}

#schools-map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
}

.map-legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 100;
}

.map-legend h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.map-legend h4 i {
    color: var(--secondary);
    margin-right: 8px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.marker-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.marker-icon.cameroun {
    background: #4CAF50;
}

.marker-icon.guinee {
    background: #FF9800;
}

.marker-icon.gabon {
    background: #2196F3;
}

.marker-icon.congo {
    background: #9C27B0;
}

.legend-item span:last-child {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Responsive Écoles */
@media (max-width: 768px) {
    .school-item {
        flex-direction: column;
    }

    .school-image {
        width: 100%;
        height: 200px;
    }

    .school-content {
        padding: 20px;
    }

    .city-title {
        font-size: 1.5rem;
    }

    .map-legend {
        position: static;
        margin-top: 20px;
    }

    #schools-map {
        height: 400px;
    }
}

/* ==========================================
   PAROISSES PAGE STYLES
   ========================================== */

.parishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.parish-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.parish-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.parish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.parish-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.8), rgba(165, 37, 71, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.parish-card:hover .parish-overlay {
    opacity: 1;
}

.parish-overlay i {
    font-size: 3rem;
    color: white;
}

.parish-content {
    padding: 25px;
}

.parish-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.parish-location {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.parish-location i {
    margin-right: 5px;
}

.parish-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.parish-info {
    padding-top: 15px;
    border-top: 2px solid var(--light);
}

.parish-info span {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.parish-info i {
    color: var(--primary);
}

/* Responsive Paroisses */
@media (max-width: 992px) {
    .parishes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .parish-image {
        height: 180px;
    }

    .parish-content h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================
   JEUNES PAGE STYLES
   ========================================== */

.youth-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 50px 0;
}

.youth-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.youth-content.reverse .youth-text {
    order: 2;
}

.youth-content.reverse .youth-image {
    order: 1;
}

.youth-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.youth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.5s;
}

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

.youth-text p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.youth-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.youth-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.feature-item span {
    color: var(--gray);
    font-weight: 500;
}

.youth-presence {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-top: 30px;
}

.youth-presence h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.youth-presence h4 i {
    color: var(--secondary);
    margin-right: 8px;
}

.youth-presence p {
    margin: 0;
    color: var(--gray);
}

.youth-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.highlight-icon i {
    font-size: 1.8rem;
    color: white;
}

.highlight-box h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.highlight-box p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.colonies-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-text h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.activity-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

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

.activity-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), #a52547);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.activity-icon i {
    font-size: 2.2rem;
    color: white;
}

.activity-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.activity-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.section-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light);
}

/* Responsive Jeunes */
@media (max-width: 992px) {
    .youth-content,
    .youth-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .youth-content.reverse .youth-text,
    .youth-content.reverse .youth-image {
        order: unset;
    }

    .youth-highlights {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .youth-image img {
        min-height: 300px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-icon {
        width: 70px;
        height: 70px;
    }

    .activity-icon i {
        font-size: 1.8rem;
    }
}

/* ==========================================
   SECTION HISTOIRE - DESIGN MODERNE COMPLET
   ========================================== */

/* Variables locales si elles n'existent pas déjà */
:root {
    --primary: #8B1E3F;
    --secondary: #D4AF37;
    --dark: #1A1A1A;
    --light: #F4F4F4;
    --white: #FFFFFF;
    --gray: #666666;
    --font-head: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Section Histoire */
#histoire {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

#histoire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Introduction */
.history-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.history-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #666666;
}

/* Container Timeline */
.modern-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Ligne centrale */
.modern-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #8B1E3F 0%, #D4AF37 100%);
    transform: translateX(-50%);
    z-index: 1;
}

/* Item Timeline */
.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 1;
}

/* Alternance des côtés */
.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) .timeline-card,
.timeline-item:nth-child(even) .timeline-year {
    direction: ltr;
}

/* Années */
.timeline-year {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8B1E3F;
    font-family: 'Cinzel', serif;
    text-align: right;
    line-height: 1;
    padding-right: 20px;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-right: 0;
    padding-left: 20px;
}

/* Point sur la timeline */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    background: #D4AF37;
    border: 5px solid #FFFFFF;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px #8B1E3F, 0 0 20px rgba(212, 175, 55, 0.6);
    z-index: 10;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 0 7px #8B1E3F, 0 0 30px rgba(212, 175, 55, 0.9);
}

/* Cartes */
.timeline-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

/* Flèche vers la timeline */
.timeline-card::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

/* Flèche à droite pour items impairs */
.timeline-item:nth-child(odd) .timeline-card::before {
    right: -20px;
    border-width: 20px 0 20px 20px;
    border-color: transparent transparent transparent #FFFFFF;
}

/* Flèche à gauche pour items pairs */
.timeline-item:nth-child(even) .timeline-card::before {
    left: -20px;
    border-width: 20px 20px 20px 0;
    border-color: transparent #FFFFFF transparent transparent;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 30, 63, 0.2);
}

.timeline-card h4 {
    font-size: 1.6rem;
    color: #8B1E3F;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.3;
}

.timeline-card p {
    color: #666666;
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

/* Highlights dorés */
.timeline-card .highlight {
    display: inline;
    background: linear-gradient(120deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    color: #8B1E3F;
}

/* Conclusion */
.history-conclusion {
    margin-top: 80px;
    text-align: center;
    padding: 60px 50px;
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 100%);
    border-radius: 20px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.history-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.history-conclusion h3 {
    position: relative;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    z-index: 2;
    font-family: 'Cinzel', serif;
    font-weight: 700;
}

.history-conclusion p {
    position: relative;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    z-index: 2;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 992px) {
    .timeline-year {
        font-size: 2.8rem;
    }

    .timeline-item {
        gap: 60px;
    }

    .timeline-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* Timeline à gauche sur mobile */
    .modern-timeline::before {
        left: 30px;
        transform: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 80px;
        margin-bottom: 50px;
    }

    .timeline-item:nth-child(even) {
        direction: ltr;
    }

    .timeline-year {
        text-align: left !important;
        font-size: 2.2rem;
        margin-bottom: 15px;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .timeline-dot {
        left: 30px;
        top: 30px;
        transform: translate(-50%, 0);
    }

    .timeline-item:hover .timeline-dot {
        transform: translate(-50%, 0) scale(1.4);
    }

    .timeline-card::before {
        display: none;
    }

    .timeline-card {
        padding: 25px;
    }

    .timeline-card h4 {
        font-size: 1.3rem;
    }

    .timeline-card p {
        font-size: 0.95rem;
    }

    .history-conclusion {
        padding: 40px 25px;
    }

    .history-conclusion h3 {
        font-size: 1.8rem;
    }

    .history-conclusion p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    #histoire {
        padding: 60px 0;
    }

    .history-intro p {
        font-size: 1rem;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-year {
        font-size: 1.8rem;
    }

    .timeline-card {
        padding: 20px;
    }

    .timeline-card h4 {
        font-size: 1.2rem;
    }

    .history-conclusion {
        padding: 30px 20px;
    }

    .history-conclusion h3 {
        font-size: 1.5rem;
    }
}
/* ==========================================
   PAGE ARCHIVES - DESIGN NYAGA 🔥
   ========================================== */

/* Hero Section */
.archives-hero {
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('images/about/archives.jpg');
    background-size: cover;
    background-position: center;
    background-color: #8B1E3F;
}

.archives-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: pulse-hero 8s ease-in-out infinite;
}

@keyframes pulse-hero {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 40%, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.hero-content .sub-heading {
    color: #D4AF37;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #f4e4a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #D4AF37;
}

/* ==========================================
   SÉLECTION D'ANNÉE
   ========================================== */
/* ==========================================
   PAGE ARCHIVE - SECTION ANNÉE (VERSION NORMALE)
   À REMPLACER dans style.css
   ========================================== */

.year-selector {
    /* Enlever le position: sticky et tous les styles qui le rendent fixe */
    position: relative; /* Normal au lieu de sticky */
    background: #FFFFFF;
    z-index: auto; /* Pas besoin de z-index élevé */
}

.year-selector .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.years-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.year-card {
    background: #FFFFFF;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #E0E0E0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.year-card:hover {
    border-color: #8B1E3F;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 30, 63, 0.15);
}

.year-card.active {
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 100%);
    border-color: #8B1E3F;
    box-shadow: 0 8px 25px rgba(139, 30, 63, 0.3);
}

.year-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B1E3F;
    font-family: 'Cinzel', serif;
    margin-bottom: 10px;
}

.year-card.active .year-number {
    color: #D4AF37;
}

.year-stats span {
    font-size: 1rem;
    color: #666666;
}

.year-card.active .year-stats span {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive */
@media (max-width: 768px) {
    .years-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .years-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ARCHIVES PAR MOIS
   ========================================== */
.months-archives {
    background: #F4F4F4;
}

.archives-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.current-year {
    color: #D4AF37;
}

.btn-back {
    padding: 12px 28px;
    background: #FFFFFF;
    color: #8B1E3F;
    border: 2px solid #8B1E3F;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back:hover {
    background: #8B1E3F;
    color: #FFFFFF;
    transform: translateX(-5px);
}

.months-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.month-block {
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.month-block:hover {
    box-shadow: 0 10px 35px rgba(139, 30, 63, 0.15);
}

.month-header {
    padding: 25px 30px;
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.month-header:hover {
    background: linear-gradient(135deg, #5a1426 0%, #8B1E3F 100%);
}

.archived-month .month-header {
    background: linear-gradient(135deg, #666666 0%, #4a4a4a 100%);
}

.archived-month .month-header:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #666666 100%);
}

.month-name h3 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 5px;
    font-family: 'Cinzel', serif;
}

.article-count {
    color: #D4AF37;
    font-size: 0.95rem;
    font-weight: 500;
}

.toggle-month {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.toggle-month:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.month-articles {
    padding: 30px;
}

.archive-article {
    display: block;
    padding: 25px;
    background: #F9F9F9;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #8B1E3F;
    transition: all 0.3s ease;
    text-decoration: none;
}

.archive-article:last-child {
    margin-bottom: 0;
}

.archive-article:hover {
    background: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(139, 30, 63, 0.1);
    border-left-width: 6px;
}

.article-date {
    display: block;
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.archive-article h4 {
    font-size: 1.3rem;
    color: #8B1E3F;
    margin-bottom: 10px;
    font-weight: 700;
}

.archive-article:hover h4 {
    color: #D4AF37;
}

.archive-article p {
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   CTA NEWSLETTER
   ========================================== */
.newsletter-cta {
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate-bg 20s linear infinite;
}

@keyframes rotate-bg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.newsletter-form-inline {
    display: flex;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-form-inline input {
    flex: 1;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form-inline input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.3);
}

.newsletter-form-inline button {
    padding: 18px 40px;
    background: #D4AF37;
    color: #1A1A1A;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form-inline button:hover {
    background: #e5a62c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .archives-hero {
        height: 45vh;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .years-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .year-number {
        font-size: 2.5rem;
    }

    .archives-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .month-name h3 {
        font-size: 1.5rem;
    }

    .archive-article {
        padding: 20px;
    }

    .archive-article h4 {
        font-size: 1.15rem;
    }

    .newsletter-form-inline {
        flex-direction: column;
    }

    .newsletter-form-inline button {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .years-grid {
        grid-template-columns: 1fr;
    }

    .month-header {
        padding: 20px;
    }

    .month-articles {
        padding: 20px;
    }

    .archive-article {
        padding: 15px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

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

/* ==========================================
   ANIMATIONS
   ========================================== */
.month-block {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* ==========================================
   PAGE ANCIENS ÉLÈVES - CSS NYANGA 🔥
   À ajouter à la fin de style.css
   ========================================== */

/* Hero Section */
.alumni-hero {
    position: relative;
    height: 65vh;
    min-height: 600px;
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 50%, #2d0a13 100%);
    background-image: url('images/hero/05LANDRIANI.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Si une image est utilisée, elle remplace le gradient de base */
.alumni-hero[style*="background-image"] {
    background-blend-mode: overlay;
}

.alumni-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 30, 63, 0.7); /* Overlay sombre pour lisibilité du texte */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.4) 0%, rgba(45, 10, 19, 0.6) 100%);
    z-index: 1;
}

.alumni-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
}

.alumni-hero .sub-heading {
    color: #D4AF37;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.alumni-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
}

.text-gold {
    color: #D4AF37;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 18px 45px;
    background: #D4AF37;
    color: #1A1A1A;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: #e5a62c;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
    padding: 18px 45px;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero-secondary:hover {
    background: #FFFFFF;
    color: #8B1E3F;
    transform: translateY(-4px);
}

/* Message d'introduction */
.intro-message {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    color: #8B1E3F;
    margin-bottom: 25px;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-text {
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 30px 40px;
    border-radius: 16px;
    border-left: 5px solid #D4AF37;
    font-size: 1.3rem;
    color: #8B1E3F;
    font-weight: 600;
    font-style: italic;
    line-height: 1.7;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.reason-card {
    background: #FFFFFF;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #8B1E3F, #D4AF37);
    transition: width 0.4s ease;
}

.reason-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 30, 63, 0.15);
}

.reason-number {
    font-size: 5rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Cinzel', serif;
    line-height: 1;
    margin-bottom: 20px;
}

.reason-content h3 {
    font-size: 1.8rem;
    color: #8B1E3F;
    margin-bottom: 15px;
    font-weight: 700;
}

.reason-content p {
    font-size: 1.05rem;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

/* Formulaire */
.form-container {
    max-width: 800px;
    margin: 50px auto 0;
    background: #FFFFFF;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.alumni-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 10px;
    font-size: 1rem;
}

.required {
    color: #8B1E3F;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B1E3F;
    box-shadow: 0 0 0 4px rgba(139, 30, 63, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    color: #666666;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #8B1E3F;
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

.btn-submit {
    padding: 18px 60px;
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 30, 63, 0.3);
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(139, 30, 63, 0.4);
    background: linear-gradient(135deg, #D4AF37 0%, #b8941f 100%);
    color: #1A1A1A;
}

/* CTA Alumni */
.cta-alumni {
    background: linear-gradient(135deg, #8B1E3F 0%, #5a1426 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-alumni::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content-alumni {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
}

.cta-content-alumni h2 {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-alumni p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-quote {
    font-size: 2.5rem;
    color: #D4AF37;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    font-style: italic;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
    .alumni-hero {
        height: 55vh;
    }

    .alumni-hero h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 350px;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .highlight-text {
        padding: 25px 30px;
        font-size: 1.1rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .reason-number {
        font-size: 4rem;
    }

    .form-container {
        padding: 35px 25px;
    }

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

    .cta-content-alumni h2 {
        font-size: 2.2rem;
    }

    .cta-quote {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .alumni-hero {
        height: 50vh;
        min-height: 450px;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .reason-content h3 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 30px 20px;
    }

    .btn-submit {
        padding: 16px 40px;
        width: 100%;
    }
}


/* ==========================================
   GOOGLE TRANSLATE STYLES
   ========================================== */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}

/* ==========================================
   PAGE LISTE DES ACTUALITÉS
   ========================================== */

/* Page Header pour Liste Actualités */
/* Style Scolopi.org pour les métadonnées - Page d'accueil */
/* Styles retirés pour actualité simple */

.home .actualite-card-meta {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.home .actualite-card-title {
    margin-bottom: 8px;
}

.home .actualite-card-title a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s ease;
}

.home .actualite-card-title a:hover {
    color: #5a1426;
}

/* Espacement pour les actualités */
.actualites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.actualite-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

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

.actualite-card-content {
    padding: 25px;
}

/* Espacement pour la page liste-actualites */
.liste-actualites .actualites-container {
    gap: 30px;
    margin-bottom: 40px;
}

.liste-actualites .actualite-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.liste-actualites .actualite-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.liste-actualites .actualite-content {
    padding: 25px;
}

/* Styles pour bouton "Voir toutes les actualités" */
.see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.2);
}

.see-all-btn:active {
    transform: translateY(0);
}

.see-all-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.see-all-btn:hover i {
    transform: translateX(3px);
}

.home .meta-separator {
    margin: 0 2px;
    color: #adb5bd;
}

/* Styles retirés pour actualité simple */
.liste-actualites .actualite-excerpt {
color: #495057;
line-height: 1.5;
font-size: 0.95rem;
margin-bottom: 15px;
}

/* Styles pour la page Agenda */
/* Section Événements à venir */
.upcoming-events-section {
    margin-bottom: 60px;
}

.upcoming-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

/* Section Événements passés */
.past-events-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.agenda-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .agenda-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.agenda-column {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #8B1E3F;
}

.agenda-column h2.section-title {
    font-size: 1.5rem;
    color: #8B1E3F;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #D4AF37;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.agenda-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.agenda-item:hover {
    box-shadow: 0 3px 10px rgba(139, 30, 63, 0.1);
    transform: translateY(-2px);
}

.agenda-item.past-event {
    opacity: 0.8;
    background: #f8f9fa;
}

.agenda-item-header {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 15px;
}

/* Styles pour l'accordéon */
.event-accordion-header {
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.event-accordion-header:hover {
    transform: translateY(-2px);
}

.accordion-icon {
    font-size: 1.2rem;
    color: #8B1E3F;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.event-accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.event-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.event-accordion-content.active {
    max-height: 500px;
    padding: 0 0 20px 0;
}

/* Bloc date + titre */
.event-date-block {
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    flex: 1;
}

.event-date {
    margin-bottom: 10px;
}

.date-start,
.date-end {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8B1E3F;
}

.date-separator {
    font-size: 1.1rem;
    color: #D4AF37;
    margin: 0 8px;
}

.event-date-block .event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.3;
}

.event-content {
    flex: 1;
    min-width: 0;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.event-location,
.event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.event-location i,
.event-time i {
    color: #8B1E3F;
    width: 16px;
}

.event-description-full {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-link {
    margin-top: 10px;
}

.no-events {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-events-icon {
    font-size: 3rem;
    color: #adb5bd;
    margin-bottom: 20px;
}

.no-events h3 {
    font-size: 1.3rem;
    color: #495057;
    margin-bottom: 10px;
}

.no-events p {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Responsive pour agenda */
@media (max-width: 767px) {
    .upcoming-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .upcoming-events-section {
        margin-bottom: 40px;
    }
    
    .past-events-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .agenda-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .agenda-column {
        padding: 20px;
    }
    
    .agenda-item-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .event-date {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .upcoming-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .past-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1025px) {
    .upcoming-events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .past-events-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

.liste-actualites .page-header {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 30, 63, 0.9), rgba(26, 26, 26, 0.9));
    color: white;
    text-align: center;
}

.liste-actualites .page-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--dark) 100%);
    opacity: 0.9;
}

.liste-actualites .page-header-content {
    position: relative;
    z-index: 2;
}

.liste-actualites .page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.liste-actualites .page-header h1 i {
    margin-right: 15px;
    color: var(--secondary);
}

.liste-actualites .page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Statistics Bar - Spécifique à la page liste-actualités */
.liste-actualites .stats-bar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 30px 0;
}

.liste-actualites .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.liste-actualites .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.liste-actualites .stat-item i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.liste-actualites .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.liste-actualites .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filters Section */
.filters-section {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filters-header h2 {
    color: var(--dark);
    font-size: 1.5rem;
    margin: 0;
}

.filters-header h2 i {
    margin-right: 10px;
    color: var(--primary);
}

.toggle-filters {
    display: none;
}

.filters-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.filters-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}

.filter-group label i {
    margin-right: 8px;
    color: var(--primary);
}

.filter-group input,
.filter-group select {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 30, 63, 0.1);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: end;
}

/* Bouton Retour intelligent */
.back-button-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.2);
}

.back-btn:active {
    transform: translateY(0);
}

.back-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.back-btn:hover i {
    transform: translateX(-3px);
}

/* Responsive pour le bouton retour */
@media (max-width: 768px) {
    .back-button-container {
        margin-bottom: 15px;
    }
    
    .back-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Actualités List Section */
.actualites-list-section {
    padding: 60px 0;
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.list-header h2 {
    color: var(--dark);
    font-size: 2rem;
    margin: 0;
}

.list-header h2 i {
    margin-right: 15px;
    color: var(--primary);
}

.filters-applied {
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 400;
}

.clear-filters {
    color: var(--primary);
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.85rem;
}

.clear-filters:hover {
    text-decoration: underline;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-options .btn-sm {
    padding: 8px 15px;
    font-size: 0.85rem;
}

/* Actualités Container */
.actualites-container.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.actualites-container.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Actualité Item */
.actualite-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

/* Grid View */
.actualites-container.grid-view .actualite-item {
    display: flex;
    flex-direction: column;
}

.actualites-container.grid-view .actualite-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.actualites-container.grid-view .actualite-item:hover .actualite-image img {
    transform: scale(1.05);
}

.actualites-container.grid-view .actualite-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;
}

.actualites-container.grid-view .actualite-item:hover .actualite-overlay {
    opacity: 1;
}

.actualites-container.grid-view .actualite-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* List View */
.actualites-container.list-view .actualite-item {
    display: flex;
    flex-direction: row;
    height: 150px;
}

.actualites-container.list-view .actualite-image {
    width: 250px;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.actualites-container.list-view .actualite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.actualites-container.list-view .actualite-overlay {
    display: none;
}

.actualites-container.list-view .actualite-content {
    flex: 1;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Actualité Content */
.actualite-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.actualite-category {
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.actualite-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.actualite-date i {
    margin-right: 5px;
}

.actualite-title {
    margin-bottom: 8px;
    line-height: 1.3;
}

.actualite-title a {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.actualite-title a:hover {
    color: #5a1426;
}

.actualite-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.actualite-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.actualite-author {
    color: #6c757d;
    font-size: 0.85rem;
}

.actualite-author i {
    margin-right: 5px;
}

.actualite-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.photos-count {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
}

.photos-count i {
    margin-right: 5px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
    transform: translateX(3px);
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #6c757d;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.no-results p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Navigation Simple Style Piariste */
.navigation-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 2px solid #e9ecef;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-next {
    text-align: right;
}

.nav-info {
    text-align: center;
    flex: 0 0 auto;
    padding: 0 20px;
}

.page-info {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 30, 63, 0.2);
    text-decoration: none;
}

.nav-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-prev:hover i {
    transform: translateX(-3px);
}

.nav-next-link:hover i {
    transform: translateX(3px);
}

/* Style spécifique pour les liens sans navigation */
.nav-previous:empty,
.nav-next:empty {
    visibility: hidden;
}

/* Responsive pour navigation */
@media (max-width: 768px) {
    .navigation-simple {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-previous,
    .nav-next {
        text-align: center;
        flex: none;
        width: 100%;
    }
    
    .nav-info {
        order: -1;
        padding: 0;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

/* Pagination */
.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
}

.pagination-wrapper .pagination {
    justify-content: center;
    gap: 5px;
}

.pagination-wrapper .page-link {
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 15px;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-wrapper .page-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.pagination-wrapper .page-item.active .page-link {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-wrapper .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1200px) {
    .filters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .filter-actions {
        grid-column: span 2;
        justify-content: center;
    }
    
    .actualites-container.grid-view {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .toggle-filters {
        display: block;
    }
    
    .filters-form {
        padding: 20px;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-actions {
        grid-column: span 1;
        justify-content: stretch;
    }
    
    .filter-actions .btn {
        flex: 1;
    }
    
    .list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .actualites-container.grid-view {
        grid-template-columns: 1fr;
    }
    
    .actualites-container.list-view .actualite-item {
        flex-direction: column;
        height: auto;
    }
    
    .actualites-container.list-view .actualite-image {
        width: 100%;
        height: 200px;
    }
    
    .actualite-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .actualite-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .filters-form {
        padding: 15px;
    }
    
    .actualite-item {
        border-radius: 10px;
    }
    
    .actualites-container.grid-view .actualite-content {
        padding: 20px;
    }
    
    .actualites-container.list-view .actualite-content {
        padding: 15px 20px;
    }
    
    .actualite-title a {
        font-size: 1.2rem;
    }
    
    .home .actualite-card-title a {
        font-size: 1.1rem;
    }
    
    .actualite-excerpt {
        font-size: 0.9rem;
    }
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-balloon-frame {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0px !important;
}

.goog-te-combo {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.notranslate * {
    translate: none !important;
}

#google_translate_element {
    display: none;
}


@media (max-width: 768px) {
    .nav-links .dropdown-menu {
        position: static;
        background: #ffffff !important;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
        margin-top: 10px;
        border-radius: 8px;
        padding: 10px;
    }
    
    .nav-links .dropdown-menu a {
        color: #000000 !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
    
    .nav-links .dropdown-menu a:hover {
        background: #f5f5f5 !important;
        color: var(--primary) !important;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .nav-links li {
        margin: 0;
        opacity: 0.7 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.actualites-agenda-layout
 {
    /* display: grid;
    grid-template-columns: 70% 30% !important;
    gap: 3rem; */
    margin-top: 2rem;
    width: 100% !important;
}

.actualites-column {
    padding-right: 2rem;
}

.agenda-column {
    padding-left: 2rem;
}

.actualite-card-image {
    height: 300px !important;
}

.newsletter-in-agenda {
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .newsletter-in-agenda {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
}
