.elementor-430 .elementor-element.elementor-element-e28292c{--display:flex;}.elementor-430 .elementor-element.elementor-element-ddb8e54{--display:flex;}/* Start custom CSS for html, class: .elementor-element-61d84a1 *//* ── VARIABLES ET STYLES DE BASE ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&amp;family=Playfair+Display:wght@600;700&amp;display=swap');

:root {
  --af-bleu: #1a171b;
  --af-rouge: #da002e;
  --af-rouge-hover: #c50410;
  --af-bg-light: #f8f9fa;
  --af-border: #e8e6df;
  --af-texte: #1c1c1c;
  --af-texte-mut: #666666;
  --encre: #1a171b;
  --or: #e0a96d;
  --regle-clair: 1px solid rgba(255, 255, 255, 0.15);
  --font-titre: 'Playfair Display', Georgia, serif;
  --font-corps: 'Outfit', sans-serif;
  --ombre: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  --ombre-hover: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
  --radius: 12px;
}

.af-wrapper {
  font-family: var(--font-corps);
  color: var(--af-texte);
  line-height: 1.6;
  width: 100%;
}

.af-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.af-section {
  padding: 60px 0;
}

.af-bg-alt {
  background-color: var(--af-bg-light);
  border-radius: var(--radius);
}

/* ---------- BANDEAU "AUJOURD'HUI" (MARQUEE) ---------- */
.aujourdhui {
  background: var(--encre);
  color: rgba(255, 255, 255, 0.9);
  border-bottom: var(--regle-clair);
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 25px;
}

.aujourdhui-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: defiler 34s linear infinite;
}

.aujourdhui-track:hover {
  animation-play-state: paused;
}

@keyframes defiler {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.aujourdhui-label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  padding: 15px 22px;
  white-space: nowrap;
  align-self: center;
  border-right: var(--regle-clair);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.aujourdhui-item {
  font-size: 13.5px;
  padding: 15px 22px;
  white-space: nowrap;
  border-right: var(--regle-clair);
  display: flex;
  align-items: center;
  gap: 9px;
}

.point {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
  flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.af-animate {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── BANNIÈRE HERO ── */
.af-hero {
  position: relative;
  background: linear-gradient(135deg, #1a171b 0%, #2d2a2e 100%);
  color: #fff;
  padding: 70px 40px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.af-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?w=1600&amp;q=80') center/cover no-repeat;
  opacity: 0.2;
  transition: transform 1.5s ease;
}

.af-hero:hover .af-hero-bg {
  transform: scale(1.05);
}

.af-hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
}

.af-badge {
  display: inline-block;
  background: var(--af-rouge);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.af-hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.af-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.af-btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.af-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.af-btn-primary {
  background: var(--af-rouge);
  color: #fff;
}

.af-btn-primary:hover {
  background: var(--af-rouge-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(218, 0, 46, 0.35);
}

.af-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.af-btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ── TITRES ET GRILLES ── */
.af-title {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--af-bleu);
  margin-bottom: 30px;
}

.af-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.af-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.af-grid-duo {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: start;
}

@media (max-width: 900px) {
  .af-grid-duo {
    grid-template-columns: 1fr;
  }
}

/* ── CARTES D'ACCÈS RAPIDE ── */
.af-card {
  background: #fff;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--af-border);
  box-shadow: var(--ombre);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.af-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--af-rouge);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.af-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ombre-hover);
}

.af-card:hover::before {
  transform: scaleX(1);
}

.af-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, #ED2939 0%, #C01120 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1;
  transition: all 0.3s ease;
}

.af-card:hover .af-icon {
  transform: rotate(-5deg) scale(1.08);
}

.af-card h3 {
  font-size: 17px;
  color: var(--af-bleu);
  margin-bottom: 8px;
}

.af-card p {
  font-size: 13.5px;
  color: var(--af-texte-mut);
  flex-grow: 1;
}

.af-arrow {
  color: var(--af-rouge);
  font-weight: 700;
  margin-top: 14px;
  align-self: flex-end;
  transition: transform 0.3s ease;
}

.af-card:hover .af-arrow {
  transform: translateX(6px);
}

/* ── MOT DU JOUR (Image 1) ── */
.mot-du-jour-card {
  background: #1a171b;
  color: #fff;
  padding: 35px 30px;
  border-radius: var(--radius);
  box-shadow: var(--ombre);
}

.mot-subtitle {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 600;
}

.mot-title {
  font-family: var(--font-titre);
  font-size: 2.8rem;
  color: #fff;
  margin: 10px 0 16px 0;
}

.mot-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
}

