/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=BBH+Bartle&family=BBH+Hegarty&family=Cal+Sans&family=Corinthia:wght@400;700&family=Ephesis&family=Monsieur+La+Doulaise&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Palette Cité de l'amour – couleurs de l'église */
:root {
    --color-primary: #8B0000;
    --color-primary-hover: #A52A2A;
    --color-secondary: #6B2D2D;
    --color-gold: #DCCB10;
    --color-accent: #8B0000;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    --color-dark: #4A1515;
    --color-brown: #8B4513;
    --color-purple: #6b2d5c;
    --color-church-bg: #fff8f8;
    --color-church-header: linear-gradient(135deg, #fff8f8 0%, #fce8e8 50%, #f5e0e0 100%);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --color-blue-hommes: #5c3d5c;
    --color-pink-femmes: #6b4a6b;
    --color-jeunes-gradient: linear-gradient(135deg, #8B0000 0%, #6B2D2D 100%);
    --color-purple-medias: #5a3d5a;
    --color-yellow-juniors: #6b4a4a;
    --color-teal-evangelisation: #5a4a4a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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




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

/* Header */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

/* Header standard pour la page d'accueil - garantit qu'il reste standard */
body:not([class*="page-"]) .header,
body:not(.page-hommes):not(.page-femmes):not(.page-ados):not(.page-juniors):not(.page-jeunes-adultes):not(.page-medias):not(.page-chorale):not(.page-intercession):not(.page-pastoral):not(.page-evangelisation) .header {
    background: var(--color-white) !important;
    box-shadow: var(--shadow) !important;
    padding: 0.5rem 0 !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-family : "Montserrat", sans-serif;
    font-size: 18px;
}

/* Navigation poussÃ©e Ã  droite pour la page d'accueil */
.department-header-transparent .nav {
    margin-left: auto;
    margin-right: 0;
}


/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Image du logo */
.logo img {
    height: 90px;
}

.department-header {
    background: var(--color-church-header);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0.3rem 0;
}

.department-header .nav-link {
    color: var(--color-primary);
    font-weight: 600;
}

.department-header .nav-link:hover {
    color: var(--color-primary-hover);
}

/* Header transparent - base (glassmorphism). Les .on-* ne modifient que background / box-shadow */
.department-header-transparent {
    padding: 0.3rem 0 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: auto;
    background: rgba(255, 240, 240, 0.5) !important;
    backdrop-filter: blur(25px) saturate(180%) brightness(1.05);
    -webkit-backdrop-filter: blur(25px) saturate(180%) brightness(1.05);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04), 0 1px 0 rgba(255, 255, 255, 0.3) inset, 0 -1px 0 rgba(0, 0, 0, 0.03) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* RÃ©duction de la taille des Ã©lÃ©ments dans le header transparent */
.department-header-transparent .logo-curves {
    width: 45px;
    height: 45px;
}

.department-header-transparent .logo-cite,
.department-header-transparent .logo-amour {
    font-size: 1.6rem;
}

.department-header-transparent .logo-cross {
    font-size: 1.4rem;
}

.department-header-transparent .logo-book {
    font-size: 0.9rem;
    bottom: -18px;
    left: 14px;
}

.department-header-transparent .logo-tagline-header {
    font-size: 0.65rem;
    margin-top: 0.2rem;
}

.department-header-transparent .nav-link {
    font-size: 0.95rem;
    padding: 0.3rem 0;
}

.department-header-transparent .header-content {
    gap: 0.75rem;
    align-items: center;
}

.department-header-transparent .logo {
    gap: 0.75rem;
}

.department-header-transparent .logo-main {
    gap: 0.2rem;
}

.department-header-transparent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: -1;
}

/* .on-* : uniquement background + box-shadow (le reste hÃ©rite de la base) */
.department-header-transparent.on-pink {
    background: rgba(227, 232, 245, 0.45) !important;
    box-shadow: 0 1px 10px rgba(139, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}
.department-header-transparent.on-white {
    background: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04), 0 1px 0 rgba(255, 255, 255, 0.5) inset;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.department-header-transparent.on-blue {
    background: rgba(107, 45, 45, 0.08) !important;
    box-shadow: 0 1px 10px rgba(107, 45, 45, 0.08), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-green {
    background: rgba(123, 166, 138, 0.15) !important;
    box-shadow: 0 1px 10px rgba(123, 166, 138, 0.12), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-gradient {
    background: linear-gradient(135deg, rgba(139, 168, 209, 0.2) 0%, rgba(184, 134, 155, 0.2) 100%) !important;
    box-shadow: 0 1px 10px rgba(139, 168, 209, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-purple {
    background: rgba(107, 91, 149, 0.15) !important;
    box-shadow: 0 1px 10px rgba(107, 91, 149, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-orange {
    background: rgba(122, 74, 90, 0.15) !important;
    box-shadow: 0 1px 10px rgba(122, 74, 90, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-yellow-green {
    background: rgba(107, 90, 122, 0.15) !important;
    box-shadow: 0 1px 10px rgba(107, 90, 122, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-gold {
    background: rgba(122, 90, 107, 0.15) !important;
    box-shadow: 0 1px 10px rgba(122, 90, 107, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-indigo {
    background: rgba(74, 93, 122, 0.15) !important;
    box-shadow: 0 1px 10px rgba(74, 93, 122, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-brown {
    background: rgba(107, 74, 90, 0.15) !important;
    box-shadow: 0 1px 10px rgba(107, 74, 90, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}
.department-header-transparent.on-teal {
    background: rgba(90, 107, 143, 0.15) !important;
    box-shadow: 0 1px 10px rgba(90, 107, 143, 0.15), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

/* AmÃ©lioration de la lisibilitÃ© du logo et navigation sur fond ultra-transparent */
.department-header-transparent .logo-cite,
.department-header-transparent .logo-amour {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15), 0 0 8px rgba(255, 255, 255, 0.5);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.department-header-transparent .logo-tagline-header {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    color: #666;
}

.department-header-transparent .nav-link {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.department-header-transparent .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link{
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 10px;
    text-decoration: none;
    font-weight: 600;
    color: var(--color-primary-hover);
    transition: color 0.3s;
}
.nav-link::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 2px;
    width: 100%;
    background-color: rgb(31, 5, 198);
    transform: translateX(-105%);
    transition: transform 0.5s ease-in-out;
}

.nav-link:hover::before{
    transform: translateX(0);
}
.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    /* margin-left: -200px; */
    
}

.nav-link:hover {
    color: rgb(31, 5, 198);
}

.btn-contact {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.btn-contact:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}



/* Hero Section */
.hero {
    position: relative;
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}




.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    min-height: 100px;
    width: 100%;
}




.hero-title-part {
    position: absolute;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(8px);
    white-space: nowrap;
    animation: wordCycle 9s infinite;
}

.hero-title-part[data-part="1"] {
    animation-delay: 0s;
}

.hero-title-part[data-part="2"] {
    animation-delay: 3s;
    font-size: 1.1em;
}

.hero-title-part[data-part="3"] {
    animation-delay: 6s;
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both, subtlePulse 3s ease-in-out infinite 1s;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    letter-spacing: 2px;
}




/* Vision Section - Modern Layout with Images */
.vision {
    padding: 6rem 0;
    background: var(--color-white);
}

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





.vision-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.vision-main-text {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: #333;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    width: 100%;
    word-spacing: 0.05em;
    text-align: center;
    max-width: none;
}




.vision-images-grid {
    position: relative;
    height: 600px;
    width: 700px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.vision-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, z-index 0.4s ease;
}

.vision-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vision-image-card.image-1 {
    width: 280px;
    height: 340px;
    top: 0;
    left: 20px;
    z-index: 1;
    transform: rotate(-4deg);
}

.vision-image-card.image-2 {
    width: 320px;
    height: 380px;
    top: 60px;
    left: 200px;
    z-index: 2;
    transform: rotate(3deg);
}

.vision-image-card.image-3 {
    width: 280px;
    height: 340px;
    top: 180px;
    left: 420px;
    z-index: 3;
    transform: rotate(-2deg);
}

.vision-image-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* ==================================================
   VISION - MOBILE ONLY: 1 seule image (image-2) inclinée
   PC/Tablet: on garde les 3 images (style actuel)
   ================================================== */

@media (max-width: 600px) {

  /* On prépare la section vision */
  .vision {
    position: relative;
    overflow: hidden;
  }

  /* On cache image 1 et 3 */
  .vision-image-card.image-1,
  .vision-image-card.image-3 {
    display: none !important;
  }

  /* Conteneur des images : centré, incliné, en filigrane */
  .vision-images-grid {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) rotate(6deg) !important;
    width: 100% !important;
    max-width: none !important;
    opacity: 0.18 !important;
    z-index: 1 !important;
    pointer-events: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
  }

  /* Image-2 : seule carte visible, centrée, inclinée, filigrane */
  .vision-image-card.image-2 {
    position: relative !important;
    width: 260px !important;
    height: 320px !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
    pointer-events: none !important;
  }

  .vision-image-card.image-2 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Le texte doit rester au-dessus */
  .vision-text-block {
    position: relative !important;
    z-index: 5 !important;
  }
}

.vision-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.vision-cta-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

.vision-cta-btn i {
    font-size: 1.2rem;
}

.section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: sectionTitleReveal 0.8s ease-out forwards;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}




.vision .section-title {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    opacity: 0;
    animation: underlineReveal 0.6s ease-out 0.4s forwards;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Events Section */
.events {
    padding: 6rem 0;
    background: var(--color-light-gray);
}




.carousel-wrapper {
    position: relative;
    margin: 2rem 0;
}

.carousel-container {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0.75rem 0;
    transition: transform 0.5s ease;
}

/* Center single event */
.carousel-wrapper.single-event .carousel-container {
    justify-content: center;
    transform: none !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 8;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-50%) scale(1.1);
}

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

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

/* New Event Card Design */
.event-card-new {
    min-width: 280px;
    height: 340px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    background: var(--color-white);
}

.event-card-new:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.event-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.event-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Assoupli pour mieux voir les affiches des cultes */
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    transition: opacity 0.3s;
}

.event-card-new:hover .event-overlay-gradient {
    opacity: 0.85;
}

.event-image-bg {
    width: 100%;
    height: 100%;
    /* Affiche complète de l'événement (affiche non coupée) */
    object-fit: contain;
    object-position: center;
    background-color: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
}

.event-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.event-image-placeholder svg {
    width: 60%;
    height: 60%;
    opacity: 0.5;
}

.event-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem 1.5rem;
    color: var(--color-white);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.event-card-new:hover .event-badge {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.event-badge i {
    font-size: 0.8rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0;
    color: var(--color-white);
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.event-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
}

.event-detail-item i {
    font-size: 0.9rem;
    color: var(--color-primary);
    width: 16px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.event-date-full,
.event-time-range {
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.event-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.35rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.event-learn-more:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.event-learn-more i {
    transition: transform 0.3s;
}

.event-learn-more:hover i {
    transform: translateX(3px);
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: var(--color-white);
}




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

.program-item {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.program-item:hover::before {
    transform: scaleX(1);
}

.program-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon-wrapper {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(107, 45, 45, 0.1) 100%);
    padding: 2.5rem 2rem 1.5rem;
    position: relative;
}

.program-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin: 0 auto;
    display: inline-block;
    transition: all 0.4s;
    position: relative;
}

.program-item:hover .program-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--color-secondary);
}

/* IcÃ´ne partitions (Culte de cÃ©lÃ©bration) Ã  la place du cÅ“ur */
.program-icon-partitions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--color-primary);
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

.program-icon-partitions .partitions-line {
    display: inline-block;
    transition: transform 0.4s;
}

.program-item:hover .program-icon-partitions {
    color: var(--color-secondary);
}

.program-item:hover .program-icon-partitions .partitions-line:nth-child(1) { transform: translateY(-2px); }
.program-item:hover .program-icon-partitions .partitions-line:nth-child(2) { transform: translateY(0); }
.program-item:hover .program-icon-partitions .partitions-line:nth-child(3) { transform: translateY(2px); }

.program-content {
    padding: 1.5rem 2rem 2.5rem;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
}

.program-badge i {
    font-size: 0.7rem;
}

.program-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.program-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.5rem;
    background: rgba(139, 0, 0, 0.03);
    border-radius: 8px;
    transition: all 0.3s;
}

.program-item:hover .program-detail-item {
    background: rgba(139, 0, 0, 0.08);
    transform: translateX(5px);
}

.program-detail-item i {
    font-size: 1.1rem;
    color: var(--color-primary);
    width: 20px;
    text-align: center;
}

.program-day,
.program-time {
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Departments Section */
.departments {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    min-height: 500px;
}




.dept-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dept-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.dept-card-link:hover .dept-card,
.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dept-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dept-name {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: auto;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 2rem 0 1rem;
}

/* Footer Header */
.footer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0.5rem 0;
}

/* Footer Main Content */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-left: 4rem;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-newsletter .footer-address {
    margin-top: 0.5rem;
}

.footer-section-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-white);
    letter-spacing: 1px;
}

.footer-column a {
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.footer-column a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

.footer-address-section {
    margin: 2rem 0;
    text-align: left;
}

.footer-address-section .footer-address {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.footer-address-section .footer-address span {
    line-height: 1.6;
}

.footer-address {
    font-family: "Montserrat", sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.footer-address i {
    color: var(--color-gold);
    font-size: 1rem;
}

.footer-slogan-section {
    margin: 0.5rem 0;
    text-align: center;
    background: rgba(139, 0, 0, 0.3);
    padding: 0.75rem 2rem;
}

.footer-slogan {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    animation: brandPulse 4s ease-in-out infinite;
}

.footer-slogan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: scale(1.1);
}

.footer-brand {
    font-family: "Montserrat", sans-serif;
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    animation: brandPulse 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.footer-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.footer-copyright {
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Header Social Icons */
.header-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon-header {
    color: var(--color-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
}

.social-icon-header:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Page Hero Section */
.page-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1rem;
}

.breadcrumbs a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb-separator {
    margin: 0 0.5rem;
}

.breadcrumb-current {
    font-weight: 600;
}

/* Histoire Section */
.histoire-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.section-title-left {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-top: 5rem !important;
    margin-bottom: 2rem;
    text-align: center;
    white-space: nowrap;
}

.histoire-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.histoire-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.histoire-text p {
    margin-bottom: 1.5rem;
}

.histoire-text h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.histoire-text h3:first-child {
    margin-top: 0;
}

/* Verset fondateur Section */
.verset-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.verset-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.verset-text {
    padding: 3rem 2rem;
}

.verset-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.verset-reference {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 0;
}

/* Pasteur Section */

/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.section-title-center {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.mission-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

.mission-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 1rem 0;
    margin: 2rem 0;
}

.mission-card {
    min-width: 320px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(75, 0, 130, 0.1) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    border-radius: 15px;
    pointer-events: none;
}

.mission-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i:first-child {
    font-size: 3rem;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.mission-cross {
    position: absolute;
    font-size: 1.5rem;
    color: var(--color-secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.mission-heart {
    position: absolute;
    font-size: 1.2rem;
    color: var(--color-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.mission-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.mission-card-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.mission-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.pagination-dot.active {
    background: rgba(138, 43, 226, 0.8);
    transform: scale(1.2);
}

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
    align-items: stretch;
    justify-content: flex-end;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-menu.active {
    display: flex;
    opacity: 1;
}

.dropdown-menu-content {
    background: rgba(139, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 600px;
    height: 100vh;
    padding: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu.active .dropdown-menu-content {
    transform: translateX(0);
}

.dropdown-menu-header {
    background: transparent;
    padding: 2rem 2rem 1.5rem;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.dropdown-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.dropdown-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.dropdown-menu-body {
    padding: 3rem 2rem;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    overflow-y: auto;
    overflow-x: hidden;
    align-content: start;
    min-height: 0;
}

.dropdown-menu-section {
    display: flex;
    flex-direction: column;
}

.dropdown-menu-section-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
    border-bottom: none;
    line-height: 1.2;
}

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

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

.dropdown-menu-link {
    display: block;
    padding: 0.5rem 0;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
}

.dropdown-menu-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-menu-link i {
    display: none;
}

.dropdown-menu-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
    margin-top: auto;
}

.dropdown-menu-footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dropdown-menu-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: "Montserrat", sans-serif;
    transition: color 0.3s ease;
}

.dropdown-menu-footer-link:hover {
    color: #ffffff;
}

.dropdown-menu-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dropdown-menu-social a {
    color: #FFD700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.dropdown-menu-social a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* EmpÃªcher le scroll du body quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* Responsive pour mobile */

/* Mobile Menu */
.menu-toggle {
    cursor: pointer;
}

/* Responsive Event Cards */



    
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .logo-curves {
        width: 40px;
        height: 40px;
    }

    .logo-cite,
    .logo-amour {
        font-size: 1.5rem !important;
    }

    .footer-logo-content {
        align-items: center;
        text-align: center;
    }

    .footer-logo .logo-cite,
    .footer-logo .logo-amour {
        font-size: 1.5rem !important;
    }

    .social-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

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

    .header-social {
        display: none;
    }

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

    .histoire-content,
    .pasteur-content {
        grid-template-columns: 1fr;
    }

    .pasteur-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .mission-card {
        min-width: 280px;
    }

    .pasteur-buttons {
        flex-direction: column;
    }

    .btn-pasteur {
        width: 100%;
        justify-content: center;
    }

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

    .dept-image {
        height: 180px;
    }
}


/* Department Pages */
.department-main {
    padding: 5rem 0;
    background: #ffffff;
}

.page-hommes .department-main {
    background: #ffffff;
}

/* Style rÃ©utilisable pour toutes les sections */
.section-presentation {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.section-presentation-reverse {
    grid-template-columns: 1fr 1.2fr;
}

.section-presentation-reverse .section-text-content {
    order: 2;
}

.section-presentation-reverse .section-image-wrapper {
    order: 1;
}

.section-text-content {
    position: relative;
}

/* Animations professionnelles et subtiles (keyframes en bas du fichier) */

/* =========================================================
   Style inspirÃ© de l'image pour la section HERO
   Fond violet foncÃ© + Label script gris clair + Titre blanc gras
========================================================= */

/* Style global pour le hero section de tous les dÃ©partements */
body[class*="page-"] .department-hero {
    background: #583a7a !important;
    padding: 10rem 0 6rem !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Exception pour la page juniors - utilise la couleur harmonisÃ©e */
.page-juniors .department-hero {
    background: var(--color-yellow-juniors) !important;
}

/* Container pour le label et le titre avec positionnement relatif */
body[class*="page-"] .department-hero .section-text-content {
    position: relative !important;
}

/* Label "DÃ©partement" avec le mÃªme style que "Notre vision" - positionnÃ© derriÃ¨re le titre avec effet d'ombre */
body[class*="page-"] .department-hero .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #c0c0c0 !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    letter-spacing: 2px !important;
    display: block !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    line-height: 1 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    width: 100% !important;
    text-shadow: 2px 2px 0 rgba(60, 60, 60, 0.3) !important;
}

/* Titre du dÃ©partement en blanc, gras, grande police sans-serif, devant le label avec effet d'ombre */
body[class*="page-"] .department-hero .section-title-hero {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    font-size: 100px !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
    position: relative !important;
    z-index: 2 !important;
    background-color: transparent !important;
    background: transparent !important;
    text-shadow: 3px 3px 0 rgba(80, 80, 80, 0.4) !important;
}

/* Sous-titre du dÃ©partement (ex: "LES PSALMISTES DU SEIGNEUR") */
body[class*="page-"] .department-hero .section-subtitle-hero {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 42px !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: 3px !important;
    position: relative !important;
    z-index: 2 !important;
    background-color: transparent !important;
    background: transparent !important;
    text-shadow: 2px 2px 0 rgba(60, 60, 60, 0.3) !important;
}

/* Titre du dÃ©partement en blanc, gras, grande police sans-serif, devant le label */
body[class*="page-"] .department-hero .section-title-hero {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    font-size: 100px !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1 !important;
    letter-spacing: 2px !important;
    position: relative !important;
    z-index: 2 !important;
    background-color: transparent !important;
    background: transparent !important;
}

/* Description en blanc */
body[class*="page-"] .department-hero .section-description {
    color: #FFFFFF !important;
    font-family: "Montserrat", sans-serif !important;
}

/* Responsive pour le hero */



/* =========================================================
   Style inspirÃ© de l'image pour les titres des sections
   Label gris foncÃ© + Titre rouge avec effet d'ombre
========================================================= */

/* Style pour les labels (petit texte gris foncÃ©) - AppliquÃ© Ã  toutes les pages SAUF hero */
/* Style uniforme pour TOUS les labels de section dans TOUS les dÃ©partements */
body[class*="page-"] .department-main .section-label,
body[class*="page-"] .department-vision .section-label,
body[class*="page-"] .department-eligibility .section-label,
body[class*="page-"] .department-join .section-label,
body[class*="page-"] .department-leaders .leader-label,
body[class*="page-"] .department-teams .section-label,
.department-main .section-label,
.department-vision .section-label,
.department-eligibility .section-label,
.department-join .section-label,
.department-leaders .leader-label,
.department-teams .section-label,
.page-hommes .department-main .section-label,
.page-hommes .department-vision .section-label,
.page-hommes .department-eligibility .section-label,
.page-hommes .department-join .section-label,
.page-femmes .department-main .section-label,
.page-femmes .department-vision .section-label,
.page-femmes .department-eligibility .section-label,
.page-femmes .department-join .section-label,
.page-jeunes-adultes .department-main .section-label,
.page-jeunes-adultes .department-vision .section-label,
.page-jeunes-adultes .department-eligibility .section-label,
.page-jeunes-adultes .department-join .section-label,
.page-medias .department-main .section-label,
.page-medias .department-vision .section-label,
.page-medias .department-eligibility .section-label,
.page-medias .department-join .section-label,
.page-medias .department-teams .section-label,
.page-ados .department-main .section-label,
.page-ados .department-vision .section-label,
.page-ados .department-eligibility .section-label,
.page-ados .department-join .section-label,
.page-juniors .department-main .section-label,
.page-juniors .department-vision .section-label,
.page-juniors .department-eligibility .section-label,
.page-juniors .department-join .section-label,
.page-chorale .department-main .section-label,
.page-chorale .department-vision .section-label,
.page-chorale .department-eligibility .section-label,
.page-chorale .department-join .section-label,
.page-intercession .department-main .section-label,
.page-intercession .department-vision .section-label,
.page-intercession .department-eligibility .section-label,
.page-intercession .department-join .section-label,
.page-pastoral .department-main .section-label,
.page-pastoral .department-leaders .section-label,
.page-evangelisation .department-main .section-label,
.page-evangelisation .department-vision .section-label,
.page-evangelisation .department-eligibility .section-label,
.page-evangelisation .department-join .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.5rem !important;
    opacity: 1 !important;
    font-style: normal !important;
}

/* Style pour les titres principaux (grand texte rouge avec effet d'ombre) - AppliquÃ© Ã  toutes les pages */
body[class*="page-"] .department-main .section-title-large,
body[class*="page-"] .department-vision .section-title-large,
body[class*="page-"] .department-eligibility .section-title-large,
body[class*="page-"] .department-leaders .leader-name-large,
.department-main .section-title-large,
.department-vision .section-title-large,
.department-eligibility .section-title-large,
.department-join .section-title-large,
.department-leaders .leader-name-large {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    font-size: 85px !important;
    color: #8B0000 !important;
    line-height: 1 !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    position: relative !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    display: inline-block !important;
    text-shadow: 4px 4px 0 rgba(150, 150, 150, 0.3) !important;
}

/* Responsive pour les titres */



/* =========================================================
   Styles pour page des hommes
========================================================= */

.page-hommes .department-hero {
    background: #8B0000;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.page-hommes .department-hero .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 150px;
    color: #ffffff;
    opacity: 0.5;
}

.page-hommes .department-hero .section-title-hero {
    margin-top: -100px;
    font-family: "Cal Sans", sans-serif;
    font-style: normal;
    font-size: 7.5rem;
    color: #ffffff;
    z-index: 2;
}

.page-hommes .department-hero .section-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    max-width: 720px;
    text-align: justify;
}

/* =========================================================
   Sections gÃ©nÃ©rales
========================================================= */

.page-hommes .department-main,
.page-hommes .department-leaders,
.page-hommes .department-vision,
.page-hommes .department-eligibility,
.page-hommes .department-join {
    background: #ffffff;
}

.page-hommes .department-activities {
    background: #4B6070;
}

/* =========================================================
   Labels manuscrits
========================================================= */

.page-hommes .department-main .section-label,
.page-hommes .department-vision .section-label,
.page-hommes .department-eligibility .section-label,
.page-hommes .department-join .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 95px;
    color: #4593e7;
    opacity: 0.4;
}

/* =========================================================
   Titres & textes
========================================================= */

.page-hommes .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: #8B0000;
    line-height: 1;
    margin-top: -65px !important;
}

.page-hommes .department-main .section-description,
.page-hommes .department-vision .section-description,
.page-hommes .department-join .section-description,
.page-hommes .department-eligibility .section-description {
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-size: large;
    max-width: 700px;
    text-align: justify;
}

.page-hommes .section-description strong {
    color: #8B0000;
}

/* =========================================================
   Leaders
========================================================= */

.page-hommes .department-leaders {
    padding: 6rem 2rem;
}

.page-hommes .department-leaders .leader-presentation {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.page-hommes .department-leaders .leader-text-content {
    max-width: 600px;
    flex: 1 1 500px;
    text-align: left;
}

.page-hommes .department-leaders .leader-image-wrapper {
    flex: 1 1 500px;
    max-width: 900px;
    height: 900px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hommes .department-leaders .leader-image-wrapper img {
    width: 150%;
    height: 120%;
    object-fit: cover;
    border-radius: 12px;
}

.page-hommes .leader-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 95px;
    color: #52bdef;
    opacity: 0.4;
}

.page-hommes .leader-name-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: #8B0000;
    margin-top: -90px;
}

.page-hommes .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: var(--color-blue-hommes);
}


/* =========================================================
   Ã‰ligibilitÃ©
========================================================= */

.page-hommes .eligibility-list-simple {
    margin-top: 2rem;
}

.page-hommes .eligibility-list-simple li {
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 1rem;
}

.page-hommes .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-hommes .eligibility-list-simple li:hover {
    color: #8B0000;
}

/* =========================================================
   Bouton
========================================================= */

.page-hommes .btn-contact-dept {
    font-family: "Montserrat", sans-serif;
    background: #4B6070;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-hommes .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}

/* =========================================================
   ActivitÃ©s
========================================================= */

.page-hommes .activity-title {
    font-family: "Cal Sans", sans-serif;
    color: #ffffff;
}

.page-hommes .activity-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    text-align: justify;
}


/* =========================================================
   Styles pour page des femmes â€“ Rose harmonisÃ©
========================================================= */

.page-femmes .department-hero {
    background: var(--color-pink-femmes);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.page-femmes .department-hero .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 150px;
    color: #ffffff;
    opacity: 0.5;
}

.page-femmes .department-hero .section-title-hero {
    margin-top: -100px;
    font-family: "Cal Sans", sans-serif;
    font-size: 7.5rem;
    color: #ffffff;
    z-index: 2;
}

.page-femmes .department-hero .section-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    max-width: 720px;
    text-align: justify;
}

/* =========================================================
   Sections gÃ©nÃ©rales
========================================================= */

.page-femmes .department-main,
.page-femmes .department-leaders,
.page-femmes .department-vision,
.page-femmes .department-eligibility,
.page-femmes .department-join {
    background: #ffffff;
}

.page-femmes .department-activities {
    background: #4B6070;
}

/* =========================================================
   Labels manuscrits
========================================================= */

.page-femmes .department-main .section-label,
.page-femmes .department-vision .section-label,
.page-femmes .department-eligibility .section-label,
.page-femmes .department-join .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    opacity: 1 !important;
}

/* =========================================================
   Titres
========================================================= */

.page-femmes .department-main .section-title-large,
.page-femmes .department-join .section-title-large,
.page-femmes .department-vision .section-title-large,
.page-femmes .department-eligibility .section-title-large {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    font-size: 85px !important;
    line-height: 1 !important;
    margin-top: 0 !important;
    color: #8B0000 !important;
    text-transform: uppercase !important;
}

.page-femmes .department-join .section-description {
    font-family: "Montserrat", sans-serif !important;
    color: #1a1a1a !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

.page-femmes .department-leaders .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #8B0000;
}

/* =========================================================
   Textes
========================================================= */

.page-femmes .section-description {
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-size: large;
    max-width: 700px;
    text-align: justify;
}

.page-femmes .section-description strong {
    color: #8B0000;
}

/* =========================================================
   Images de section
========================================================= */

.page-femmes .section-image-wrapper {
    width: 110%;
    height: 620px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-femmes .section-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   Leaders â€“ CORRIGÃ‰
========================================================= */

.page-femmes .department-leaders {
    padding: 6rem 2rem;
}

.page-femmes .department-leaders .leader-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.page-femmes .department-leaders .leader-text {
    max-width: 600px;
    flex: 1 1 500px;
    text-align: left;
}

.page-femmes .department-leaders .leader-image-wrapper {
    flex: 1 1 500px;
    max-width: 600px;
    height: 600px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-femmes .department-leaders .leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.page-femmes .leader-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 95px;
    color: #8B0000;
    opacity: 0.7;
}

.page-femmes .leader-name-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: #8B0000;
    margin-top: -90px;
}

.page-femmes .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: var(--color-pink-femmes);
}

/* =========================================================
   Ã‰ligibilitÃ©
========================================================= */

.page-femmes .eligibility-list-simple li {
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 1rem;
}

.page-femmes .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-femmes .eligibility-list-simple li:hover {
    color: #8B0000;
}

/* =========================================================
   Bouton
========================================================= */

.page-femmes .btn-contact-dept {
    font-family: "Montserrat", sans-serif;
    background: #4B6070 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 1rem 2.5rem;
    border-radius: 10px !important;
    transition: all 0.3s ease;
}

.page-femmes .btn-contact-dept:hover {
    background: #3a4d5a !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.4);
}

/* =========================================================
   ActivitÃ©s
========================================================= */

.page-femmes .activity-title {
    font-family: "Cal Sans", sans-serif;
    color: #ffffff;
}

.page-femmes .activity-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    text-align: justify;
}

/* =========================================================
   Styles pour page des jeunes adultes â€“ DÃ©gradÃ© bleu-bordeaux
========================================================= */


/* Styles pour page des jeunes adultes - DÃ©gradÃ© bleu-bordeaux */
.page-jeunes-adultes .department-hero {
    background: var(--color-jeunes-gradient);
}

.page-jeunes-adultes .department-hero .section-label {
    color: #ffffff;
}

.page-jeunes-adultes .department-hero .section-title-hero {
    color: #ffffff;
    font-size: 7.5rem;
}

.page-jeunes-adultes .department-hero .section-description {
    color: #ffffff;
}

.page-jeunes-adultes .department-main {
    background: #ffffff;
}

.page-jeunes-adultes .department-leaders {
    background: #ffffff;
    padding: 5rem 0;
}

.page-jeunes-adultes .department-leaders .leader-presentation {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-jeunes-adultes .department-leaders .leader-text-content {
    max-width: 600px;
    text-align: left;
}

.page-jeunes-adultes .department-leaders .leader-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-jeunes-adultes .department-leaders .leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
}

/* Responsive pour la section des responsables des jeunes adultes */


.page-jeunes-adultes .department-vision {
    background: #ffffff;
}

.page-jeunes-adultes .department-eligibility {
    background: #ffffff;
}

.page-jeunes-adultes .department-join {
    background: #ffffff;
}

.page-jeunes-adultes .department-activities {
    background: #4B6070;
}

.page-jeunes-adultes .section-title-large {
    color: #8B0000;
}

.page-jeunes-adultes .section-description {
    color: #333;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: justify;
}

.page-jeunes-adultes .department-vision .section-description {
    font-size: 1.5rem;
    line-height: 1.9;
}

.page-jeunes-adultes .department-main .section-description {
    font-size: 1.4rem;
    line-height: 1.9;
    text-align: justify;
}

.page-jeunes-adultes .department-main .section-image-wrapper {
    background: transparent !important;
    overflow: visible !important;
}

.page-jeunes-adultes .activity-image {
    height: 450px !important;
    min-height: 450px;
    aspect-ratio: 16/9;
}

.page-jeunes-adultes .activity-image img {
    object-fit: cover;
    object-position: center 30% !important;
}

.page-jeunes-adultes .leader-image-wrapper img {
    object-position: center 30% !important;
}

.page-jeunes-adultes .section-description strong {
    color: #8B0000;
}

.page-jeunes-adultes .leader-label {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.page-jeunes-adultes .leader-name-large {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 4.5rem;
    color: #8B0000;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-jeunes-adultes .leader-name-decorative {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5.5rem;
    font-weight: 900;
    color: rgba(150, 150, 150, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: -1;
    font-family: "Montserrat", sans-serif;
}

.page-jeunes-adultes .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.page-jeunes-adultes .department-leaders .section-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-jeunes-adultes .eligibility-list-simple li {
    color: #333;
}

.page-jeunes-adultes .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-jeunes-adultes .eligibility-list-simple li:hover {
    color: #8B0000;
}

.page-jeunes-adultes .btn-contact-dept {
    background: #4B6070;
    color: #ffffff;
    border: none;
}

.page-jeunes-adultes .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}

.page-jeunes-adultes .activity-title {
    color: #ffffff;
}

.page-jeunes-adultes .activity-description {
    color: #ffffff;
    text-align: justify;
}

.activity-sublist {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.activity-sublist li {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.activity-sublist li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
}

.page-jeunes-adultes .activity-sublist li {
    color: #ffffff;
}

.page-jeunes-adultes .activity-sublist li::before {
    color: #ffffff;
}

/* =========================================================
   PAGE MÃ‰DIAS â€” HERO
========================================================= */
.page-medias .department-hero {
    background: var(--color-purple-medias) !important;
}

/* S'assurer que le hero section reste alignÃ© Ã  gauche comme tous les autres dÃ©partements */
.page-medias .department-hero .section-presentation {
    grid-template-columns: 1.2fr 1fr !important;
    justify-items: start !important;
    max-width: 1100px !important;
}

.page-medias .department-hero .section-text-content {
    text-align: left !important;
}

/* Le dÃ©partement mÃ©dias utilise maintenant les styles globaux pour le label et le titre */
/* Seul le background violet est spÃ©cifique au dÃ©partement */

/* =========================================================
   STRUCTURE DES SECTIONS
========================================================= */
.page-medias .department-main,
.page-medias .department-vision,
.page-medias .department-eligibility,
.page-medias .department-join,
.page-medias .department-leaders,
.page-medias .department-teams {
    background: #ffffff;
}

/* =========================================================
   LABELS DE SECTION
========================================================= */
.page-medias .department-main .section-label,
.page-medias .department-vision .section-label,
.page-medias .department-eligibility .section-label,
.page-medias .department-join .section-label,
.page-medias .department-leaders .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 100px;
    color: var(--color-purple-medias);
    opacity: 0.5;
}

/* Label "Nos Ã©quipes" avec le mÃªme style que "Responsable" - Montserrat */
.page-medias .department-teams .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #4a4a4a !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 0.5rem !important;
    opacity: 1 !important;
}

/* Le titre utilise la mÃªme police que tous les autres titres */
/* Le titre utilise exactement le mÃªme style que "NOTRE VISION" - hÃ©rite du style global */
.page-medias .department-teams .section-title-large {
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    /* Tous les autres styles (font-family, font-weight, font-size, color, text-shadow, etc.) 
       hÃ©ritent du style global .page-medias .section-title-large */
}

/* =========================================================
   TITRES DE SECTION
========================================================= */
.page-medias .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 70px;
    color: #8B0000;
    line-height: 1;
    margin-top: -65px;
    text-shadow: 4px 4px 0 rgba(150, 150, 150, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================================
   TEXTE
========================================================= */
.page-medias .section-description {
    font-family: "Montserrat", sans-serif;
    font-size: large;
    color: #333;
    max-width: 700px;
    text-align: justify;
}

.page-medias .section-description strong {
    color: #8B0000;
}

/* =========================================================
   LEADERS
========================================================= */
.page-medias .department-leaders .leader-presentation{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* =========================================================
   SECTION RESPONSABLE â€“ STRUCTURE UNIFORME POUR TOUS LES DÃ‰PARTEMENTS
========================================================= */
.leader-section {
    padding: 4rem 0;
    background: #ffffff;
}

.leader-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

/* --------- TEXTE Ã€ GAUCHE --------- */
.leader-text {
    position: relative;
}

.leader-label {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 0.75rem;
    opacity: 1;
}

/* Style uniforme pour le label RESPONSABLE dans la section leader-section */
.leader-section .leader-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 32px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #1a1a1a !important;
    opacity: 1 !important;
}

.leader-name {
    position: relative;
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    text-transform: uppercase;
    color: #8B0000;
    line-height: 1;
    margin: 0 0 1rem 0;
    z-index: 1;
    letter-spacing: 1px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: inline-block;
    white-space: nowrap;
}

/* Nom en fond trÃ¨s clair derriÃ¨re (effet ghost/watermark) */
.leader-name-ghost {
    font-family: "Cal Sans", sans-serif;
    font-size: 110px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.06);
    position: absolute;
    top: -20px;
    left: 0;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    text-transform: uppercase;
    z-index: -1;
    letter-spacing: 0.5px;
}

.leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.leader-bio {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #333;
    max-width: 520px;
}

/* --------- Responsable : titre AVANT la photo, puis photo, puis bio (pas d’overlay sur la photo) --------- */
.leader-section {
    display: flex;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
}
.leader-section .leader-layout {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    text-align: center;
}
.leader-section .leader-text {
    display: block;
}
.leader-section .leader-label {
    display: block !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.25rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #1a1a1a !important;
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
}
.leader-section .leader-name {
    display: block !important;
    position: relative !important;
    color: #8B0000 !important;
    font-family: "Cal Sans", sans-serif !important;
    font-weight: 900 !important;
    font-size: 2rem !important;
    line-height: 1.25 !important;
    margin: 0 0 0.5rem 0 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
}
.leader-section .leader-name .leader-name-ghost {
    display: none !important;
}
.leader-section .leader-role {
    display: block !important;
    color: #1a1a1a !important;
    font-family: "Montserrat", sans-serif !important;
    font-size: 0.95rem !important;
    margin: 0 0 0 !important;
    padding: 0 !important;
    font-weight: 600;
    white-space: nowrap !important;
}
.leader-section .leader-photo {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.leader-section .leader-photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    aspect-ratio: 3 / 4;
    width: 100%;
    max-width: 420px;
}
.leader-section .leader-photo-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.leader-section .leader-photo-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.5s ease;
}
.leader-section .leader-photo-card:hover img {
    transform: scale(1.05);
}
.leader-section .leader-bio {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.6;
    text-align: left;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.5));
    pointer-events: none;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 !important;
    display: flex;
    align-items: flex-end;
}
.leader-section .leader-photo-card:hover .leader-bio {
    transform: translateY(0);
}

.leader-photo-card {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 3 / 4;
    border-radius: 0 22px 22px 0;
    overflow: hidden;
    background: #f3f3f3;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

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

/* Cadrage photo Anne-Esther (Juniors) â€“ Ã©viter de couper la tÃªte */
.leader-photo-card.leader-anne-esther img {
    object-position: center 25%;
}

/* Cadrage photo responsable Hommes (Dimitri Tchami) â€“ centrer sans couper la tÃªte */
.leader-photo-card.leader-hommes img {
    object-position: 40% 22%;
}

/* --------- VERSION MOBILE --------- */

.page-medias .department-leaders .leader-text-content {
    max-width: 600px;
    flex: 1 1 500px;
    text-align: left;
}

.page-medias .department-leaders .leader-image-wrapper {
    flex: 1 1 500px;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Le leader-label utilise maintenant les styles globaux Montserrat */

.page-medias .leader-name-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: #8B0000;
    margin-top: -90px;
}

.page-medias .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: large;
    color: #333;
}

/* =========================================================
   Ã‰LIGIBILITÃ‰
========================================================= */
.page-medias .eligibility-list-simple {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.page-medias .eligibility-list-simple li {
    color: #333;
    text-align: left;
}

.page-medias .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-medias .eligibility-list-simple li:hover {
    color: #8B0000;
}

/* =========================================================
   BOUTON
========================================================= */
.page-medias .btn-contact-dept {
    background: #4B6070;
    color: #ffffff;
    border: none;
}

.page-medias .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}

/* =========================================================
   ACTIVITÃ‰S
========================================================= */
.page-medias .department-activities {
    background: #4B6070;
}

.page-medias .activity-title,
.page-medias .activity-description {
    color: #ffffff;
    text-align: justify;
}

/* =========================================================
   SECTIONS SANS IMAGES - CENTRER LE CONTENU
   (Sauf hero section et section join qui restent avec leur structure normale)
========================================================= */
.page-medias .department-main .section-presentation,
.page-medias .department-vision .section-presentation,
.page-medias .department-eligibility .section-presentation {
    grid-template-columns: 1fr;
    max-width: 900px;
    justify-items: center;
}

.page-medias .department-main .section-text-content,
.page-medias .department-vision .section-text-content,
.page-medias .department-eligibility .section-text-content {
    text-align: center;
    width: 100%;
}

.page-medias .department-main .section-description,
.page-medias .department-vision .section-description,
.page-medias .department-eligibility .section-description {
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   Ã‰QUIPES MÃ‰DIAS
========================================================= */
.page-medias .department-teams {
    padding: 5rem 0;
    background: #ffffff;
}

/* Section teams centrÃ©e et uniforme avec les autres sections */
.page-medias .department-teams .section-presentation {
    grid-template-columns: 1fr;
    max-width: 900px;
    justify-items: center;
}

.page-medias .department-teams .section-text-content {
    text-align: center;
    width: 100%;
}

.page-medias .department-teams .section-description {
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.team-card {
    background: rgba(107, 45, 45, 0.15) !important;
    backdrop-filter: blur(25px) saturate(180%) brightness(1.0);
    -webkit-backdrop-filter: blur(25px) saturate(180%) brightness(1.0);
    border: 2px solid rgba(107, 45, 45, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 1px 10px rgba(107, 45, 45, 0.15), 
                0 1px 0 rgba(255, 255, 255, 0.2) inset;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(107, 45, 45, 0.25), 
                0 1px 0 rgba(255, 255, 255, 0.2) inset;
    border-color: rgba(107, 45, 45, 0.4);
    background: rgba(107, 45, 45, 0.2) !important;
}

/* Styles spÃ©cifiques pour la page mÃ©dias - effet hover amÃ©liorÃ© */
.page-medias .team-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-medias .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.10);
}

.team-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #8B0000;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-title .team-keyword {
    display: block;
    font-size: 0.75em;
    color: var(--color-purple-medias);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-mission {
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

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

.team-tasks li {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    color: #666;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.team-tasks li::before {
    content: "\25B8";
    position: absolute;
    left: 0;
    color: var(--color-purple-medias);
    font-weight: bold;
    font-size: 1rem;
}

.team-tasks li:hover {
    color: #8B0000;
    padding-left: 1.8rem;
    transition: all 0.2s ease;
}




/* =========================================================
   PAGE ADOS â€” HERO
========================================================= */
.page-ados .department-hero {
    background: rgb(180, 120, 10);
}

.page-ados .department-hero .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 100px;
    color: #ffffff;
    opacity: 0.5;
}

.page-ados .department-hero .section-title-hero {
    margin-top: -100px;
    font-family: "Cal Sans", sans-serif;
    font-size: 6rem;
    color: #ffffff;
    z-index: 2;
}

.page-ados .department-hero .section-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    text-align: justify;
}

/* =========================================================
   STRUCTURE DES SECTIONS
========================================================= */
.page-ados .department-main,
.page-ados .department-vision,
.page-ados .department-eligibility,
.page-ados .department-join,
.page-ados .department-leaders {
    background: #ffffff;
}

/* =========================================================
   MAIN â€” DISPOSITION HORIZONTALE (CORRECTION)
========================================================= */
.page-ados .department-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

/* Chaque bloc = une colonne */
.page-ados .department-main > * {
    flex: 1;
}

/* Nettoyage des espacements parasites */
.page-ados .department-main,
.page-ados .department-main .container,
.page-ados .department-main .section-presentation,
.page-ados .department-main .section-text-content {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* =========================================================
   LABELS DE SECTION
========================================================= */
.page-ados .department-main .section-label,
.page-ados .department-vision .section-label,
.page-ados .department-eligibility .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 95px;
    color: rgb(180, 120, 10);
    opacity: 0.5;
}

/* Fix pour la section Rejoindre - label normal */
.page-ados .department-join .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: #555555 !important;
    opacity: 1 !important;
    margin-bottom: 0.75rem !important;
}

/* =========================================================
   TITRES DE SECTION
========================================================= */
.page-ados .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 700;
    color: #8B0000;
    margin-top: -90px !important;
    font-size: 70px;
}

/* Exclure la section Rejoindre de la marge nÃ©gative */
.page-ados .department-join .section-title-large {
    margin-top: 0 !important;
}

/* Fix pour la section Rejoindre - titre sans marge nÃ©gative et z-index correct */
.page-ados .department-join .section-title-large {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    font-size: 72px !important;
    color: #8B0000 !important;
    text-transform: uppercase !important;
    line-height: 1.05 !important;
    margin: 0 0 1rem 0 !important;
    margin-top: 0 !important;
    text-align: left !important;
    text-shadow: 4px 4px 0 rgba(150, 150, 150, 0.3) !important;
    position: relative !important;
    z-index: 2 !important;
}

/* S'assurer que le label ne crÃ©e pas de chevauchement */
.page-ados .department-join .section-label {
    position: relative !important;
    z-index: 1 !important;
    opacity: 1 !important;
}

/* =========================================================
   TEXTE
========================================================= */
.page-ados .section-description {
    font-family: "Montserrat", sans-serif;
    color: #333;
    text-align: justify;
}

.page-ados .section-description strong {
    color: #8B0000;
}

/* =========================================================
   LEADERS
========================================================= */
.page-ados .leader-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 85px;
    color: rgb(180, 120, 10);
    opacity: 0.5;
}

.page-ados .leader-name-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: #8B0000;
    margin-top: -90px;
}

.page-ados .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #333;
}

.page-ados .department-leaders .leader-presentation {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.page-ados .department-leaders .leader-text-content {
    max-width: 600px;
    flex: 1 1 500px;
    text-align: left;
}

.page-ados .department-leaders .leader-image-wrapper {
    flex: 1 1 500px;
    max-width: 900px;
    height: 700px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-ados .department-leaders .leader-image-wrapper img {
    width: 150%;
    height: 120%;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================================================
   ELIGIBILITÃ‰
========================================================= */
.page-ados .eligibility-list-simple li {
    color: #333;
}

.page-ados .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-ados .eligibility-list-simple li:hover {
    color: #8B0000;
}

/* =========================================================
   BOUTON
========================================================= */
.page-ados .btn-contact-dept {
    background: #4B6070;
    color: #ffffff;
    border: none;
}

.page-ados .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}

/* =========================================================
   ACTIVITÃ‰S
========================================================= */
.page-ados .department-activities {
    background: #4B6070;
}

.page-ados .activity-title,
.page-ados .activity-description {
    color: #ffffff;
    text-align: justify;
}


/* =========================================================
   Styles pour page des juniors - Jaune / Terre
========================================================= */

.page-juniors .department-hero {
    background: var(--color-yellow-juniors) !important;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.page-juniors .department-hero .section-text-content .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 150px;
    color: #b5acac;
    opacity: 0.5;
}

.page-juniors .department-hero .section-title-hero {
    margin-top: -100px;
    font-family: "Cal Sans", sans-serif;
    font-style: normal;
    font-size: 8rem;
    color: #ffffff;
    z-index: 2;
}

.page-juniors .department-hero .section-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    max-width: 720px;
    text-align: justify;
}

/* =========================================================
   Sections gÃ©nÃ©rales
========================================================= */

.page-juniors .department-main,
.page-juniors .department-leaders,
.page-juniors .department-vision,
.page-juniors .department-eligibility,
.page-juniors .department-join {
    background: #ffffff;
}

.page-juniors .department-activities {
    background: #4B6070;
}

/* =========================================================
   MAIN / VISION
========================================================= */

.page-juniors .department-main {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.page-juniors .department-main .container,
.page-juniors .department-main .section-presentation,
.page-juniors .department-main .section-text-content,
.page-juniors .department-main .section-description {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.page-juniors .department-main .section-description,
.page-juniors .department-vision .section-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #333;
    max-width: 700px;
    text-align: justify;
}

/* =========================================================
   Labels manuscrits
========================================================= */

.page-juniors .department-main .section-label,
.page-juniors .department-vision .section-label,
.page-juniors .department-eligibility .section-label,
.page-juniors .department-join .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 95px;
    color: var(--color-yellow-juniors);
    text-transform: none;
    opacity: 0.5;
}

/* =========================================================
   Titres
========================================================= */

.page-juniors .section-title-large {
    font-family: "Cal Sans", sans-serif;
    color: rgb(107, 4, 4);
    margin-top: -90px !important;
    font-size: 4.5rem;
}

.page-juniors .department-hero .section-title-large {
    font-family: "Cal Sans", sans-serif;
    color: white;
    margin-top: -130px !important;
}

/* =========================================================
   Leaders
========================================================= */

.page-juniors .leader-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 120px;
    color: var(--color-yellow-juniors);
    opacity: 0.5;
}

.page-juniors .leader-name-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 60px;
    color: rgb(97, 4, 4);
    margin-top: -90px;
}

.page-juniors .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #333;
}

.page-juniors .department-leaders .leader-image-wrapper {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 20px;
}

.page-juniors .department-leaders .leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   Ã‰ligibilitÃ©
========================================================= */

.page-juniors .eligibility-list-simple {
    margin-top: 2rem;
}

.page-juniors .eligibility-list-simple li {
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 1rem;
}

.page-juniors .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-juniors .eligibility-list-simple li:hover {
    color: #8B0000;
}

/* =========================================================
   Bouton
========================================================= */

.page-juniors .btn-contact-dept {
    font-family: "Montserrat", sans-serif;
    background: #4B6070;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-juniors .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}

/* =========================================================
   ActivitÃ©s
========================================================= */

.page-juniors .activity-title {
    font-family: "Cal Sans", sans-serif;
    color: #ffffff;
}

.page-juniors .activity-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    text-align: justify;
}

/* =========================================================
   Styles pour page de la chorale 
========================================================= */

.page-chorale .department-hero {
    position: relative;
    background: rgb(96, 5, 22);
    padding: 10rem 0 6rem;
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.page-chorale .section-image-wrapper {
    width: 110%;
    height: 620px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-chorale .department-hero .section-image-wrapper {
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-chorale .department-hero .section-label {
    font-family: "Corinthia", cursive;
    font-size: 9.5rem;
    font-style: normal;
    text-transform: none;
    color: #ffffff;
    opacity: 0.5;
}

.page-chorale .department-hero .section-title-hero {
    margin-top: -100px;
    font-family: "Cal Sans", sans-serif;
    font-style: normal;
    font-size: 5rem;
    line-height: 1;
    color: #ffffff;
    z-index: 2;
}

.page-chorale .department-hero .section-description {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    color: #ffffff;
    max-width: 600px;
    text-align: justify;
}

/* =========================================================
   Sections gÃ©nÃ©rales
========================================================= */

.page-chorale .department-main,
.page-chorale .department-leaders,
.page-chorale .department-vision,
.page-chorale .department-eligibility,
.page-chorale .department-join {
    background: #ffffff;
}

.page-chorale .department-activities {
    background: #4B6070;
}

/* =========================================================
   Labels manuscrits
========================================================= */

.page-chorale .department-main .section-label,
.page-chorale .department-vision .section-label,
.page-chorale .department-eligibility .section-label,
.page-chorale .department-join .section-label {
    font-family: "Corinthia", cursive;
    font-style: normal;
    text-transform: none;
    color: #531a1a;
    opacity: 0.5;
}

.page-chorale .department-main .section-label {
    font-size: 8rem;
}

.page-chorale .department-vision .section-label,
.page-chorale .department-eligibility .section-label,
.page-chorale .department-join .section-label {
    font-size: 8rem;
}

/* =========================================================
   Titres & textes
========================================================= */

.page-chorale .department-main .section-title-large,
.page-chorale .department-vision .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: rgb(96, 5, 22);
    line-height: 1;
    margin-top: -100px !important;
}

.page-chorale .department-eligibility .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 80px;
    line-height: 1;
    color: rgb(96, 5, 22);
    margin-top: -100px !important;
}

.page-chorale .department-join .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 800;
    font-size: 90px;
    color: rgb(96, 5, 22);
    line-height: 5rem;
    line-height: 1;
    margin-top: -90px !important;
}

.page-chorale .department-main .section-description,
.page-chorale .department-vision .section-description,
.page-chorale .department-join .section-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #333;
    font-size: large;
    max-width: 700px;
    text-align: justify;
}

