/*
Theme Name: EBN Theme
Theme URI: https://wordpress.org/themes/EBN_Test/
Author: Ton Nom
Author URI: https://wordpress.org
Description: Thème sur mesure pour l'Église Bonne Nouvelle.
Version: 1.0
Text Domain: ebn-theme
*/

/* Fonts */
@font-face {
  font-family: 'Alex';
  src: url('fonts/Alexross-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kids';
  src: url('fonts/Kids-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kris';
  src: url('fonts/Kristenalwaysnotsonormal.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MyUgly';
  src: url('fonts/MyUglyHandwriting-Regular.otf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'MyUgly';
  src: url('fonts/Vogue.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TrajanRegular';
  src: url('fonts/Trajan-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* Global Styles */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f8f8;
}

  @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

a {
  text-decoration: none;
  color: inherit;
}


/* === POLICES === */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Cinzel:wght@400;700&display=swap');

/* === HEADER GLOBAL === */
.header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
  font-family: 'Open Sans', sans-serif;
}


/* === NAVBAR === */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  z-index: 3;
  background: transparent;
  box-sizing: border-box;
}

/* Logo */
.logo img {
  height: 70px !important;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Liens de navigation */
.nav-links {
  display: flex;
  gap: 35px;
}


.nav-links a {
  color: #ffffffba !important; /* Blanc avec transparence (Hex Alpha) */
  text-transform: uppercase; font-size: 13px; font-weight: 600; 
  letter-spacing: 1px; margin-left: 25px; font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #052e49;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff !important;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Bouton menu mobile (masqué par défaut) */
.menu-toggle {
  display: none;
}

/* === CONTENU CENTRAL (h1 + p) === */
.slider-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  animation: fadeInContent 1.2s ease 0.5s forwards;
}

@keyframes fadeInContent {
  to { opacity: 1; }
}

/* Animation subtile du h1 + p */
.slider-content h1, 
.slider-content p {
  transform: translateY(20px);
  opacity: 0;
  animation: fadeUp 1.5s ease forwards;
}

.slider-content p {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Titre principal */
.slider-content h1 {
  font-family: 'TrajanRegular', 'Cinzel', Baskerville, 'Palatino Linotype', Palatino, 'Century Schoolbook L', 'Times New Roman', serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 3.5rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

/* Sous-titre */
.slider-content h1 + p {
  font-family: 'Cinzel', Baskerville, 'Palatino Linotype', Palatino, 'Century Schoolbook L', 'Times New Roman', serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #e0e0e0;
  letter-spacing: 1px;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* === FLÈCHE VERS LE BAS === */
.scroll-down {
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  z-index: 3;
  animation: bounce 2s infinite;
  text-decoration: none;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

/* === RESPONSIVE === */
/* === MENU MOBILE FULLSCREEN === */
@media (max-width: 900px) {
  .nav-links {
    position: fixed; /* plein écran */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none; /* caché par défaut */
    gap: 30px;
    z-index: 10;
  }

  .nav-links a {
    font-size: 1.8rem;
    padding: 10px 0;
    text-align: center;
    border: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 11;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle .bar {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px auto;
    background-color: #fff;
    transition: all 0.3s ease;
  }

  /* Hamburger animation */
  .menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
  
  .slider-content h1 {
    font-size: 2.2rem;
  }

  .slider-content h1 + p {
    font-size: 1rem;
  }
}
/* Fin du Header



/* === MAIN CONTENT (Corps de la page) === */
main {
    padding-top: 50px; /* Espace après le header */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-family: 'TrajanRegular', 'Cinzel', Baskerville, 'Palatino Linotype', Palatino, 'Century Schoolbook L', 'Times New Roman', serif;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1rem;
}

h3 {
    font-family: 'TrajanRegular', 'Cinzel', Baskerville, 'Palatino Linotype', Palatino, 'Century Schoolbook L', 'Times New Roman', serif;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1rem;
}

/* ==========================================================================
   ANIMATION GLOBALE DU TITRE DU HEADER (Toutes les pages)
   ========================================================================== */

   .hero-title {
    font-family: 'Cinzel', 'Didot', serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(3rem, 7vw, 4.5rem);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin: 0;
    position: relative;
    display: inline-block;

    /* Animation de départ */
    opacity: 0;
    transform: translateY(30px);
    animation: titleFadeUpPremium 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

/* Ligne de soulignage Or */
.hero-title::after {
    content: '';
    display: block;
    height: 1px;
    background-color: #C5A059; /* Couleur Or */
    margin: 25px auto 0;

    /* Animation de départ */
    width: 0;
    opacity: 0;
    animation: lineGrowPremium 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 1s;
}

/* Keyframes (Mouvements) */
@keyframes titleFadeUpPremium {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrowPremium {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 150px;
        opacity: 1;
    }
}

/* === 1. Section d'Accueil & Invitation === */
.home-intro {
    background-color: transparent;
    padding-top: 10px;
    padding-bottom: 70px;
    text-align: center;
}

.home-intro p {
    /* Utilisation de la police Open Sans pour un look moderne et très lisible */
    font-family: 'Open Sans', sans-serif; 
    font-weight: 400; 
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333; 
}

/* Boutons d'Action (CTAs) */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: #052e49;
    color: #ffffff;
}

.primary-btn:hover {
    background-color: #083c61; /* Assombrir légèrement */
}

.secondary-btn {
    background-color: transparent;
    color: #052e49;
    border-color: #052e49;
}

.secondary-btn:hover {
    background-color: #f0f0f0;
    color: #052e49;
}

/* === 2. Section Événements Clés === */
.home-program {
    background-color: #f0f0f0;
    padding: 50px 0;
}

.container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.program-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.program-item h3 {
    color: #052e49;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.program-item .time {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
}

.link-details {
    color: #052e49;
    font-weight: 600;
    text-decoration: underline;
    display: block;
    margin-top: 15px;
}

/* === 3. Section Piliers/Valeurs === */
.home-values {
    padding: 70px 20px;
    text-align: center;
}

.home-values h3 {
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 250px; /* Permet un bon redimensionnement */
    padding: 25px;
    border-left: 4px solid #052e49; /* Bande de couleur pour l'impact */
    text-align: left;
    background-color: #fdfdfd;
}

.value-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #052e49;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* --- SECTION VIDÉOS YOUTUBE (Version finale optimisée) --- */
.home-videos-feed {
    background-color: #f0f0f0;
    padding: 70px 20px;
    text-align: center;
}

.home-videos-feed h2 {
    font-family: 'TrajanRegular', 'Cinzel', Baskerville, 'Palatino Linotype', Palatino, 'Century Schoolbook L', 'Times New Roman', serif;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1rem;
}

.home-videos-feed p {
    font-family: 'Open Sans', sans-serif; 
    font-weight: 400; 
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #333; 
}

/* --- GRILLE CONTENANT LE SHORTCODE --- */
.videos-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    
    max-width: 1200px;
    margin: 0 auto 30px; 
    padding: 0 !important;
}

/* 1. FORCER LA LARGEUR DU CONTENEUR GÉNÉRÉ PAR LE SHORTCODE */
/* Cible l'élément <div id="sb_youtube"> ou l'élément principal du plugin. 
   C'est la solution pour que les vidéos s'agrandissent */
.videos-grid > div,
#sb_youtube, /* ID commun pour le conteneur global du flux */
.cff-feed-container { /* Classe courante de conteneur de flux */
    /* Force l'élément à s'étendre à une largeur visuelle raisonnable (90% du conteneur parent) */
    width: 90% !important; 
    max-width: 1000px !important; /* Limite maximale */
    margin: 0 auto !important; /* Centrer le bloc */
    padding: 0 !important;
    
    /* Supprimez les styles d'ombre ou de fond si vous voulez que les vidéos ne soient pas dans une boîte unique */
    box-shadow: none !important; 
    background-color: transparent !important;
}

/* 2. AGGRANDIR LES VIDÉOS INDIVIDUELLES (les "cartes") */
.sb_youtube_video_wrap, /* Conteneur de la carte vidéo (Smash Balloon) */
.cff-item { 
    /* La taille de 350px par élément fonctionne bien pour 3 colonnes */
    width: 350px !important; 
    margin: 15px !important; 
    
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.sb_youtube_video_wrap:hover,
.cff-item:hover {
    transform: translateY(-5px);
}

/* 3. Assurer que les vignettes (images) et le bouton play sont correctement dimensionnés */
.sbe-item img, .cff-item img, 
.sbe-video-thumbnail-wrap, .cff-video-thumbnail-wrap {
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}


/* --- Bouton CTA --- */
.cta-videos {
    margin-top: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    /* Réduction subtile de la taille pour les petits écrans */
    .sb_youtube_video_wrap,
    .cff-item {
        width: 300px !important;
    }
}

@media (max-width: 650px) {
    /* Une seule colonne sur mobile */
    .videos-grid {
        flex-direction: column;
        align-items: center;
    }
    /* Les vidéos prennent plus de place sur mobile */
    .sb_youtube_video_wrap,
    .cff-item {
        width: 90% !important;
        max-width: 400px;
        margin: 15px 0 !important;
    }
}







/* RESSOURCES PAGE */
/* === 1. STYLES DE BASE ET CONTENEURS === */
.section-videos-media{ 
  background-color: #fff;
}
.container-premium {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.premium-section {
    padding: 80px 0;
    text-align: center;
}

h2 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 2rem;
    color: #333;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.subtitle-media {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

/* --- GRILLES MÉDIAS (YouTube & SoundCloud) --- */
.media-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
    justify-content: center;
    padding: 0 10px;
}

/* Grille YouTube (3 colonnes de vidéos) */
.media-grid-3-cols {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Grille SoundCloud (3 colonnes de cartes de playlists) */
.media-grid-3-items {
    grid-template-columns: repeat(3, 1fr); 
    max-width: 1100px; /* Limiter la largeur de la grille audio pour l'alignement */
    margin: 0 auto 50px;
}

/* Styles pour le bouton CTA de section */
.premium-cta {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    background-color: #052e49;
    color: #ffffff;
    transition: background-color 0.3s, transform 0.3s;
}

.premium-cta:hover {
    background-color: #083c61;
    transform: translateY(-2px);
}

/* --- STYLES DES CARTES DE PLAYLISTS (Si non iframe) --- */
.section-audio-media {
    background-color: #f8f8f8; 
}

.playlist-card {
    display: flex;
    align-items: center;
    text-align: left;
    
    background-color: #ffffff;
    border-left: 5px solid #052e49; 
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    min-height: 120px; 
}

.playlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-icon-play {
    font-size: 2.5rem;
    color: #052e49;
    line-height: 1;
    margin-right: 15px;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid #052e49;
}

.playlist-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 5px 0;
}

.card-meta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #052e49;
    display: block;
}

/* --- SECTION ARTICLES ET LIENS (Links) --- */
.section-articles-links {
    background-color: #f0f0f0;
}

.link-cards-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.link-card {
    flex: 1 1 280px;
    min-height: 160px;
    background-color: #fff;
    padding: 30px;
    text-align: left;
    border-radius: 8px;
    border-top: 5px solid #052e49;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.link-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: #052e49;
    margin-top: 0;
    margin-bottom: 5px;
}

.tag {
    display: inline-block;
    background-color: #d6d6d6;
    color: #333;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 10px;
    text-transform: uppercase;
}

/* --- RESPONSIVE GENERAL --- */
@media (max-width: 1024px) {
    .container-premium {
        padding: 0 20px;
    }

    /* Passer les grilles à 2 colonnes sur tablette */
    .media-grid-3-cols,
    .media-grid-3-items {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 650px) {
    /* Passage à 1 colonne sur mobile */
    .media-grid-3-cols,
    .media-grid-3-items {
        grid-template-columns: 1fr; 
    }

    .link-cards-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .link-card {
        flex: 1 1 90%;
        max-width: 450px;
    }
}




/* A Propos */
/* === 1. STYLES SPÉCIFIQUES À LA PAGE À PROPOS === */
/* === 1. STYLES GLOBALS ET VISION === */
.page-about-main {
    background-color: #fcfcfc;
}

.premium-section {
    padding: 60px 0 80px;
}

/* Grille principale Content + Sidebar (BI-COLONNE) */
.content-sidebar-grid {
    display: grid;
    /* Création de deux colonnes : 1.8 partie pour le contenu, 1 partie pour la sidebar (environ 65/35) */
    grid-template-columns: 1.8fr 1fr; 
    gap: 60px; /* Grand espace entre les colonnes pour aérer */
    max-width: 1200px;
    margin: 0 auto;
    text-align: left; /* Aligner le texte à gauche par défaut */
}

/* --- Colonne Principale (Texte Long) --- */
.main-content-area {
    padding-right: 20px; /* Espace subtil avant la barre latérale */
}

.section-title-left {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
}

.main-content-area p {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.mission-category-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #052e49;
    margin-top: 35px;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
}

.separator-mission {
    margin: 40px 0;
    border: 0;
    height: 1px;
    background: #e0e0e0;
}

/* Bloc de Citation (Bible) - Style Adouci */
.bible-quote {
    background-color: #f5f5f5;
    border-left: 6px solid #a8b8c7;
    padding: 25px 35px;
    margin: 30px 0; /* Pas de marge auto pour ne pas le centrer */
    border-radius: 4px;
    font-style: italic;
}

/* --- Colonne de Liens (Sidebar) --- */
/* --- Colonne de Liens (Sidebar) --- */
.sidebar-links-area {
    padding-top: 20px;
}

.sidebar-link-card {
    display: flex;
    align-items: center;
    background-color: #ffffff; /* Fond blanc */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-link-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sidebar-link-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333; /* Rendre le titre noir, plus élégant */
    margin: 0 0 5px 0;
}

.sidebar-link-card p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Uniformisation de l'icône pour les 3 liens */
.link-icon {
    font-size: 1.8rem;
    color: #052e49; /* Utilisation de la couleur primaire */
    margin-right: 15px;
}

/* Style spécifique pour le CTA principal (MAINTENANT UNIFORME) */
.sidebar-link-card.primary-action-sidebar {
    /* Suppression du background bleu pour uniformiser avec les deux autres */
    background-color: #ffffff;
    border: 1px solid #c0c0c0; /* Bordure plus marquée pour l'action */
    color: inherit;
}

.sidebar-link-card.primary-action-sidebar h3 {
    color: #052e49; /* Mettre le titre en couleur primaire pour l'accentuer */
}
/* Le reste du CSS du .primary-action-sidebar peut être supprimé s'il n'est pas utilisé ailleurs. */

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
    /* Empiler les colonnes sur les tablettes */
    .content-sidebar-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-content-area {
        padding-right: 0;
    }
}

/* Fin à propos */





/* Footer */
/* ========== FOOTER ========== */
/* === FOOTER GLOBAL === */