.mot-link {
  color: var(--or);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s;
}

.mot-link:hover {
  opacity: 0.8;
}

/* ── TARIFS &amp; INFOS (Image 1) ── */
.tarifs-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tarifs-header {
  background: var(--af-rouge);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tarif-row {
  background: #fff;
  border: 1px solid var(--af-border);
  padding: 18px 20px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--ombre);
}

.tarif-row h3 {
  font-size: 16px;
  color: var(--af-bleu);
  margin-bottom: 4px;
}

.tarif-row p {
  font-size: 12px;
  color: var(--af-texte-mut);
}

.tarif-price {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--af-bleu);
}

.horaires-info {
  font-size: 13.5px;
  color: var(--af-texte);
  padding: 5px 0;
}

.horaires-info p {
  color: var(--af-texte-mut);
  font-size: 13px;
}

.culturetheque-alert {
  background: #eef9f0;
  border-left: 4px solid #28a745;
  padding: 12px 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13.5px;
  color: #155724;
}

/* ── POURQUOI NOUS CHOISIR (Image 2) ── */
.why-subtitle {
  font-size: 11px;
  color: var(--af-rouge);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--af-border);
  text-align: center;
  box-shadow: var(--ombre);
}

.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px auto;
  border: 1px solid var(--af-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.why-card h3 {
  font-family: var(--font-titre);
  font-size: 18px;
  color: var(--af-bleu);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: var(--af-texte-mut);
  line-height: 1.5;
}

/* ── EVENEMENTS ── */
.af-card-event {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--af-border);
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: all 0.35s ease;
}

.af-card-event:hover {
  transform: translateY(-6px);
  box-shadow: var(--ombre-hover);
}

.af-event-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.af-card-event:hover .af-event-img {
  transform: scale(1.06);
}

.af-event-body {
  padding: 20px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.af-event-date {
  font-size: 12px;
  color: var(--af-rouge);
  font-weight: 600;
}

.af-event-body h3 {
  font-family: var(--font-titre);
  font-size: 18px;
  margin: 6px 0;
}

.af-event-body p {
  font-size: 13.5px;
  color: var(--af-texte-mut);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .af-hero { padding: 40px 20px; }
  .af-btn-group { flex-direction: column; }
  .af-btn { text-align: center; }
  .tarifs-header { flex-direction: column; align-items: flex-start; gap: 5px; }
  .tarif-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8d721f6 */@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&amp;display=swap');

.institutional-partners {
  width: 100%;
  background-color: #f9f9f9; /* Fond très légèrement grisé/clair pour faire ressortir les logos, modifiable en #ffffff */
  padding: 60px 20px;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.institutional-partners .partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Titre stylé avec un rappel de la couleur rouge Alianza discrète */
.institutional-partners .partners-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1819;
  margin-bottom: 40px;
  position: relative;
}

.institutional-partners .partners-heading span {
  background-color: #f9f9f9; /* Assure-toi de mettre la même couleur que .institutional-partners background-color */
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.institutional-partners .partners-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
  z-index: 1;
}

/* Grille flexible et adaptative des logos */
.institutional-partners .logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* Style de chaque conteneur de logo */
.institutional-partners .logo-item {
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 85px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Style des images à l'intérieur */
.institutional-partners .logo-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all 0.3s ease;
}

/* Effet au survol : les logos reprennent leurs couleurs et s'illuminent subtilement */
.institutional-partners .logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(216, 0, 50, 0.08);
  border-color: rgba(216, 0, 50, 0.2);
}

.institutional-partners .logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive pour mobiles */
@media (max-width: 768px) {
  .institutional-partners .logos-grid {
    gap: 15px;
  }
  
  .institutional-partners .logo-item {
    width: 130px;
    height: 75px;
    padding: 10px 15px;
  }
}/* End custom CSS */