.page-chorale .section-description strong {
    color: #8B0000;
}

/* =========================================================
   Leaders
========================================================= */

.page-chorale .department-leaders .leader-label {
    font-family: "Corinthia", cursive;
    font-style: normal;
    font-size: 8rem;
    color: #531a1a;
    opacity: 0.5;
}

.page-chorale .leader-name-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: rgb(96, 5, 22);
    margin-top: -125px;
}

.page-chorale .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #333;
}

.page-chorale .department-leaders .leader-presentation {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.page-chorale .department-leaders .leader-text-content {
    max-width: 600px;
    flex: 1 1 500px;
    text-align: left;
}

.page-chorale .department-leaders .leader-image-wrapper {
    flex: 1 1 500px;
    max-width: 900px;
    height: 700px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-chorale .department-leaders .leader-image-wrapper img {
    width: 150%;
    height: 120%;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================================================
   Ã‰ligibilitÃ©
========================================================= */

.page-chorale .eligibility-list-simple {
    margin-top: 2rem;
}

.page-chorale .eligibility-list-simple li {
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 1rem;
}

.page-chorale .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-chorale .eligibility-list-simple li:hover {
    color: #8B0000;
}

/* =========================================================
   Bouton
========================================================= */

.page-chorale .btn-contact-dept {
    font-family: "Montserrat", sans-serif;
    background: #4B6070;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-chorale .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}


/* =========================================================
   ACTIVITÃ‰S
========================================================= */
.page-chorale .department-activities {
    background: #4B6070;
}

.page-chorale .activity-title,
.page-chorale .activity-description {
    color: #ffffff;
    text-align: justify;
}

/* =========================================================
   IMAGES Dâ€™ACTIVITÃ‰S â€” STYLE MODERNE
========================================================= */
.page-chorale .activity-image {
    position: relative;
    padding: 8px;
    border-radius: 25px;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );

    border: 3px solid rgba(255, 255, 255, 0.3);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);

    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-chorale .activity-image::before {
    content: "";
    position: absolute;
    inset: -2px;

    border-radius: 25px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1)
    );

    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.page-chorale .activity-image:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-chorale .activity-image:hover::before {
    opacity: 1;
}

.page-chorale .activity-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: contain;
    object-position: center;

    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-chorale .activity-image:hover img {
    transform: scale(1.05);
}

/* =========================================================
   PAGE INTERCESSION â€“ INDIGO HARMONISÃ‰
========================================================= */

/* =========================================================
   HERO â€“ STRUCTURE COMPLÃˆTE
========================================================= */

.page-intercession .department-hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.page-intercession .department-hero .section-label {
    font-family: "Corinthia", cursive;
    font-style: normal;
    text-transform: none;
    font-size: 8.5rem;
    opacity: 0.5;
}

.page-intercession .department-hero .section-title-hero {
    font-family: "Cal Sans", sans-serif;
    color: #ec9397;
    font-size: 7rem;
    margin-top: -130px;
    z-index: 2;
}

.page-intercession .department-hero .section-description {
    font-family: "Montserrat", sans-serif;
    color: #1a1a1a !important;
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    font-weight: 400 !important;
    max-width: 900px;
    text-align: justify !important;
}

/* =========================================================
   LABELS MANUSCRITS (SECTIONS INTERNES)
========================================================= */

.page-intercession .department-main .section-label,
.page-intercession .department-vision .section-label,
.page-intercession .department-eligibility .section-label,
.page-intercession .department-join .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    opacity: 1 !important;
}

.page-intercession .department-vision .section-label,
.page-intercession .department-eligibility .section-label,
.page-intercession .department-join .section-label,
.page-intercession .department-main .section-label {
    font-size: 22px !important;
}

/* =========================================================
   TITRES PRINCIPAUX
========================================================= */

.page-intercession .department-main .section-title-large,
.page-intercession .department-vision .section-title-large,
.page-intercession .department-eligibility .section-title-large {
    font-family: "Cal Sans", sans-serif;
    color: #ec9397;
    font-weight: 900;
    font-size: 80px;
    margin-top: -100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    line-height: 5rem;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.page-intercession .department-join .section-title-large {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    font-size: 85px !important;
    color: #8B0000 !important;
    text-transform: uppercase !important;
    margin-top: 0 !important;
    line-height: 1 !important;
}

/* =========================================================
   TEXTES
========================================================= */

.page-intercession .department-join {
    background: #ffffff !important;
}

.page-intercession .department-vision {
    background: #ffffff !important;
}

.page-intercession .department-main {
    padding: 10rem 0 6rem !important;
}


.page-intercession .department-join .section-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    max-width: 900px;
    color: #1a1a1a !important;
    text-align: justify !important;
}

.page-intercession .btn-contact-dept {
    background: #4B6070 !important;
    color: #ffffff !important;
    border: none !important;
}

.page-intercession .btn-contact-dept:hover {
    background: #3a4d5a !important;
    color: #ffffff !important;
}


.page-intercession .department-vision .section-description{
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.2rem !important;
    max-width: 900px;
    line-height: 1.8 !important;
    color: #1a1a1a !important;
    text-align: justify !important;
}

.page-intercession .department-main .section-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    color: #1a1a1a !important;
    text-align: justify !important;
}

.page-intercession .department-eligibility .section-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    color: #1a1a1a !important;
    text-align: justify !important;
}

/* Listes d'Ã©ligibilitÃ© pour la page intercession */
.page-intercession .eligibility-list-simple li {
    font-family: "Montserrat", sans-serif !important;
    font-size: 26px !important;
    line-height: 1.9 !important;
    color: #1a1a1a !important;
    margin-bottom: 1.5rem !important;
}

/* =========================================================
   ACTIVITÃ‰S â€” IMAGES (HÃ‰RITÃ‰ES DE CHORALE)
========================================================= */

.page-intercession .department-eligibility .section-image-wrapper,
.page-intercession .department-main .section-image-wrapper{
    flex: 1 1 800px;
    max-width: 1200px;
    height: 600px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-intercession .department-hero .section-image-wrapper {
    flex: 1 1 800px;
    max-width: 1200px;
    height: 600px;
    width: 500px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-intercession .department-vision .section-image-wrapper {
    flex: 1 1 800px;
    max-width: 1200px;
    width: 500px;
    height: 1150px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-intercession .activity-image {
    border-radius: 25px !important;
    overflow: hidden;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1) !important;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    padding: 8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-intercession .activity-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4),
        rgba(255, 255, 255, 0.1)
    );
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.page-intercession .activity-image:hover {
    transform: translateY(-8px) scale(1.02);
}

.page-intercession .activity-image:hover::before {
    opacity: 1;
}

.page-intercession .activity-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-intercession .activity-image:hover img {
    transform: scale(1.05);
}

/* =========================================================
   PROTECTION DES POST-IT (PRIORITÃ‰ MAX)
========================================================= */

.page-intercession .activity-content .activity-image {
    all: unset;
}


/* =========================================================
   POST-IT â€“ BLOCS & ANIMATIONS (INCHANGÃ‰S)
========================================================= */

/* Bloc */
.page-intercession .activity-block {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: none !important;
    perspective: 1000px;
    opacity: 0;
    animation: postItAppear 0.8s ease-out forwards;
}

.page-intercession .activity-block:nth-child(1) { animation-delay: 0.1s; }
.page-intercession .activity-block:nth-child(2) { animation-delay: 0.3s; }
.page-intercession .activity-block:nth-child(3) { animation-delay: 0.5s; }

/* Contenu post-it */
.page-intercession .activity-content {
    background: #d6d9f0 !important;
    padding: 3rem 2.5rem !important;
    max-width: 900px !important;
    margin: 0 auto 1.5rem !important;
    border-radius: 5px !important;
    position: relative;
    transform: rotate(-2deg) translateX(-10px);
    border: 2px solid rgba(107, 45, 45, 0.1) !important;
    border-top: 3px solid rgba(107, 45, 45, 0.2) !important;
    box-shadow:
        0 6px 12px rgba(0,0,0,.15),
        0 2px 4px rgba(0,0,0,.1),
        inset 0 1px 0 rgba(255,255,255,.3) !important;
    animation: postItSettle 0.6s ease-out forwards;
}

/* ---------- VARIATIONS POST-IT ---------- */
.page-intercession .activity-block:nth-child(1) .activity-content {
    background: #d1d6ed !important;
    transform: rotate(-2.5deg) translateX(-15px) translateY(5px);
    animation: postItSettle1 0.6s ease-out 0.5s forwards;
}

.page-intercession .activity-block:nth-child(2) .activity-content {
    background: #f5d6d6 !important;
    transform: rotate(2.2deg) translateX(12px) translateY(-3px);
    border-color: rgba(139,0,0,.1) !important;
    border-top-color: rgba(139,0,0,.2) !important;
    animation: postItSettle2 0.6s ease-out 0.7s forwards;
}

.page-intercession .activity-block:nth-child(3) .activity-content {
    animation: postItSettle3 0.6s ease-out 0.9s forwards;
}

/* ---------- PUNAISES ---------- */
.page-intercession .activity-content::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translateX(-50%) scale(0);
    border-radius: 50%;
    background: radial-gradient(circle, #8B0000 0%, #4B0000 100%);
    box-shadow: 0 2px 4px rgba(0,0,0,.3);
    animation: pinAppear 0.3s ease-out 1s forwards;
    z-index: 10;
}

/* ---------- HOVER ---------- */
.page-intercession .activity-content:hover {
    transform: rotate(0) translateY(-5px) !important;
}

/* ---------- TEXTE ---------- */
.page-intercession .activity-text {
    margin: 0 !important;
}

.page-intercession .activity-title {
    font-family: "Cal Sans", sans-serif;
    line-height: 1.3 !important;
    color: #332d2d !important;
    font-size: 42px !important;
    font-weight: 900 !important;
}

.page-intercession .activity-description {
    font-family: "Montserrat";
    font-size: 26px !important;
    line-height: 1.9 !important;
    color: #555 !important;
    line-height: 1.6;
}


/* =========================================================
   Styles pour page du conseil pastoral - Marron harmonisÃ©
========================================================= */

.page-pastoral .department-hero {
    background: var(--color-brown);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.page-pastoral .department-hero .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 150px;
    color: #b5acac;
    opacity: 0.5;
}

.page-pastoral .department-hero .section-title-hero {
    margin-top: -100px;
    font-family: "Cal Sans", sans-serif;
    font-style: normal;
    font-size: 6rem;
    line-height: 8rem;
    color: #ffffff;
    z-index: 2;
}

.page-pastoral .department-hero .section-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    max-width: 720px;
    text-align: justify;
}

/* =========================================================
   Sections gÃ©nÃ©rales
========================================================= */

.page-pastoral .department-main,
.page-pastoral .department-leaders,
.page-pastoral .department-vision,
.page-pastoral .department-eligibility,
.page-pastoral .department-join {
    background: #ffffff;
}

.page-pastoral .department-activities {
    background: #4B6070;
}

/* =========================================================
   Labels manuscrits
========================================================= */

.page-pastoral .department-main .section-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 95px;
    color: #b5acac;
    opacity: 0.7;
}

.page-pastoral .department-leaders .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #4a4a4a !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    opacity: 1 !important;
}

.page-pastoral .activity-image {
    height: 650px !important;
    min-height: 650px;
}

.page-pastoral .activity-image img {
    object-fit: cover;
    object-position: center 30% !important;
}

/* =========================================================
   Titres & textes
========================================================= */

.page-pastoral .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: var(--color-brown);
    margin-top: -80px;
    line-height: 4.5rem;
}

.page-pastoral .section-description {
    font-family: "Montserrat", sans-serif;
    color: #333;
    max-width: 700px;
    text-align: justify;
}

.page-pastoral .section-description strong {
    color: #8B0000;
}

/* =========================================================
   Leaders
========================================================= */

.page-pastoral .leader-label {
    font-family: "Ephesis", cursive;
    font-weight: 400;
    font-size: 120px;
    color: #333;
    opacity: 0.5;
}

.page-pastoral .leader-name-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: var(--color-brown);
    margin-top: -90px;
}

.page-pastoral .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #333;
}

.page-pastoral .department-leaders .leader-image-wrapper {
    width: 100%;
    height: 560px;
    overflow: hidden;
    border-radius: 20px;
}

.page-pastoral .department-leaders .leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   Ã‰ligibilitÃ©
========================================================= */

.page-pastoral .eligibility-list-simple {
    margin-top: 2rem;
}

.page-pastoral .eligibility-list-simple li {
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 1rem;
}

.page-pastoral .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-pastoral .eligibility-list-simple li:hover {
    color: #8B0000;
}

/* =========================================================
   Bouton (style pastoral conservÃ©)
========================================================= */

.page-pastoral .btn-contact-dept {
    font-family: "Oswald", sans-serif;
    background: #4B6070;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-pastoral .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}

/* =========================================================
   ActivitÃ©s
========================================================= */

.page-pastoral .activity-title {
    font-family: "Cal Sans", sans-serif;
    color: #ffffff;
}

.page-pastoral .activity-description {
    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    text-align: justify;
}


/* =========================================================
   Styles pour page de l'Ã©vangÃ©lisation - Turquoise harmonisÃ©
========================================================= */

.page-evangelisation .department-hero {
    position: relative;
    background: rgb(96, 5, 22);
    padding: 10rem 0 6rem;
    overflow: hidden;
}

/* =========================================================
   HERO
========================================================= */

.page-evangelisation .section-image-wrapper {
    width: 110%;
    height: 620px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-evangelisation .department-hero .section-image-wrapper {
    width: 150%;
    height: 620px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-evangelisation .department-hero .section-label {
    font-family: "Corinthia", cursive;
    font-size: 7.5rem;
    font-style: normal;
    text-transform: none;
    color: #ffffff;
    opacity: 0.5;
}

.page-evangelisation .department-hero .section-title-hero {
    margin-top: -100px;
    font-family: "Cal Sans", sans-serif;
    font-style: normal;
    font-size: 5.6rem;
    color: #ffffff;
    z-index: 2;
}

.page-evangelisation .department-hero .section-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 720px;
    text-align: justify;
    line-height: 1.8;
}

/* =========================================================
   Sections gÃ©nÃ©rales
========================================================= */

.page-evangelisation .department-main,
.page-evangelisation .department-leaders,
.page-evangelisation .department-vision,
.page-evangelisation .department-eligibility,
.page-evangelisation .department-join {
    background: #ffffff;
}

.page-evangelisation .department-activities {
    background: #4B6070;
}

/* =========================================================
   Labels manuscrits
========================================================= */

.page-evangelisation .department-main .section-label,
.page-evangelisation .department-vision .section-label,
.page-evangelisation .department-eligibility .section-label,
.page-evangelisation .department-join .section-label {
    font-family: "Corinthia", cursive;
    font-style: normal;
    text-transform: none;
    color: #531a1a;
    opacity: 0.5;
}

.page-evangelisation .department-main .section-label {
    font-size: 7.8rem;
}

.page-evangelisation .department-vision .section-label,
.page-evangelisation .department-eligibility .section-label,
.page-evangelisation .department-join .section-label {
    font-size: 8rem;
}

/* =========================================================
   Titres & textes
========================================================= */

.page-evangelisation .department-main .section-title-large,
.page-evangelisation .department-vision .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: rgb(96, 5, 22);
    margin-top: -170px;
    line-height: 4.8rem;
}

.page-evangelisation .department-eligibility .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 80px;
    color: rgb(96, 5, 22);
    line-height: 4.8rem;
    margin-top: -110px;
}

.page-evangelisation .department-join .section-title-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 800;
    font-size: 90px;
    color: rgb(96, 5, 22);
    line-height: 5rem;
    margin-top: -100px;
}

.page-evangelisation .department-main .section-description,
.page-evangelisation .department-vision .section-description,
.page-evangelisation .department-join .section-description {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: #333;
    max-width: 700px;
    text-align: justify;
    line-height: 1.8;
}

.page-evangelisation .section-description strong {
    color: #8B0000;
}

/* =========================================================
   Leaders
========================================================= */

.page-evangelisation .department-leaders .leader-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    opacity: 1 !important;
    margin-bottom: 1rem;
}

.page-evangelisation .department-leaders .leader-name-large {
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    color: #8B0000;
    margin-top: -90px;
    position: relative;
    z-index: 1;
}

.page-evangelisation .department-leaders .leader-name-large::before {
    content: "MICHÃˆLE KOUME";
    position: absolute;
    font-size: 90px;
    font-weight: 900;
    color: rgba(139, 0, 0, 0.2);
    transform: translate(8px, 12px);
    z-index: 0;
    font-family: "Cal Sans", sans-serif;
}

.page-evangelisation .department-leaders .leader-role {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    color: rgb(96, 5, 22);
    margin-bottom: 1rem;
}

.page-evangelisation .department-leaders .section-description {
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    text-align: justify;
}

.page-evangelisation .department-leaders {
    padding: 6rem 2rem;
}

.page-evangelisation .department-leaders .leader-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.page-evangelisation .department-leaders .leader-text {
    max-width: 600px;
    flex: 1 1 500px;
    text-align: left;
}

.page-evangelisation .department-leaders .leader-image-wrapper {
    flex: 1 1 500px;
    max-width: 600px;
    height: 600px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 8px 12px 12px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-evangelisation .department-leaders .leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 12px 12px 8px;
    object-position: center 30%;
}

/* =========================================================
   Ã‰ligibilitÃ©
========================================================= */

.page-evangelisation .eligibility-list-simple {
    margin-top: 2rem;
}

.page-evangelisation .eligibility-list-simple li {
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 1rem;
}

.page-evangelisation .eligibility-list-simple li::before {
    color: #8B0000;
}

.page-evangelisation .eligibility-list-simple li:hover {
    color: #8B0000;
}

/* =========================================================
   Bouton
========================================================= */

.page-evangelisation .btn-contact-dept {
    font-family: "Montserrat", sans-serif;
    background: #4B6070;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.page-evangelisation .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}

/* =========================================================
   ActivitÃ©s
========================================================= */

.page-evangelisation .activity-title {
    font-family: "Cal Sans", sans-serif;
    color: #ffffff;
}

.page-evangelisation .activity-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    text-align: justify;
    line-height: 1.8;
}

.page-evangelisation .activity-image {
    height: 450px !important;
    min-height: 450px;
    width: 100%;
    aspect-ratio: 16/9;
}

.page-evangelisation .activity-image img {
    object-fit: cover;
    object-position: center 30% !important;
    width: 100%;
    height: 100%;
}

/*section-image-wrapper*/

.section-image-wrapper {
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-medias .department-hero .section-image-wrapper {
    width: 150%;
    height: 620px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-medias .section-image-wrapper {
    width: 100%;
    height: 620px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.page-pastoral .section-image-wrapper {
    width: 110%;
    height: 620px;
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    background: #f0f0f0;
    animation: fadeInRight 0.8s ease-out 0.3s both;
    transition: transform 0.3s ease;
}

.section-presentation-reverse .section-image-wrapper {
    border-radius: 20px 0 0 20px;
    animation: fadeInLeft 0.8s ease-out 0.3s both;
}

.section-image-wrapper:hover {
    transform: translateY(-5px);
}

.section-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

/* Image de l'ordinateur entiÃ¨rement visible dans la section Rejoindre sur toutes les pages */
.department-join .section-image-wrapper img {
    object-fit: contain;
    object-position: center;
}

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

/* Styles pour compatibilitÃ© */
.department-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.department-title {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.department-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 2px;
}

.department-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.department-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.department-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.05) 0%, rgba(107, 45, 45, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s;
}

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

.department-image:hover::before {
    opacity: 1;
}

.department-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
    object-fit: cover;
}

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

/* Department Hero Section */
.department-hero {
    background: linear-gradient(135deg, #e3e8f5 0%, #d1d9f0 100%);
    padding: 5rem 0;
}

/* Styles spÃ©cifiques pour la page Hommes - Bleu harmonisÃ© */

.page-hommes .department-hero {
    background: var(--color-blue-hommes); /* #5a7fb8 - harmonisÃ© avec bleu */
}

.department-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.department-hero-text {
    position: relative;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-hommes .hero-label {
    color: #333;
}

.department-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 1.5rem 0;
    font-family: 'Georgia', serif;
    line-height: 1.2;
}

.page-hommes .department-hero-title {
    color: #8B0000;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.page-hommes .hero-subtitle {
    color: #333;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
}

.page-hommes .hero-subtitle::after {
    background: #8B0000;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-hommes .hero-feature-item {
    border: 1px solid var(--color-blue-hommes);
    color: #333;
}

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

.page-hommes .hero-feature-item i {
    color: var(--color-blue-hommes);
}

.hero-feature-item:hover i {
    transform: scale(1.2);
    color: var(--color-secondary);
}

.page-hommes .hero-feature-item {
    border-color: rgba(107, 45, 45, 0.15);
}

.page-hommes .hero-feature-item i {
    color: var(--color-secondary);
}

.page-hommes .hero-feature-item:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 25px rgba(107, 45, 45, 0.15);
}

.page-hommes .hero-feature-item:hover i {
    color: var(--color-primary);
}

.department-hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.25);
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge i {
    font-size: 0.9rem;
}

.page-hommes .hero-badge {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    box-shadow: 0 4px 15px rgba(107, 45, 45, 0.25);
}

.department-hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-hommes .department-hero-description {
    color: #333;
}

.department-hero-description strong {
    color: #333;
    font-weight: 600;
}

.page-hommes .department-hero-description strong {
    color: #8B0000;
}

.department-hero-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.department-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Styles pour compatibilitÃ© */

/* Department Leaders Section */
.department-leaders {
    padding: 5rem 0;
    background: #ffffff;
}

.page-hommes .department-leaders {
    background: #ffffff;
}

.department-section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: bold;
}

.page-hommes .department-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.leader-presentation {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-juniors .leader-presentation {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.leader-text-content {
    position: relative;
}

.leader-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: fadeInUp 0.6s ease-out;
}

.leader-name-large {
    font-size: 5.5rem;
    font-weight: 700;
    color: #333;
    letter-spacing: -1px;
    line-height: 0.95;
    margin: 0 0 2rem 0;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-hommes .leader-name-large {
    color: #8B0000;
    font-family: "Cal Sans", sans-serif;
    font-weight: 900;
    font-size: 90px;
    margin-top: -90px;
}

.leader-name-decorative {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5rem;
    text-transform: none;
    font-weight: 300;
    color: rgb(107, 4, 4);
    font-family: "Corinthia";
    letter-spacing: -1px;
    line-height: 0.95;
    pointer-events: none;
    transform: translate(12px, 18px);
    white-space: nowrap;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.page-juniors .leader-name-decorative {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5.5rem;
    text-transform: none;
    font-weight: 300;
    color: rgba(107, 4, 4, 0.332);
    font-family: "Corinthia";
    letter-spacing: -1px;
    line-height: 0.95;
    pointer-events: none;
}

.leader-role {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    margin-bottom: 1.5rem;
}

.leader-description {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    margin-top: 1.5rem;
}

.page-hommes .leader-role {
    font-family: "Montserrat";
    font-weight: 400;
    color: #333;
}

.leader-image-wrapper {
    width: 110%;
    height: 520px;
    overflow: hidden;
    background: #f0f0f0;
}

.page-juniors .department-leaders .leader-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 12px;
    align-items: center;
}

.page-hommes .department-leaders .leader-image-wrapper {
    width: 80%;
    height: 600px;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    align-items: center;
}

.leader-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-hommes .leader-image-wrapper img {
    object-fit: contain;
}

/* Styles pour compatibilitÃ© avec autres pages */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-primary);
}

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

.leader-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

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

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-primary);
}

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

.leader-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

/* Department Vision Section */
.department-vision {
    padding: 5rem 0;
    background: #ffffff;
}

.page-hommes .department-vision {
    background: #ffffff;
}

.department-eligibility {
    padding: 5rem 0;
    background: #ffffff;
}

.page-hommes .department-eligibility {
    background: #ffffff;
}

.eligibility-list-simple {
    font-family: "Montserrat";
    list-style: none;
    padding: 0;
    margin: 0;
}

.eligibility-list-simple li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 2;
    font-family: "Montserrat", sans-serif;
    padding-left: 1.5rem;
    position: relative;
    animation: slideInFromBottom 0.5s ease-out both;
    transition: transform 0.3s ease, color 0.3s ease;
}

.eligibility-list-simple li:nth-child(1) { animation-delay: 0.1s; }
.eligibility-list-simple li:nth-child(2) { animation-delay: 0.2s; }
.eligibility-list-simple li:nth-child(3) { animation-delay: 0.3s; }
.eligibility-list-simple li:nth-child(4) { animation-delay: 0.4s; }
.eligibility-list-simple li:nth-child(5) { animation-delay: 0.5s; }

.page-hommes .eligibility-list-simple li {
    color: #333;
}

.eligibility-list-simple li:hover {
    transform: translateX(5px);
    color: #8B0000;
}

.eligibility-list-simple li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-hommes .eligibility-list-simple li::before {
    color: #8B0000;
}

.eligibility-list-simple li:hover::before {
    transform: scale(1.2);
}

/* Styles pour compatibilitÃ© */
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.vision-text-block {
    padding-right: 2rem;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.vision-eligibility {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.eligibility-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eligibility-icon .fa-heart {
    font-size: 3rem;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.eligibility-icon .fa-cross {
    font-size: 1.5rem;
    color: var(--color-secondary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.eligibility-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.eligibility-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eligibility-check {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Department Activities Section */
.department-activities {
    padding: 0;
    background: #4B6070;
}

.page-hommes .department-activities {
    background: #4B6070;
}

.activity-block {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-block:first-child {
    padding-top: 4rem;
}

.activity-block:last-child {
    border-bottom: none;
    padding-bottom: 4rem;
}

.activity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.activity-block-reverse .activity-image {
    order: -1;
}

.activity-text {
    color: #ffffff;
}

.activity-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-hommes .activity-title {
    color: #ffffff;
}

.activity-description {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    font-weight: 400;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.page-hommes .activity-description {
    color: #ffffff;
}

.activity-image {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.activity-block-reverse .activity-image {
    animation: fadeInLeft 0.8s ease-out 0.3s both;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

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

/* Styles pour compatibilitÃ© */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.activity-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.activity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: bold;
}

.activity-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0 1.5rem 1.5rem;
}

/* Department Join Section */
.department-join {
    padding: 5rem 0;
    background: #ffffff;
}


.page-hommes .department-join {
    background: #ffffff;
}

.join-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.join-buttons-vertical {
    flex-direction: column !important;
    align-items: stretch !important;
}

.btn-join {
    padding: 1.2rem 3rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
}

.btn-contact-dept {
    background: #4B6070 !important;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.page-hommes .btn-contact-dept {
    background: #4B6070;
    color: #ffffff;
    border-color: #4B6070;
}

.btn-contact-dept:hover {
    background: #3a4d5a !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.4);
}

.page-hommes .btn-contact-dept:hover {
    background: #3a4d5a;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(75, 96, 112, 0.3);
}

.btn-register-dept {
    background: var(--color-primary);
    color: var(--color-white);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.page-hommes .btn-register-dept {
    background: #8B0000;
    color: #ffffff;
}

.btn-register-dept:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.page-hommes .btn-register-dept:hover {
    background: #6B0000;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.4);
}


/* Page Se Joindre Ã  Nous */
.page-join {
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.page-join .header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Join Hero Section */
.join-hero {
    background: #7BA68A; /* Vert du logo (rgb(123, 166, 138)) */
    padding: 5rem 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

/* Nouveaux styles pour la page Se joindre Ã  nous */
.join-hero-layout {
    display: grid !important;
    grid-template-columns: 0.4fr 1.6fr !important;
    gap: 0.5rem !important;
    align-items: start;
    position: relative;
    z-index: 1;
}

.join-hero-left-section {
    display: flex;
    flex-direction: column;
    overflow: visible;
    max-width: 100%;
    margin-right: -2rem !important;
}

.join-hero-left-section .se-joindre-label {
    margin-bottom: 1rem;
    white-space: nowrap;
}

.join-hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15rem !important;
    margin-left: 8rem !important;
    margin-right: 0 !important;
    text-align: center;
}

.join-hero-title-bottom {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin: 0;
    margin-top: auto;
    text-align: right;
    font-weight: bold;
    white-space: nowrap;
}

.join-hero-main-title {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #8B0000;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    text-shadow: 4px 4px 0 rgba(150, 150, 150, 0.3);
}

.join-hero-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
    margin: 4rem auto 0 auto !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 550px;
    writing-mode: horizontal-tb;
    text-align: center;
}

.join-hero-images-grid {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 900px;
    z-index: 1;
    overflow: visible;
}

.join-hero-image-item {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, z-index 0.4s ease;
    width: 300px;
    height: 380px;
}

.join-hero-image-top {
    top: 0px !important;
    left: 0px !important;
    z-index: 2;
    transform: rotate(-4deg);
    width: 320px;
    height: 400px;
}

.join-hero-image-middle-1 {
    top: 80px !important;
    left: 40px !important;
    z-index: 4;
    transform: rotate(5deg);
    width: 420px;
    height: 520px;
}

.join-hero-image-middle-2 {
    top: 200px !important;
    left: -180px !important;
    z-index: 3;
    transform: rotate(-3deg);
    width: 320px;
    height: 400px;
}

.join-hero-image-bottom {
    top: 500px !important;
    left: 20px !important;
    z-index: 1;
    transform: rotate(4deg);
    width: 300px;
    height: 380px;
}

.join-hero-image-item:hover {
    transform: scale(1.08) rotate(0deg) translateY(-5px);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.join-hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.join-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.join-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.join-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.hero-feature span {
    font-size: 1rem;
    font-weight: 600;
}

.join-hero-image {
    position: relative;
}

.hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 45, 45, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

.join-main {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.join-title-section {
    text-align: center;
    margin: 5rem 0 4rem;
    padding: 2rem 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.join-main-title {
    font-size: 2.8rem;
    color: #7BA68A;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.join-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    position: relative;
    min-height: 650px;
    margin-bottom: 8rem;
    overflow: visible;
    padding: 2rem 0;
}

.service-card-modern {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: absolute;
    border: 2px solid transparent;
    width: 350px;
}

.service-card-modern:nth-child(1) {
    top: 120px;
    left: 0;
    z-index: 2;
    transform: rotate(-4deg);
    width: 350px;
}

.service-card-modern:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    z-index: 4;
    width: 420px;
}

.service-card-modern:nth-child(3) {
    top: 140px;
    right: 0;
    z-index: 1;
    transform: rotate(5deg);
    width: 350px;
}

.service-card-modern:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
    border-color: var(--color-primary);
    z-index: 10 !important;
}

.service-icon-wrapper {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.service-icon-blue {
    background: var(--color-secondary);
    box-shadow: 0 5px 15px rgba(107, 45, 45, 0.3);
}

.service-image-modern {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 0, 0, 0.1) 100%);
}

.service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

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

.service-title-modern {
    font-size: 1.8rem;
    color: var(--color-secondary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-description-modern {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

.service-link i {
    font-size: 0.9rem;
}

/* Services CTA Global */
.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
}

.services-cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.services-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    margin: 6rem 0;
}

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

.contact-form-title {
    font-size: 2.8rem;
    color: var(--color-secondary);
    font-weight: bold;
    margin: 1.5rem 0 1rem;
}

.contact-form-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: rgba(139, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    padding: 3rem;
    border-radius: 20px;
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 2rem;
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-item p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-hours p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #f8f9fa;
    color: #333;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-white);
    border: none;
    padding: 1.4rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 1rem;
}

/* Responsive for Join Page */

/* Form Success Message */
.form-success-message {
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.3s ease-out;
}

.form-success-message i {
    font-size: 2rem;
}

.form-success-message p {
    margin: 0;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 450px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    min-height: 100px;
    width: 100%;
}

.hero-title-part {
    position: absolute;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    filter: blur(8px);
    white-space: nowrap;
    animation: wordCycle 9s infinite;
}

.hero-title-part[data-part="1"] {
    animation-delay: 0s;
}

.hero-title-part[data-part="2"] {
    animation-delay: 3s;
    font-size: 1.1em;
}

.hero-title-part[data-part="3"] {
    animation-delay: 6s;
}

.hero-subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both, subtlePulse 3s ease-in-out infinite 1s;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 800;
    position: relative;
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    animation: sectionTitleReveal 0.8s ease-out forwards;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.vision .section-title {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    opacity: 0;
    animation: underlineReveal 0.6s ease-out 0.4s forwards;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Events Section */
.events {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

.carousel-wrapper {
    position: relative;
    margin: 2rem 0;
}

.carousel-container {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0.75rem 0;
    transition: transform 0.5s ease;
}

/* Center single event */
.carousel-wrapper.single-event .carousel-container {
    justify-content: center;
    transform: none !important;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: background 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: var(--color-white);
}

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

.program-item {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.program-item:hover::before {
    transform: scaleX(1);
}

.program-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.program-icon-wrapper {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(107, 45, 45, 0.1) 100%);
    padding: 2.5rem 2rem 1.5rem;
    position: relative;
}

.program-icon {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin: 0 auto;
    display: inline-block;
    transition: all 0.4s;
    position: relative;
}

.program-item:hover .program-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--color-secondary);
}

/* IcÃ´ne partitions (Culte de cÃ©lÃ©bration) Ã  la place du cÅ“ur */
.program-icon-partitions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--color-primary);
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
}

.program-icon-partitions .partitions-line {
    display: inline-block;
    transition: transform 0.4s;
}

.program-item:hover .program-icon-partitions {
    color: var(--color-secondary);
}

.program-item:hover .program-icon-partitions .partitions-line:nth-child(1) { transform: translateY(-2px); }
.program-item:hover .program-icon-partitions .partitions-line:nth-child(2) { transform: translateY(0); }
.program-item:hover .program-icon-partitions .partitions-line:nth-child(3) { transform: translateY(2px); }

.program-content {
    padding: 1.5rem 2rem 2.5rem;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.2);
}

.program-badge i {
    font-size: 0.7rem;
}

.program-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #333;
    margin: 0 0 1.25rem 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.program-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.5rem;
    background: rgba(139, 0, 0, 0.03);
    border-radius: 8px;
    transition: all 0.3s;
}

.program-item:hover .program-detail-item {
    background: rgba(139, 0, 0, 0.08);
    transform: translateX(5px);
}

.program-detail-item i {
    font-size: 1.1rem;
    color: var(--color-primary);
    width: 20px;
    text-align: center;
}

.program-day,
.program-time {
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Departments Section */
.departments {
    padding: 6rem 0;
    background: var(--color-light-gray);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    min-height: 500px;
}

.dept-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.dept-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.dept-card-link:hover .dept-card,
.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dept-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dept-name {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: auto;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 2rem 0 1rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo-content {
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo .logo-curves {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-cite {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
}

.footer-logo .logo-amour {
    font-size: 1.8rem;
    color: #ff6b9d;
}

.footer-logo .logo-cross {
    color: var(--color-brown);
    font-size: 1.6rem;
}

.footer-logo .logo-book {
    color: var(--color-brown);
    bottom: -18px;
    left: 12px;
    font-size: 1rem;
}

.footer-tagline {
    display: block !important;
    position: static !important;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 0.5rem;
    white-space: normal;
    animation: taglineGlow 3s ease-in-out infinite;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-white);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s, transform 0.2s;
    font-size: 1rem;
}

.footer-column a:hover {
    color: var(--color-white);
    transform: translateX(5px);
}

.footer-address {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-address i {
    color: var(--color-primary);
    font-size: 1rem;
}

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

.social-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: scale(1.15);
}

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

.footer-brand {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    animation: brandPulse 4s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.footer-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

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

/* Header Social Icons */
.header-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon-header {
    color: var(--color-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s, transform 0.2s;
}

.social-icon-header:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Page Hero Section */
.page-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1rem;
}

.breadcrumbs a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb-separator {
    margin: 0 0.5rem;
}

.breadcrumb-current {
    font-weight: 600;
}

/* Histoire Section */
.histoire-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.commencer-ici-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.se-joindre-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    text-align: left;
    display: block;
}

.join-hero-text-content .se-joindre-label {
    margin-bottom: 0.5rem;
}

.section-title-left {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-top: 5rem !important;
    margin-bottom: 2rem;
    text-align: center;
    white-space: nowrap;
}

/* Styles pour les items d'histoire avec alternance gauche/droite */
.histoire-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 4rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    position: relative;
    overflow: hidden;
}

.histoire-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.histoire-item:last-child {
    margin-bottom: 0;
}

.histoire-item-left {
    grid-template-columns: 1fr 1fr;
}

.histoire-item-right {
    grid-template-columns: 1fr 1fr;
}

.histoire-item-right .histoire-item-image {
    order: 2;
}

.histoire-item-right .histoire-item-content {
    order: 1;
}

.histoire-item-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
    position: relative;
}

.histoire-item.visible .histoire-item-image {
    opacity: 1;
    transform: scale(1);
}

.histoire-item-image img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.histoire-item-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.histoire-item-content p {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.histoire-item.visible .histoire-item-content p {
    opacity: 1;
    transform: translateY(0);
}

.histoire-item.visible .histoire-item-content p:nth-child(2) {
    transition-delay: 0.3s;
}

.histoire-item.visible .histoire-item-content p:nth-child(3) {
    transition-delay: 0.5s;
}

.histoire-item.visible .histoire-item-content p:nth-child(4) {
    transition-delay: 0.7s;
}

.histoire-item.visible .histoire-item-content p:nth-child(5) {
    transition-delay: 0.9s;
}

.histoire-item.visible .histoire-item-content p:nth-child(6) {
    transition-delay: 1.1s;
}

.histoire-item-content h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.histoire-item.visible .histoire-item-content h3 {
    opacity: 1;
    transform: translateX(0);
}

.histoire-item-right .histoire-item-content h3 {
    transform: translateX(30px);
}

.histoire-item-right.visible .histoire-item-content h3 {
    transform: translateX(0);
}

/* Responsive pour les items d'histoire */

/* Verset fondateur Section */
.verset-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.verset-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.verset-text {
    padding: 3rem 2rem;
}

.verset-quote {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--color-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.verset-reference {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 700;
    margin: 0;
}

/* Pasteur Section */
.pasteur-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.pasteur-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    background: #e8e8e8;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pasteur-image-side {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.pasteur-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pasteur-text-side {
    background: #1a1a1a;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pasteur-name-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.pasteur-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 1.8rem;
}

.pasteur-bio:last-child {
    margin-bottom: 0;
}


/* Mission Section */
.mission-section {
    padding: 4rem 0;
    background: var(--color-white);
}

.section-title-center {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.mission-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 3rem;
}

.mission-carousel {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 1rem 0;
  margin: 2rem 0;
    overflow-x: visible;
}

.mission-card {
    min-width: 400px;
    background: linear-gradient(135deg, rgba(15, 20, 80, 0.98) 0%, rgba(50, 0, 90, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    border-radius: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* Centre explicitement les cartes Rencontrer / Grandir / Servir dans "Commencer ici" */
.page-commencer-ici .mission-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-commencer-ici .mission-carousel {
  width: 100%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.mission-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon i:first-child {
    font-size: 3rem;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.mission-cross {
    position: absolute;
    font-size: 1.5rem;
    color: var(--color-secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.mission-heart {
    position: absolute;
    font-size: 1.2rem;
    color: var(--color-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.mission-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
}

.mission-card-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 1;
}

.mission-card-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.mission-link {
    font-size: 1rem;
    color: #ffd700;
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.mission-link:hover {
    opacity: 0.8;
}

.mission-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.pagination-dot.active {
    background: rgba(138, 43, 226, 0.8);
    transform: scale(1.2);
}

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: none;
    align-items: stretch;
    justify-content: flex-end;
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-menu.active {
    display: flex;
    opacity: 1;
}

.dropdown-menu-content {
    background: rgba(139, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 600px;
    height: 100vh;
    padding: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu.active .dropdown-menu-content {
    transform: translateX(0);
}

.dropdown-menu-header {
    background: transparent;
    padding: 2rem 2rem 1.5rem;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.dropdown-menu-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.dropdown-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.dropdown-menu-body {
    padding: 3rem 2rem;
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    overflow-y: auto;
    overflow-x: hidden;
    align-content: start;
    min-height: 0;
}

.dropdown-menu-section {
    display: flex;
    flex-direction: column;
}

.dropdown-menu-section-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
    border-bottom: none;
    line-height: 1.2;
}

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

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

.dropdown-menu-link {
    display: block;
    padding: 0.5rem 0;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
}

.dropdown-menu-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-menu-link i {
    display: none;
}

.dropdown-menu-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    flex-shrink: 0;
    margin-top: auto;
}

.dropdown-menu-footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.dropdown-menu-footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: "Montserrat", sans-serif;
    transition: color 0.3s ease;
}

.dropdown-menu-footer-link:hover {
    color: #ffffff;
}

.dropdown-menu-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dropdown-menu-social a {
    color: #FFD700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.dropdown-menu-social a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* EmpÃªcher le scroll du body quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

/* Responsive pour mobile */

/* Mobile Menu */
.menu-toggle {
    cursor: pointer;
}

/* Responsive Event Cards */


    .logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .logo-curves {
        width: 40px;
        height: 40px;
    }

    .logo-cite,
    .logo-amour {
        font-size: 1.5rem !important;
    }

    .footer-logo-content {
        align-items: center;
        text-align: center;
    }

    .footer-logo .logo-cite,
    .footer-logo .logo-amour {
        font-size: 1.5rem !important;
    }

    .social-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

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

    .header-social {
        display: none;
    }

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

    .histoire-item,
    .pasteur-content {
        grid-template-columns: 1fr;
    }

    .pasteur-info-overlay {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        margin: 1rem 0 0 0;
        padding: 2rem;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .pasteur-name {
        font-size: 2rem;
    }
    
    .pasteur-title {
        font-size: 0.8rem;
    }
    
    .pasteur-image-wrapper {
        flex-direction: column;
    }

    .mission-section {
        overflow-x: hidden;
    }
    
    .mission-section .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .mission-carousel {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--color-primary) transparent;
        padding: 1rem 20px 1.5rem 20px;
        margin: 2rem 0;
        gap: 1.5rem;
        justify-content: flex-start;
    }
    
    .mission-carousel::-webkit-scrollbar {
        height: 6px;
    }
    
    .mission-carousel::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .mission-carousel::-webkit-scrollbar-thumb {
        background-color: var(--color-primary);
        border-radius: 3px;
    }
    
    .mission-card {
        min-width: 320px;
        max-width: 320px;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 2.5rem 2rem;
    }
    
    .mission-card-title {
        font-size: 2rem;
    }
    
    .mission-card-text {
        font-size: 1rem;
    }
    
    .mission-label {
        font-size: 0.8rem;
    }

    .pasteur-buttons {
        flex-direction: column;
    }

    .btn-pasteur {
        width: 100%;
        justify-content: center;
    }

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

    .dept-image {
        height: 180px;
    }
}


/* Department Pages */
.department-main {
    padding: 4rem 0;
    background: var(--color-light-gray);
    min-height: 60vh;
}

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

.department-title {
    font-size: 3rem;
    color: var(--color-primary);
    font-weight: bold;
    margin-bottom: 2rem;
}

.department-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.department-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

/* Department Hero Section */
.department-hero {
    background: var(--color-church-header);
    padding: 4rem 0;
}

.department-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.department-hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-family: 'Georgia', serif;
}

.department-hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.department-hero-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.department-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Department Leaders Section */
.department-leaders {
    padding: 4rem 0;
    background: var(--color-church-header);
}

.department-section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: bold;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.leader-card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.leader-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-primary);
}

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

.leader-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.leader-role {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* Department Vision Section */
.department-vision {
    padding: 4rem 0;
    background: var(--color-church-header);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.vision-text-block {
    padding-right: 2rem;
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.vision-eligibility {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.eligibility-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eligibility-icon .fa-heart {
    font-size: 3rem;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
}

.eligibility-icon .fa-cross {
    font-size: 1.5rem;
    color: var(--color-secondary);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.eligibility-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.eligibility-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.eligibility-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.eligibility-check {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* Department Activities Section */
.department-activities {
    padding: 4rem 0;
    background: #4B6070;
}

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

.activity-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.activity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 1.5rem 1.5rem 1rem;
    font-weight: bold;
}

.activity-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0 1.5rem 1.5rem;
}

/* Department Join Section */
.department-join {
    padding: 4rem 0;
}

.join-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-join {
    padding: 1.2rem 3rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-contact-dept {
    background: var(--color-church-header);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-contact-dept:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.btn-register-dept:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}


/* Page Se Joindre Ã  Nous */
.page-join {
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.page-join .header {
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Join Hero Section */
.join-hero {
    background: #7BA68A; /* Vert du logo (rgb(123, 166, 138)) */
    padding: 5rem 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

/* Nouveaux styles pour la page Se joindre Ã  nous */
.join-hero-layout {
    display: grid !important;
    grid-template-columns: 0.4fr 1.6fr !important;
    gap: 0.5rem !important;
    align-items: start;
    position: relative;
    z-index: 1;
}

.join-hero-left-section {
    display: flex;
    flex-direction: column;
    overflow: visible;
    max-width: 100%;
    margin-right: -2rem !important;
}

.join-hero-left-section .se-joindre-label {
    margin-bottom: 1rem;
    white-space: nowrap;
}

.join-hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-left: 15rem !important;
    margin-left: 8rem !important;
    margin-right: 0 !important;
    text-align: center;
}

.join-hero-title-bottom {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin: 0;
    margin-top: auto;
    text-align: right;
    font-weight: bold;
    white-space: nowrap;
}

.join-hero-main-title {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #8B0000;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    text-shadow: 4px 4px 0 rgba(150, 150, 150, 0.3);
}

.join-hero-description {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #333;
    margin: 4rem auto 0 auto !important;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 550px;
    writing-mode: horizontal-tb;
    text-align: center;
}

.join-hero-images-grid {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 900px;
    z-index: 1;
    overflow: visible;
}

.join-hero-image-item {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, z-index 0.4s ease;
    width: 300px;
    height: 380px;
}

.join-hero-image-top {
    top: 0px !important;
    left: 0px !important;
    z-index: 2;
    transform: rotate(-4deg);
    width: 320px;
    height: 400px;
}

.join-hero-image-middle-1 {
    top: 80px !important;
    left: 40px !important;
    z-index: 4;
    transform: rotate(5deg);
    width: 420px;
    height: 520px;
}

.join-hero-image-middle-2 {
    top: 200px !important;
    left: -180px !important;
    z-index: 3;
    transform: rotate(-3deg);
    width: 320px;
    height: 400px;
}

.join-hero-image-bottom {
    top: 500px !important;
    left: 20px !important;
    z-index: 1;
    transform: rotate(4deg);
    width: 300px;
    height: 380px;
}

.join-hero-image-item:hover {
    transform: scale(1.08) rotate(0deg) translateY(-5px);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.join-hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.join-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.join-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.join-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.hero-feature span {
    font-size: 1rem;
    font-weight: 600;
}

.join-hero-image {
    position: relative;
}

.hero-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 45, 45, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--color-secondary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.3rem;
    text-transform: uppercase;
}

.join-main {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.join-title-section {
    text-align: center;
    margin: 5rem 0 4rem;
    padding: 2rem 0;
}

.section-header {
    max-width: 800px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.join-main-title {
    font-size: 2.8rem;
    color: #7BA68A;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.join-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    position: relative;
    min-height: 650px;
    margin-bottom: 8rem;
    overflow: visible;
    padding: 2rem 0;
}

.service-card-modern {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: absolute;
    border: 2px solid transparent;
    width: 350px;
}

.service-card-modern:nth-child(1) {
    top: 120px;
    left: 0;
    z-index: 2;
    transform: rotate(-4deg);
    width: 350px;
}

.service-card-modern:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    z-index: 4;
    width: 420px;
}

.service-card-modern:nth-child(3) {
    top: 140px;
    right: 0;
    z-index: 1;
    transform: rotate(5deg);
    width: 350px;
}

.service-card-modern:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.15);
    border-color: var(--color-primary);
    z-index: 10 !important;
}

.service-icon-wrapper {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.service-icon-blue {
    background: var(--color-secondary);
    box-shadow: 0 5px 15px rgba(107, 45, 45, 0.3);
}

.service-image-modern {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 0, 0, 0.1) 100%);
}

.service-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

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

.service-title-modern {
    font-size: 1.8rem;
    color: var(--color-secondary);
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-description-modern {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

.service-link i {
    font-size: 0.9rem;
}

/* Services CTA Global */
.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
}

.services-cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.services-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    margin: 6rem 0;
}

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

.contact-form-title {
    font-size: 2.8rem;
    color: var(--color-secondary);
    font-weight: bold;
    margin: 1.5rem 0 1rem;
}

.contact-form-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: rgba(139, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    padding: 3rem;
    border-radius: 20px;
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 2rem;
}

.contact-info-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-item p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hours h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-hours p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #f8f9fa;
    color: #333;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-white);
    border: none;
    padding: 1.4rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 1rem;
}

/* Responsive for Join Page */

/* Form Success Message */
.form-success-message {
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideDown 0.3s ease-out;
}

.form-success-message i {
    font-size: 2rem;
}

.form-success-message p {
    margin: 0;
    font-size: 1.1rem;
}

/* DÃ©partement conseil pastoral */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=BBH+Bartle&family=BBH+Hegarty&family=Cal+Sans&family=Corinthia:wght@400;700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.leader-presentation {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  width: 100%;
}

/* Grille responsive des pasteurs */
.pasteurs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem; /* RÃ©duit de 5rem Ã  3rem pour un espacement plus Ã©quilibrÃ© */
  width: 100%;
}

/* Mobile : membres du conseil pastoral alignés verticalement, les uns après les autres */
@media (max-width: 768px) {
  .page-pastoral .department-leaders .leader-presentation {
    display: block;
    padding: 0;
  }
  .page-pastoral .department-leaders .leader-text-content {
    margin-bottom: 2rem;
  }
  .page-pastoral .department-leaders .leader-role {
    max-width: 14em;
    line-height: 1.4;
    font-size: 0.95rem;
  }
  .page-pastoral .department-leaders .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .pasteurs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .pasteurs .leader-image-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Conteneur image + overlay */
.pasteurs .leader-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  aspect-ratio: 3 / 4;
}

.pasteurs .leader-image-wrapper:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Ombre plus prononcÃ©e au survol */
}

/* Image : remplit tout le cadre */
.pasteurs .leader-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.pasteurs .leader-image-wrapper:hover img {
  transform: scale(1.05); /* LÃ©gÃ¨re animation de l'image au survol */
}

/* Photo Sylvain Beal : cadrage au niveau du visage / du nom */
.pasteurs .leader-image-wrapper.leader-sylvain-beal img {
  object-position: center 25%;
}

/* TITRE visible en permanence */
.pasteurs .leader-image-wrapper .leader-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  margin: 0; /* Supprime les marges par dÃ©faut */
  color: #ffffff;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; /* 800 n'existe pas dans votre import Google Fonts */
  font-size: clamp(1.25rem, 3vw, 1.75rem); /* Taille responsive */
  text-align: left;
  z-index: 3;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); /* DÃ©gradÃ© plus Ã©lÃ©gant */
  pointer-events: none; /* Ã‰vite les interfÃ©rences avec les clics */
  /* Animation */
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Courbe d'animation amÃ©liorÃ©e */
}

/* TEXTE cachÃ© au dÃ©part */
.pasteurs .leader-image-wrapper .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem); /* Taille responsive */
  line-height: 1.6; /* AmÃ©liore la lisibilitÃ© */
  text-align: left;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.5)); /* DÃ©gradÃ© pour meilleure lisibilitÃ© */
  pointer-events: none;
  /* CachÃ© en bas */
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* AU SURVOL : les deux montent ENSEMBLE */
.pasteurs .leader-image-wrapper:hover .leader-title {
  transform: translateY(100%); /* Calcul dynamique basÃ© sur la hauteur de l'overlay */
}

.pasteurs .leader-image-wrapper:hover .overlay {
  transform: translateY(0);
}

/*ActivitÃ©s du dÃ©partement*/
.activity-block .activity-content .activity-text .activity-title {
  font-size: 1.8rem;
  color: wheat;
  font-weight: 900;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.activity-block .activity-content .activity-text .activity-description {
  font-size: 1rem;
  color: white;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}


/* Responsive : ajustements pour petits Ã©crans */


/* page d'Ã©vangÃ©lisation */

/* Citation biblique */
.bible-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid #d4af37;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    animation: fadeIn 1.2s ease-out 0.3s both;
    transition: transform 0.3s ease;
}
.bible-quote:hover {
    transform: translateY(-10px);
}

.bible-quote i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bible-quote p {
    color: #ffffff;
    font-family: "Abril Fatface", serif;
    font-weight: 100;
    font-style: italic;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.bible-reference {
    display: block;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: right;
}
.page-evangelisation .btn-join {
    background: wheat;
    color: var(--color-teal-evangelisation);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}
/* ===== Simple scroll reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero image small float animation */
.floaty {
  animation: floaty 6.5s ease-in-out infinite;
  will-change: transform;
}

/* ===== Contact form status (success/error) ===== */
.form-status {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.3;
  display: none;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  background: rgba(76, 175, 80, 0.14);
  border: 1px solid rgba(76, 175, 80, 0.35);
}
/* ===== Animations simples (Reveal + Hero float) ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.floaty {
  animation: floaty 6.5s ease-in-out infinite;
  will-change: transform;
}

/* ===== Status formulaire (succÃ¨s/erreur) ===== */
.form-status {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.3;
  display: none;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  background: rgba(76, 175, 80, 0.14);
  border: 1px solid rgba(76, 175, 80, 0.35);
}

.form-status.error {
  background: rgba(244, 67, 54, 0.12);
  border: 1px solid rgba(244, 67, 54, 0.35);
}

/* Bouton loading */
.btn-submit.is-loading {
  opacity: 0.9;
  cursor: not-allowed;
}

/* AccessibilitÃ©: rÃ©duire animations */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .floaty {
    animation: none;
  }
}

/* =========================================================
   FIX GLOBAL - SECTION "REJOINDRE CE DÃ‰PARTEMENT"
   Force les styles corrects sur TOUTES les pages de dÃ©partements
   ========================================================= */

/* Label "Rejoindre" - Force les styles corrects pour toutes les pages */
body[class*="page-"] .department-join .section-label,
.page-hommes .department-join .section-label,
.page-femmes .department-join .section-label,
.page-medias .department-join .section-label,
.page-ados .department-join .section-label,
.page-juniors .department-join .section-label,
.page-chorale .department-join .section-label,
.page-intercession .department-join .section-label,
.page-evangelisation .department-join .section-label,
.page-jeunes-adultes .department-join .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: #555555 !important;
    margin-bottom: 0.75rem !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Titre "REJOINDRE CE DÃ‰PARTEMENT" - Force les styles corrects pour toutes les pages */
body[class*="page-"] .department-join .section-title-large,
.page-hommes .department-join .section-title-large,
.page-femmes .department-join .section-title-large,
.page-medias .department-join .section-title-large,
.page-ados .department-join .section-title-large,
.page-juniors .department-join .section-title-large,
.page-chorale .department-join .section-title-large,
.page-intercession .department-join .section-title-large,
.page-evangelisation .department-join .section-title-large,
.page-jeunes-adultes .department-join .section-title-large {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    font-size: 72px !important;
    color: #8B0000 !important;
    text-transform: uppercase !important;
    line-height: 1.05 !important;
    margin: 0 0 1rem 0 !important;
    margin-top: 0 !important;
    text-align: left !important;
    text-shadow: 4px 4px 0 rgba(150, 150, 150, 0.3) !important;
    position: relative !important;
    z-index: 2 !important;
}
.join-hero-cta a {
  pointer-events: auto;
}

.dropdown-menu {
  pointer-events: none;
}

.dropdown-menu.active {
  pointer-events: auto;
}

/* =========================================================
   BLOC UNIQUE â€“ SECTION "REJOINDRE CE DÃ‰PARTEMENT"
   (pour toutes les pages de dÃ©partements)
   ========================================================= */

/* Section globale */
.department-join {
    padding: 4rem 0;
    background: #ffffff;
}

/* Mise en page : image Ã  gauche, texte Ã  droite */
.department-join .section-presentation {
    display: grid;
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr); /* 430px pour la carte, le reste pour le texte */
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === CADRE GRIS DE Lâ€™IMAGE (comme ton idÃ©al) === */
.department-join .section-image-wrapper {
    background: #efefef;                 /* gris clair */
    padding: 40px 28px;                  /* espace intÃ©rieur */

    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 540px;
    min-height: 460px;                   /* ðŸ‘‰ hauteur du cadre (augmente si tu veux encore plus haut) */
}

/* Image dans le cadre */
.department-join .section-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Colonne texte Ã  droite */
.department-join .section-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

/* Petit label "REJOINDRE" - RÃˆGLE GLOBALE POUR TOUTES LES PAGES */
.department-join .section-label {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    color: #555555 !important;
    margin-bottom: 0.75rem !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Gros titre rouge "REJOINDRE CE DÃ‰PARTEMENT" - RÃˆGLE GLOBALE POUR TOUTES LES PAGES */
.department-join .section-title-large {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 900 !important;
    font-size: 72px !important;
    color: #8B0000 !important;
    text-transform: uppercase !important;
    line-height: 1.05 !important;
    margin: 0 0 1rem 0 !important;
    margin-top: 0 !important;
    text-align: left !important;
    text-shadow: 4px 4px 0 rgba(150, 150, 150, 0.3) !important;
    position: relative !important;
    z-index: 2 !important;
}

/* Texte descriptif */
.department-join .section-description {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 650px;
    color: #333;
    margin: 0;
    text-align: left;
}

/* === BOUTONS â€“ centrÃ©s sous le titre, lâ€™un sous lâ€™autre === */
.department-join .join-buttons {
    display: flex;
    flex-direction: column;          /* empilÃ©s */
    align-items: center;             /* centrÃ©s horizontalement */
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 420px;                /* largeur â€œblocâ€ des boutons */
}

/* Style commun des boutons */
.department-join .btn-join {
    width: 100%;                     /* mÃªme largeur pour les deux */
    padding: 0.9rem 2.4rem;
    border-radius: 16px;             /* rectangle Ã  coins arrondis */
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;

    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;

    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

/* NOUS CONTACTER â€“ un peu plus discret */
.department-join .btn-contact-dept {
    background: #4B6070;
    color: #ffffff;
    font-size: 0.9rem;                /* texte lÃ©gÃ¨rement plus petit */
}

/* Sâ€™INSCRIRE / REJOINDRE â€“ plus mis en avant */
.department-join .btn-register-dept {
    background: #8B0000;
    color: #ffffff;
    font-size: 1rem;                  /* un peu plus grand */
}

/* Effet hover commun */
.department-join .btn-join:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}

/* ==========================
   VERSION MOBILE
   ========================== */

/* ----------------------------------------
   FIX REJOINDRE CE DÃ‰PARTEMENT
   - Taille du titre
   - Espacement
   - Boutons centrÃ©s
---------------------------------------- */

/* Espacement correct du label REJOINDRE */
.department-join .section-label {
    margin-bottom: 1.4rem;
    position: static;
}

/* Titre un peu plus petit, plus propre, plus de chevauchement */
.department-join .section-title-large {
    font-size: 64px;        /* au lieu de 72 */
    line-height: 1.05;
    margin-top: 0;
    margin-bottom: 1.2rem;
    position: static;
}

/* Colonne texte : on laisse le texte alignÃ© Ã  gauche,
   mais on pourra centrer les boutons Ã  lâ€™intÃ©rieur */
.department-join .section-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Boutons centrÃ©s sous le texte, lâ€™un sous lâ€™autre */
.department-join .join-buttons {
    align-self: center;          /* centre le bloc de boutons sous le titre */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.8rem;
    width: auto;
}

/* Boutons rectangulaires, coins arrondis, largeur auto */
.department-join .btn-join {
    width: auto;                 /* largeur = contenu */
    min-width: 260px;            /* petite base pour garder la forme */
    padding: 0.9rem 2.4rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

/* "Nous contacter" lÃ©gÃ¨rement plus petit */
.department-join .btn-contact-dept {
    font-size: 0.9rem;
}

/* "S'inscrire / Rejoindre" un peu plus gros, mis en avant */
.department-join .btn-register-dept {
    font-size: 1rem;
}

/* =========================================
   FIX HERO "REJOINDRE CE DÃ‰PARTEMENT"
   (le gros titre en haut de la page)
   ========================================= */

/* Le petit mot REJOINDRE au-dessus du titre */
.department-hero .section-label {
    position: static !important;
    margin-bottom: 0.9rem !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
}

/* Le gros titre rouge : un peu plus petit, sans chevauchement */
.department-hero .section-title-large,
.department-hero .section-title-hero {
    font-size: 64px !important;        /* tu peux descendre Ã  60 si tu veux encore plus compact */
    line-height: 1.05 !important;
    margin-top: 0 !important;
    margin-bottom: 1rem !important;
    position: static !important;
}

/* Paragraphe sous le titre : garde un peu d'air */
.department-hero .section-description {
    margin-top: 0.5rem !important;
}

/* Styles pour la grille de services moderne */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.service-card-gradient {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4) !important;
}

/* Wrapper carousel services (boutons prev/next) */
.services-carousel-wrapper {
    position: relative;
    margin: 2rem 0;
}
.services-carousel-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.services-carousel-btn:hover {
    background: var(--color-primary-hover);
    transform: translateY(-50%) scale(1.08);
}
.services-carousel-btn.prev-btn { left: 8px; }
.services-carousel-btn.next-btn { right: 8px; }

/* Styles pour le bouton de don */
.btn-donation:hover {
    background: var(--color-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
}

/* ===== AmÃ©liorations des formulaires ===== */
.contact-form {
    background: rgba(139, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
    color: #333;
    margin-bottom: 0.75rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.form-group:focus-within .form-label {
    color: var(--color-primary);
}

.form-input,
.form-textarea,
select.form-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-input:hover,
.form-textarea:hover,
select.form-input:hover {
    border-color: #d0d7de;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.form-input:focus,
.form-textarea:focus,
select.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.1), 0 4px 12px rgba(139, 0, 0, 0.15);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #adb5bd;
    font-style: italic;
}

/* Style pour le select - police seulement */
select.form-input {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

/* Bouton de soumission amÃ©liorÃ© */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-white);
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

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

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

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--color-primary-hover) 0%, var(--color-primary) 100%);
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.btn-submit i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Animation pour les champs remplis */
.form-input:not(:placeholder-shown),
.form-textarea:not(:placeholder-shown) {
    border-color: #28a745;
    background: #f8fff9;
}

.form-input:not(:placeholder-shown):focus,
.form-textarea:not(:placeholder-shown):focus {
    border-color: var(--color-primary);
    background: #ffffff;
}

/* Responsive pour la grille de services */

/* NOM DU RESPONSABLE â€“ override global */
.leader-name {
    font-family: "Cal Sans", sans-serif;
    font-size: 90px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B0000 !important;
    margin: 0 0 1rem 0 !important;
    line-height: 1;
    white-space: nowrap !important;
}

/* si le nom est un lien (au cas oÃ¹) */
.leader-name a {
    color: #b11623 !important;
    text-decoration: none !important;
}

/* grand nom en arriÃ¨re-plan si tu utilises le span .leader-name-ghost */
.leader-name-ghost {
    position: absolute;
    top: -1.5rem;
    left: 0;
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.035);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
/* Nom du responsable â€” mÃªme style que NOTRE VISION */
.leader-name {
    font-family: "Cal Sans", sans-serif;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B0000;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

/* Optionnel â€” le nom ghost pÃ¢le derriÃ¨re */
.leader-name-ghost {
    font-family: "Cal Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(0,0,0,0.035);
    position: absolute;
    top: -0.7rem;
    left: 0;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

/* ========== ANIMATIONS â€“ keyframes centralisÃ©es (une seule fois) ========== */
@keyframes wordCycle {
    0% { opacity: 0; transform: translateY(30px) scale(0.9); filter: blur(8px); }
    10% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    30% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
    40% { opacity: 0; transform: translateY(-30px) scale(0.9); filter: blur(8px); }
    100% { opacity: 0; transform: translateY(30px) scale(0.9); filter: blur(8px); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
    0%, 100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.2); }
    50% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.5), 0 0 50px rgba(255, 215, 0, 0.3); }
}
@keyframes subtlePulse {
    0%, 100% { opacity: 0.95; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}
@keyframes sectionTitleReveal {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes underlineReveal {
    0% { opacity: 0; width: 0; }
    100% { opacity: 1; width: 80px; }
}
@keyframes taglineGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.3); opacity: 0.9; }
    50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 25px rgba(255, 107, 157, 0.4); opacity: 1; }
}
@keyframes brandPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.95; }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideInFromBottom {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes postItAppear {
    0% { opacity: 0; transform: translateY(-50px) rotate(-10deg) scale(0.8); }
    50% { opacity: 0.8; transform: translateY(10px) rotate(2deg) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}
@keyframes postItSettle {
    0% { transform: rotate(-2deg) translateX(-10px) scale(1.1); }
    100% { transform: rotate(-2deg) translateX(-10px) scale(1); }
}
@keyframes postItSettle1 {
    0% { transform: rotate(-5deg) translateX(-20px) translateY(10px) scale(1.1); }
    100% { transform: rotate(-2.5deg) translateX(-15px) translateY(5px) scale(1); }
}
@keyframes postItSettle2 {
    0% { transform: rotate(5deg) translateX(20px) translateY(-10px) scale(1.1); }
    100% { transform: rotate(2.2deg) translateX(12px) translateY(-3px) scale(1); }
}
@keyframes postItSettle3 {
    0% { transform: rotate(-4deg) translateX(-15px) translateY(8px) scale(1.1); }
    100% { transform: rotate(-1.8deg) translateX(-8px) translateY(4px) scale(1); }
}
@keyframes pinAppear {
    0% { transform: translateX(-50%) scale(0); }
    50% { transform: translateX(-50%) scale(1.3) rotate(180deg); }
    100% { transform: translateX(-50%) scale(1) rotate(360deg); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== LEGACY / COMPATIBILITY â€“ NE PAS MODIFIER ========== */
.vision-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.vision-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.event-card {
    min-width: 320px;
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.event-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.event-content { padding: 1.5rem; }
.event-date {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 1rem;
}
.event-time { color: #666; margin-bottom: 0.5rem; }
.event-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}
.event-description { color: #666; margin-bottom: 1rem; line-height: 1.6; }
.btn-detail {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
}
.btn-detail:hover { background: var(--color-primary-hover); }

/* Media query pour footer sur écrans de moins de 426px */
@media (max-width: 450px) {
    
    footer .footer-main {
        display: block;
    }

    footer .footer-links-grid {
        display: inline-block;
    }

    section .hero-content .hero-title {
        font-size: 20px;
    }

    section .container .section-title {
        font-size: 30px;
    }
    
    /* Masquer les liens "Commencer ici" et "Se joindre à nous" dans le header */
    .nav-link[href="commencer-ici.html"],
    .nav-link[href="se-joindre.html"] {
        display: none !important;
    }
    
    /* Réduire la taille du logo à 60px */
    .header .header-content .logo img,
    .header .header-content .logo-image {
        height: 60px !important;
        width: auto;
    }
    
    /* Modifier vision-text-block pour écrans < 450px */
    .vision .vision-text-block {
        display: block !important;
        width: 100%;
        text-align: center;
        margin: 0 10px;
    }
}

/* ================================
   CARROUSEL EVENTS - MOBILE : cartes plus petites + défilement
   ================================ */

@media (max-width: 600px) {

  .carousel-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 44px;
  }

  .carousel-container {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 12px;
    transform: none !important;
  }

  .carousel-container::-webkit-scrollbar {
    display: none;
  }

  .event-card-new {
    min-width: 220px;
    width: 220px;
    height: 300px;
    flex: 0 0 220px;
    scroll-snap-align: center;
    border-radius: 12px;
  }

  .event-info-overlay {
    padding: 0.85rem 1rem;
    gap: 0.4rem;
  }

  .event-title {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .event-detail-item {
    font-size: 0.82rem;
  }

  .event-learn-more {
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
  }

  .carousel-btn {
    display: flex !important;
    width: 36px;
    height: 36px;
    font-size: 18px;
    z-index: 5;
  }

  .prev-btn {
    left: 6px;
  }

  .next-btn {
    right: 6px;
  }
}

/* Téléphone : cartes encore plus petites */
@media (max-width: 480px) {
  .event-card-new {
    min-width: 175px !important;
    width: 175px !important;
    height: 250px !important;
    flex: 0 0 175px !important;
    border-radius: 10px;
  }

  .event-info-overlay {
    padding: 0.6rem 0.75rem !important;
    gap: 0.3rem !important;
  }

  .event-title {
    font-size: 0.95rem !important;
    line-height: 1.2 !important;
  }

  .event-detail-item {
    font-size: 0.75rem !important;
  }

  .event-learn-more {
    font-size: 0.75rem !important;
    padding: 0.35rem 0.5rem !important;
  }
}

/* ================================
   MENU DROPDOWN - Téléphone uniquement : liste sans titres
   Accueil, Commencer ici, Se joindre à nous + tous les départements
   ================================ */
@media (max-width: 480px) {
  .dropdown-menu-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 1.5rem 1.25rem !important;
    grid-template-columns: 1fr !important;
  }

  .dropdown-menu-section-title {
    display: none !important;
  }

  .dropdown-menu-section {
    margin-bottom: 0 !important;
  }

  /* Cache Notre vision, Nos événements, Nos programmes */
  .dropdown-menu-section:first-child .dropdown-menu-list li:nth-child(n+3) {
    display: none !important;
  }

  /* Cache Faire un don */
  .dropdown-menu-section:nth-child(3) .dropdown-menu-list li:nth-child(2) {
    display: none !important;
  }
}

/* ==================================================
   COMMENCER ICI : FOND IMAGES + TEXTE TRANSPARENT (zone Notre histoire)
   ================================================== */

.page-commencer-ici {
  position: relative;
  background: #0b0b12;
}

/* Fond avec 2 images fixes (1ère et 4ème) – visibles au scroll */
.page-commencer-ici::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(10, 10, 18, 0.55), rgba(10, 10, 18, 0.55)),
    url("visionremplacement2.jpeg") center / cover no-repeat,
    url("visionremplacement1.jpeg") center / cover no-repeat;
  background-attachment: fixed, fixed, fixed;
  background-blend-mode: normal, overlay, overlay;
}

.page-commencer-ici::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

/* Zone Notre histoire : cartes de texte en “verre” */
.page-commencer-ici .histoire-section,
.page-commencer-ici .histoire-section .histoire-item-content {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.page-commencer-ici .histoire-section .container {
  padding: 1.5rem;
}

.page-commencer-ici .histoire-section .histoire-item-content {
  padding: 1.5rem;
}

.page-commencer-ici .histoire-section,
.page-commencer-ici .histoire-section .histoire-item-content {
  color: rgba(255, 255, 255, 0.92);
}

.page-commencer-ici .histoire-section h2,
.page-commencer-ici .histoire-section h3,
.page-commencer-ici .histoire-section .histoire-item-content h3 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.page-commencer-ici .histoire-section p,
.page-commencer-ici .histoire-section .histoire-item-content p {
  color: rgba(255, 255, 255, 0.88);
}

/* Masquer toutes les images dans Notre histoire : uniquement textes + fond */
.page-commencer-ici .histoire-section .histoire-item-image {
  display: none !important;
}

/* Zone pasteur : photo en fond recouvrant toute la zone, texte lisible sans flou */
.page-commencer-ici .pasteur-section {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.page-commencer-ici .pasteur-section .container {
  padding: 0;
  max-width: none;
  width: 100%;
}

.page-commencer-ici .pasteur-card {
  position: relative;
  background: transparent;
  min-height: 780px;
  display: block;
  overflow: hidden;
  width: 100%;
}

/* La photo recouvre toute la zone (fond), nette */
.page-commencer-ici .pasteur-image-side {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.page-commencer-ici .pasteur-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Décale légèrement vers le haut pour éviter de couper la tête */
  object-position: center top;
  display: block;
}

/* Texte en overlay : fond semi-opaque sans blur pour garder la photo nette */
.page-commencer-ici .pasteur-text-side {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-left: auto;
  margin-right: 0;
  min-height: 780px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px 0 0 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 3rem 2.5rem;
}

.page-commencer-ici .pasteur-text-side .pasteur-name-large,
.page-commencer-ici .pasteur-text-side .pasteur-bio {
  color: rgba(255, 255, 255, 0.95);
}

.page-commencer-ici .pasteur-text-side .pasteur-name-large {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* ===================================
   COMMENCER ICI - RESPONSIVE MOBILE
   =================================== */
@media (max-width: 600px) {
  .page-commencer-ici::before {
    background-attachment: scroll, scroll, scroll;
  }

  .page-commencer-ici .page-hero {
    height: 300px;
  }

  .page-commencer-ici .page-hero-title {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .page-commencer-ici .breadcrumbs {
    flex-wrap: wrap;
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .page-commencer-ici .section-title-left {
    font-size: 2rem;
    white-space: normal;
    margin-top: 2.5rem !important;
  }

  /* Responsivité des titres */
  .page-commencer-ici .histoire-section h2.section-title-left {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .page-commencer-ici .histoire-section .histoire-item-content h3 {
    font-size: 1.25rem;
    line-height: 1.35;
  }

  .page-commencer-ici .histoire-item {
    grid-template-columns: 1fr;
  }

  .page-commencer-ici .histoire-item-right .histoire-item-content {
    order: initial;
  }

  /* Pasteur : photo toujours en fond, texte en bloc au-dessus */
  .page-commencer-ici .pasteur-card {
    min-height: 480px;
  }

  .page-commencer-ici .pasteur-text-side {
    max-width: 100%;
    margin: 0;
    min-height: 0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
  }
}

/* ===================================
   SE JOINDRE À NOUS - Mobile : en-tête sans photos, texte centré, police réduite
   =================================== */
@media (max-width: 600px) {
  .page-join .join-hero {
    overflow: visible !important;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .page-join .join-hero-left-section {
    display: none !important;
  }

  .page-join .join-hero-layout {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    align-content: start !important;
  }

  .page-join .join-hero-text-content {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    text-align: center !important;
    padding: 0.75rem 1rem !important;
    padding-left: 1rem !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }

  .page-join .join-hero-text-content .section-title-left {
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    font-size: 1.55rem !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .page-join .join-hero-description {
    text-align: center !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
  }

  .page-join .join-hero .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ===================================
   SE JOINDRE - CENTRAGE MOBILE (768px) + police réduite
   =================================== */
@media (max-width: 768px) {
  .page-join .join-hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .page-join .join-hero-left-section {
    display: none !important;
  }

  .page-join .join-hero-layout {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    width: 100%;
    justify-items: center !important;
    align-content: start !important;
  }

  .page-join .join-hero-text-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    padding-top: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    overflow: visible !important;
  }

  .page-join .join-hero-text-content h1,
  .page-join .join-hero-text-content h2,
  .page-join .join-hero-text-content .section-title-left,
  .page-join .join-hero-text-content p,
  .page-join .join-hero-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .page-join .join-hero-text-content .section-title-left {
    font-size: 1.65rem !important;
    line-height: 1.3 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

  .page-join .join-hero-description {
    font-size: 1.05rem !important;
    line-height: 1.5 !important;
  }

  .page-join .join-hero .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .page-join .join-main-title {
    font-size: 1.75rem !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
  }
}

/* Titres de section page Se joindre (Aimer Dieu, Faire un don, etc.) */
@media (max-width: 900px) {
  .page-join .join-main-title {
    font-size: 1.65rem !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }
}

/* Contact : un bloc en haut, l'autre en bas sur petits écrans */
@media (max-width: 900px) {
  .contact-form-section .form-wrapper {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .contact-form-section .contact-info-card {
    position: static;
  }
  .contact-form-section .contact-form-title {
    font-size: 2rem !important;
  }
}

/* Cartes Accompagnements & Services : défilement horizontal + boutons */
@media (max-width: 900px) {
  .services-carousel-wrapper {
    padding: 0 48px;
    overflow: visible;
  }
  .services-carousel-btn {
    display: flex !important;
  }
  .services-section .services-grid-modern.services-carousel-track {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 1.25rem;
    margin: 2rem 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 12px;
  }
  .services-section .services-grid-modern.services-carousel-track::-webkit-scrollbar {
    display: none;
  }
  .services-section .service-card-gradient {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 280px;
    max-height: 85vh;
    overflow-y: auto;
    scroll-snap-align: center;
    -webkit-overflow-scrolling: touch;
  }
  .services-section .service-title-gradient {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 480px) {
  .services-section .service-card-gradient {
    min-width: 260px !important;
    max-width: 260px !important;
  }
  .services-section .service-title-gradient {
    font-size: 1.35rem !important;
  }
}

/* Pages départements : masquer les images des activités sur mobile uniquement */
@media (max-width: 768px) {
  .department-activities .activity-image {
    display: none !important;
  }
  .department-activities .activity-content {
    grid-template-columns: 1fr !important;
  }
  .department-activities .activity-block-reverse .activity-image {
    order: unset;
  }
  .department-activities .activity-block-reverse .activity-content {
    grid-template-columns: 1fr !important;
  }
}

/* ===== Pages départements : retirer les images au niveau des titres (HÉRO uniquement) ===== */
body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-hero .section-image-wrapper {
  display: none !important;
}
body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-hero .section-presentation {
  display: block !important;
  grid-template-columns: 1fr !important;
}
body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-hero .section-presentation .section-text-content {
  max-width: 100% !important;
}

/* ===== Pages départements : réduire les titres sur mobile ===== */
@media (max-width: 768px) {
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-hero .section-title-hero {
    font-size: 2.25rem !important;
    line-height: 1.2 !important;
  }
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-hero .section-subtitle-hero {
    font-size: 1.35rem !important;
  }
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-hero .section-label {
    font-size: 1rem !important;
  }
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-hero .section-description {
    font-size: 0.95rem !important;
  }
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-main .section-title-large,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-vision .section-title-large,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-eligibility .section-title-large,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-join .section-title-large,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-leaders .section-title-large,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-leaders .leader-name-large,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-teams .section-title-large {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
  }
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .section-label,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-main .section-label,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-vision .section-label,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-eligibility .section-label,
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-join .section-label {
    font-size: 0.9rem !important;
  }
  body[class*="page-"]:not(.page-commencer-ici):not(.page-join) .department-activities .activity-title {
    font-size: 1.25rem !important;
  }
}

/* Correction encodage : puces listes (remplace caractères corrompus âœ", â€¢, â–¸) */
.eligibility-list-simple li::before {
  content: '\2713' !important;
}
.activity-sublist li::before {
  content: "\2022" !important;
}
.team-tasks li::before {
  content: "\25B8" !important;
}

/* ===== Responsables : réduire titres + noms, sous-titre sur une ligne ===== */
.leader-section .leader-label,
body[class*="page-"] .department-leaders .leader-label {
  font-size: 1.25rem !important;
}
.leader-name {
  font-size: 2.5rem !important;
}
/* Ne pas surcharger la carte responsable (éviter superposition des titres) */
.leader-section .leader-layout .leader-name {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem) !important;
}
.leader-section .leader-name-ghost,
.leader-name-ghost {
  font-size: 3rem !important;
}
.leader-name-large {
  font-size: 2.5rem !important;
}
body[class*="page-"] .department-leaders .section-title-large {
  font-size: 2rem !important;
}
.leader-role {
  white-space: nowrap !important;
  font-size: 0.95rem !important;
}
.page-hommes .leader-name-large {
  font-size: 2.5rem !important;
}

/* ===== Page Nouveaux convertis ===== */
.page-nouveaux-convertis .nouveaux-convertis-main {
  padding: 4rem 0 5rem;
  min-height: 60vh;
}
.nouveaux-convertis-big-title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary) !important;
  margin: 0 0 2rem 0;
  padding: 1.25rem 2rem;
  border: 4px solid var(--color-primary);
  border-radius: 12px;
  display: block !important;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.nouveaux-convertis-hero {
  text-align: center;
  margin-bottom: 3rem;
}
.nouveaux-convertis-title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;
}
.nouveaux-convertis-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted, #555);
  max-width: 36rem;
  margin: 0 auto;
}
.nouveaux-convertis-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 42rem;
  margin: 0 auto;
}
.nouveaux-convertis-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nouveaux-convertis-card:hover {
  border-color: var(--color-accent, #8b4513);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.nouveaux-convertis-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 69, 19, 0.1);
  color: var(--color-accent, #8b4513);
  border-radius: 10px;
  font-size: 1.25rem;
}
.nouveaux-convertis-card-title {
  flex: 1;
  font-family: var(--font-heading, Georgia, serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
  text-align: left;
}
.nouveaux-convertis-card-arrow {
  flex-shrink: 0;
  color: var(--color-accent, #8b4513);
  font-size: 1rem;
}
@media (max-width: 768px) {
  .nouveaux-convertis-title { font-size: 2rem; }
  .nouveaux-convertis-card-title { font-size: 1.05rem; }
  .nouveaux-convertis-card { padding: 1rem 1.25rem; }
}
.nouveaux-convertis-visit {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}
.nouveaux-convertis-visit-link {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  color: var(--color-accent, #8b4513);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--color-accent, #8b4513);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.nouveaux-convertis-visit-link:hover {
  background: var(--color-accent, #8b4513);
  color: #fff;
}

/* Pages images (Dieu t'aime, Recommencer à zéro, Assurance du salut) - sans titre */
.page-standalone .page-images-title,
.page-standalone .page-images-breadcrumb-current,
.page-standalone .page-images-main h1 {
  display: none !important;
}
.page-images-main { padding-top: 2rem; }
.page-images-breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-muted, #555);
}
.page-images-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent, #8b4513);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}
.page-images-back:hover { text-decoration: underline; }
.page-images-breadcrumb-current {
  font-size: 0.95rem;
  color: var(--color-text-muted, #555);
  margin: 0 0 1rem 0;
}
.page-images-breadcrumb a {
  color: var(--color-accent, #8b4513);
  text-decoration: none;
}
.page-images-breadcrumb a:hover { text-decoration: underline; }
.page-images-title {
  font-family: var(--font-heading, Georgia, serif);
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}
.page-images-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.page-images-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .page-images-title { font-size: 1.5rem; }
  .page-images-gallery { gap: 1.5rem; }
}

/* ============================================================
   RESPONSIVITÉ – Tous types d'appareils (mobile, tablette, desktop)
   ============================================================ */

/* Images fluides partout */
img {
  max-width: 100%;
  height: auto;
}

/* Tablette et petit desktop (1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 1.25rem; }
  .header-content { font-size: 16px; }
  .logo img { height: 72px; }
  .footer-main { gap: 2rem; }
  .footer-links-grid { gap: 1.5rem; margin-left: 2rem; }
  .nouveaux-convertis-main { padding: 3rem 0 4rem; }
  .nouveaux-convertis-big-title { font-size: clamp(1.75rem, 4.5vw, 3rem); padding: 1rem 1.5rem; }
  .page-images-gallery { max-width: 100%; padding: 0 0.5rem; }
}

/* Tablette portrait / grand mobile (768px) */
@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .logo img { height: 64px; }
  .nav-link { font-size: 0.95rem; padding: 0.4rem 0.5rem; }
  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .footer-links-grid { grid-template-columns: 1fr; margin-left: 0; gap: 1.5rem; justify-items: center; }
  .footer-newsletter { align-items: center; }
  .footer-address-section { text-align: center; }
  .footer-address-section .footer-address { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nouveaux-convertis-main { padding: 2.5rem 0 3.5rem; min-height: 50vh; }
  .nouveaux-convertis-big-title {
    font-size: clamp(1.5rem, 5vw, 2.25rem);
    padding: 0.9rem 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    max-width: 95%;
  }
  .nouveaux-convertis-title { font-size: 1.75rem; }
  .nouveaux-convertis-intro { font-size: 1rem; padding: 0 0.5rem; }
  .nouveaux-convertis-links { max-width: 100%; padding: 0 0.25rem; gap: 1rem; }
  .nouveaux-convertis-card { padding: 1rem 1.25rem; gap: 0.75rem; }
  .nouveaux-convertis-card-icon { width: 42px; height: 42px; font-size: 1.1rem; }
  .nouveaux-convertis-card-title { font-size: 1rem; }
  .nouveaux-convertis-visit { margin-top: 2rem; margin-bottom: 1.5rem; }
  .page-images-main { padding-top: 1.5rem; }
  .page-images-breadcrumb { font-size: 0.85rem; }
  .page-images-back { padding: 0.4rem 0; font-size: 0.9rem; }
  .page-images-gallery { gap: 1.25rem; padding: 0 0.25rem; }
}

/* Mobile (600px) */
@media (max-width: 600px) {
  .container { padding: 0 0.875rem; }
  .logo img { height: 56px; }
  .header-content { gap: 0.5rem; }
  .nav { flex-wrap: wrap; justify-content: flex-end; }
  .nav-link { font-size: 0.9rem; }
  .footer-column h3 { font-size: 0.9rem; margin-bottom: 1rem; }
  .footer-column a { font-size: 0.85rem; }
  .footer-slogan { font-size: 1rem; }
  .footer-slogan-section { padding: 0.5rem 1rem; }
  .nouveaux-convertis-big-title {
    font-size: clamp(1.35rem, 5.5vw, 1.85rem);
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    border-width: 3px;
  }
  .nouveaux-convertis-title { font-size: 1.5rem; }
  .nouveaux-convertis-card { padding: 0.875rem 1rem; flex-wrap: wrap; }
  .nouveaux-convertis-card-title { font-size: 0.95rem; min-width: 0; }
  .nouveaux-convertis-visit-link { padding: 0.5rem 1rem; font-size: 0.95rem; }
  .page-images-gallery { gap: 1rem; }
}

/* Petit mobile (480px) */
@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .logo img { height: 48px; }
  .footer-title { font-size: 1.4rem; }
  .footer-logo img { height: 48px; }
  .nouveaux-convertis-big-title {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    padding: 0.6rem 0.875rem;
    letter-spacing: 0.03em;
    max-width: 100%;
  }
  .nouveaux-convertis-title { font-size: 1.35rem; }
  .nouveaux-convertis-intro { font-size: 0.95rem; }
  .nouveaux-convertis-card { padding: 0.75rem 0.875rem; gap: 0.6rem; }
  .nouveaux-convertis-card-icon { width: 38px; height: 38px; font-size: 1rem; }
  .nouveaux-convertis-card-title { font-size: 0.9rem; }
  .page-images-back { font-size: 0.85rem; }
  .page-images-gallery img { border-radius: 6px; }
}

/* Très petit mobile (360px et moins) */
@media (max-width: 360px) {
  .container { padding: 0 0.5rem; }
  .logo img { height: 44px; }
  .nouveaux-convertis-big-title { font-size: 1.15rem; padding: 0.5rem 0.75rem; }
  .nouveaux-convertis-title { font-size: 1.2rem; }
  .nouveaux-convertis-card-title { font-size: 0.85rem; }
  body { font-size: 15px; }
}

/* ============================================================
   Survol des événements : afficher complètement l'affiche
   ============================================================ */

/* Animation douce pour le bloc d'informations de l'événement */
.event-info-overlay {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Au survol : cacher le dégradé et le bloc texte pour voir l'image entière */
.event-card-new:hover .event-overlay-gradient {
  opacity: 0 !important;
}

.event-card-new:hover .event-info-overlay {
  opacity: 0;
  transform: translateY(100%);
}
