﻿:root {
  --bg: #f7f3eb;
  --surface: #ffffff;
  --surface-muted: #fbf8f2;
  --surface-soft: #f3eadc;
  --text: #1c3a2d;
  --text-muted: #546451;
  --accent: #0f6b3a;
  --accent-soft: #8bab86;
  --accent-strong: #d4af37;
  --highlight: #f5b500;
  --border: rgba(28, 58, 45, 0.16);
  --shadow: 0 20px 40px rgba(17, 44, 28, 0.1);
  --radius: 24px;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 30%), var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(15, 55, 35, 0.12);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 55, 35, 0.08);
}

.nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #153825;
  text-decoration: none;
  font-weight: 700;
}

.brand-link .logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  background: #f7f3eb;
}

.brand-text {
  font-size: 1rem;
  color: #153825;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(15, 107, 58, 0.12);
  border: 1px solid rgba(15, 107, 58, 0.18);
  color: #0f6b3a;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.contact-link:hover {
  background: rgba(15, 107, 58, 0.18);
  transform: translateY(-1px);
}

.contact-link span.icon {
  color: #0f6b3a;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f5f1e8;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.icon {
  display: inline-flex;
  font-size: 1rem;
}

.icon-svg {
  width: 22px;
  height: 22px;
  display: inline-flex;
  fill: currentColor;
}

.social-icons {
  align-items: center;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  min-height: 45px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.14);
}

.social-icon.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976 40%, #962fbf 70%, #405de6 100%);
}

.social-icon.youtube {
  background: #ff0000;
}

.social-icon.x {
  background: #000;
}

.social-icon.telegram {
  background: #0088cc;
}

.carousel-slide {
  position: relative;
}

.carousel-slide .slide-caption,
.caroussel-slide .slide-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: auto;
  max-width: 58%;
  padding: 1rem 1.2rem;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 16px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.carousel-slide .slide-caption h3,
.caroussel-slide .slide-caption h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.carousel-slide .slide-caption p,
.caroussel-slide .slide-caption p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
}

.main-nav a {
  color: #153825;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
  border-radius: 999px;
}

.main-nav a:hover {
  color: #0b8a4e;
  background: rgba(15, 107, 58, 0.08);
  transform: translateY(-1px);
}

.main-nav a.active {
  color: #0f6b3a;
  background: rgba(212, 175, 55, 0.14);
  box-shadow: inset 0 0 0 1px rgba(15, 107, 58, 0.15);
}

.hero {
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(231, 244, 235, 0.95) 0%, rgba(255, 249, 241, 1) 100%);
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(15, 55, 35, 0.08);
}

.hero-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 2.5vw, 3rem);
  color: var(--accent);
}

.hero-content p {
  max-width: 40rem;
  line-height: 1.7;
  color: #2b4f3b;
}

.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.95rem 1.7rem;
  background: linear-gradient(135deg, var(--accent), #0b8a4e);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(15, 107, 58, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0b8a4e, var(--accent-strong));
  box-shadow: 0 20px 38px rgba(15, 107, 58, 0.22);
}

.hero-image img {
  width: 100%;
  border-radius: 24px;
  min-height: 280px;
  object-fit: cover;
  background: #ddd;
}

.section {
  padding: 3rem 2rem;
}

.section h2 {
  margin-top: 0;
  color: #153825;
  position: relative;
}

.section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.65rem;
  width: 4rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.hero.hero-news {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(180deg, rgba(28, 58, 45, 0.4), rgba(18, 41, 32, 0.4)), url('images/evenements/salongo_enfants.jpg') center/cover no-repeat;
  color: #fff;
}

.hero.hero-news .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 58, 45, 0.55), rgba(28, 58, 45, 0.18));
}

.hero.hero-news .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.hero.hero-news .hero-copy {
  max-width: 760px;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #f7e6bf;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero.hero-news h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  max-width: 11ch;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.hero.hero-news p {
  font-size: 1.1rem;
  max-width: 36rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

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

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: #f2b020;
  color: #1c3a2d;
}

.btn-secondary {
  background: #1c3a2d;
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(28, 58, 45, 0.16);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-subtitle {
  margin: 0.8rem 0 0;
  max-width: 45rem;
  color: #445043;
  font-size: 1rem;
  line-height: 1.75;
}

.cards-grid,
.events-grid,
.stats-grid,
.calendar-grid,
.photo-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.news-card,
.event-card-premium,
.featured-card,
.calendar-card,
.stat-card,
.photo-item,
.newsletter-form,
.social-pill {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.news-card,
.event-card-premium,
.featured-card,
.calendar-card,
.stat-card,
.photo-item {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(17, 44, 28, 0.08);
}

.news-card:hover,
.event-card-premium:hover,
.featured-card:hover,
.calendar-card:hover,
.stat-card:hover,
.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(17, 44, 28, 0.12);
}

.news-card img,
.event-card-premium img,
.featured-card img,
.photo-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-content,
.event-card-content,
.featured-content,
.newsletter-form {
  padding: 1.6rem;
}

.card-meta,
.event-card-content .event-meta,
.featured-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #6e7b62;
  font-size: 0.95rem;
}

.card-pill,
.event-label {
  display: inline-flex;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(242, 176, 32, 0.12);
  color: #8c6d27;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-card h3,
.event-card-premium h3,
.featured-content h2,
.calendar-card h3 {
  margin: 0 0 0.7rem;
  color: #1c3a2d;
  line-height: 1.3;
}

.news-card p,
.event-card-premium p,
.featured-card p,
.calendar-card p {
  margin: 0 0 1.25rem;
  color: #51564f;
  line-height: 1.75;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #1c3a2d;
  text-decoration: none;
}

.card-link::after {
  content: '→';
  transition: transform 0.25s ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

.event-card-content .btn {
  width: fit-content;
}

.featured-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.featured-content h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.photo-item {
  min-height: 220px;
  overflow: hidden;
}

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

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card {
  padding: 2rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: #1c3a2d;
}

.stat-card span {
  display: block;
  margin-top: 0.75rem;
  color: #445043;
  font-weight: 700;
}

.calendar-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.calendar-card {
  padding: 1.75rem;
}

.calendar-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #f2b020;
  color: #1c3a2d;
  font-weight: 700;
  margin-bottom: 1rem;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: #f2efe8;
  border-radius: 24px;
}

.newsletter-copy h2 {
  margin-top: 0;
}

.newsletter-form {
  display: grid;
  gap: 1rem;
}

.newsletter-form label {
  font-weight: 700;
  color: #1c3a2d;
}

.newsletter-form input {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #d7d2c6;
  font-size: 1rem;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #1c3a2d;
  box-shadow: 0 0 0 3px rgba(28, 58, 45, 0.12);
}

.form-feedback {
  margin: 0;
  min-height: 1.4rem;
  color: #1c3a2d;
  font-weight: 700;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.social-pill.instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976 40%, #962fbf 70%, #405de6 100%);
}

.social-pill.youtube {
  background: #ff0000;
}

.social-pill.x {
  background: #000;
}

.social-pill.telegram {
  background: #0088cc;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .featured-card {
    grid-template-columns: 1fr;
  }

  .newsletter-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero.hero-news {
    min-height: 520px;
  }

  .hero.hero-news .hero-inner {
    padding: 2rem 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 2.2rem 1.2rem;
  }

  .hero.hero-news h1 {
    font-size: 2.5rem;
  }

  .hero.hero-news .hero-copy {
    max-width: 100%;
  }

  .photo-item,
  .news-card img,
  .event-card-premium img,
  .featured-card img {
    height: 220px;
  }
}

.cards,
.program-list,
.news-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cards article,
.program-list article,
.news-list article {
  padding: 1.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(17, 44, 28, 0.08);
}

.gallery {
  background: #f2efe8;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-subtitle {
  margin: 0.8rem 0 0;
  max-width: 45rem;
  color: #445043;
  font-size: 1rem;
  line-height: 1.75;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(28, 58, 45, 0.08);
  color: #1c3a2d;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.section-link:hover {
  transform: translateX(3px);
  background: rgba(28, 58, 45, 0.14);
}

.section-link .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.section-link:hover .arrow {
  transform: translateX(4px);
}

.gallery-grid.gallery-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.8rem;
}

.gallery-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(17, 44, 28, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(17, 44, 28, 0.12);
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.gallery-card-content {
  padding: 1.5rem;
}

.gallery-card-content h3 {
  margin: 0 0 0.6rem;
  color: #1c3a2d;
  font-size: 1.25rem;
}

.gallery-card-content p {
  margin: 0;
  color: #51564f;
  line-height: 1.7;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.8rem;
}

.event-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 40px rgba(17, 44, 28, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(17, 44, 28, 0.14);
}

.event-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.event-card-content {
  padding: 1.5rem;
}

.event-date {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: #6e7b62;
  font-weight: 700;
  font-size: 0.95rem;
}

.event-card h3 {
  margin: 0 0 0.75rem;
  color: #1c3a2d;
  font-size: 1.3rem;
}

.event-card p {
  margin: 0;
  color: #51564f;
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact p {
  max-width: 40rem;
  line-height: 1.7;
}

@media (max-width: 900px) {

  .gallery-grid.gallery-grid-2,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .gallery-card img {
    height: 240px;
  }

  .event-card img {
    height: 220px;
  }
}

footer {
  padding: 1.5rem 2rem;
  text-align: center;
  background: #1c3a2d;
  color: #f5f1e8;
}

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

  .main-nav ul {
    justify-content: center;
  }
}

/* Carousel Styles */
.carousel-section {
  padding: 2rem 0;
  background: #1c3a2d;
}

.carousel-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.carousel-slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #000;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 400px;
}

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

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 4px;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-button:hover {
  background: rgba(0, 0, 0, 0.9);
}

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

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

.carousel-dots {
  text-align: center;
  padding: 1.5rem 0 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background-color: #bbb;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #fff;
}

.dot:hover {
  background-color: #ddd;
}

@media (max-width: 600px) {
  .carousel-slide {
    height: 250px;
  }

  .carousel-button {
    padding: 8px 14px;
    font-size: 18px;
  }
}

/* Directors Section */
.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.director-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(28, 58, 45, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.director-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(28, 58, 45, 0.2);
}

.director-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.director-card h3 {
  margin: 1rem 1rem 0.5rem;
  color: #1c3a2d;
  font-size: 1.2rem;
}

.director-card p {
  margin: 0.5rem 1rem 1rem;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Registration Form */
.registration-form {
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(28, 58, 45, 0.08);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1c3a2d;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1c3a2d;
  box-shadow: 0 0 0 3px rgba(28, 58, 45, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.registration-form .btn {
  width: 100%;
  text-align: center;
}

/* Footer Styles */
footer {
  padding: 3rem 2rem 1rem;
  background: #1c3a2d;
  color: #f5f1e8;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  margin: 0.5rem 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #f5f1e8;
  padding: 4px;
  box-sizing: border-box;
}

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

.footer-section ul li {
  margin: 0.5rem 0;
}

.footer-section a {
  color: #f5f1e8;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(245, 241, 232, 0.2);
  padding-top: 1.5rem;
  font-size: 0.9rem;
}

/* =====================================================
   ROADMAP CIRCULAIRE PREMIUM - CCC LE ZOO
===================================================== */

.roadmap-section,
.roadmap-circle-section {
  padding: 6rem 2rem;
  background:
    radial-gradient(circle at center,
      rgba(212, 175, 55, .15) 0%,
      rgba(28, 58, 45, 1) 100%);
  overflow: hidden;
  position: relative;
}

.roadmap-section::before,
.roadmap-circle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center,
      transparent 30%,
      rgba(255, 255, 255, .03) 100%);
  pointer-events: none;
}

.title-roadmap {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.title-roadmap h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.title-roadmap h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffc107, #ff9800);
  color: #1c3a2d;
  font-weight: 900;
}

.title-roadmap p {
  color: #ddd;
  max-width: 800px;
  margin: auto;
}

/* Masquer ancienne ligne */
.roadmap-timeline {
  display: none;
}

/* Cercle principal */

.roadmap-dates,
.roadmap-circle-container {
  position: relative;
  width: 900px;
  height: 900px;
  margin: auto;
}

.roadmap-dates::before,
.roadmap-circle-container::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 193, 7, .35);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 80s linear infinite;
}

@keyframes orbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Centre */

.roadmap-dates::after {
  content: "CCC LE ZOO \A 2024-2026";
  white-space: pre;
  position: absolute;
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 193, 7, .4);
  box-shadow: 0 0 40px rgba(255, 193, 7, .35);
  line-height: 1.8;
}

.roadmap-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  min-height: 260px;
  padding: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: 2px solid rgba(255, 193, 7, .4);
  box-shadow: 0 0 40px rgba(255, 193, 7, .25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.roadmap-center h3 {
  margin: 0 0 .5rem;
  color: #fff;
}

.roadmap-center span {
  font-size: .95rem;
  color: #ffc107;
  font-weight: 700;
}

.roadmap-center p.period {
  margin: 1rem 0 0;
  color: #ddd;
  font-size: .95rem;
  line-height: 1.4;
}

.roadmap-node {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(12px);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .4s;
  cursor: pointer;
}

.roadmap-node:hover {
  transform: scale(1.15);
  z-index: 100;
}

.roadmap-node .date {
  color: #fff;
  font-size: .85rem;
}

.roadmap-node .year {
  color: #ffc107;
  font-size: 1.1rem;
  margin: 6px 0;
}

.roadmap-node p {
  color: #fff;
  font-size: .8rem;
  line-height: 1.4;
  margin-top: 8px;
}

.roadmap-node.completed {
  background: rgba(0, 150, 90, .85);
  box-shadow: 0 0 30px rgba(0, 255, 128, .4);
}

.roadmap-node.in-progress {
  background: rgba(255, 152, 0, .95);
  animation: pulseRoadmap 2s infinite;
}

.roadmap-node.upcoming {
  background: rgba(255, 255, 255, .08);
  border: 2px solid #ffc107;
  box-shadow: 0 0 25px rgba(255, 193, 7, .25);
}

/* Evènements */

.roadmap-item {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  padding: 18px;
  text-align: center;
  backdrop-filter: blur(12px);
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .4s;
  cursor: pointer;
}

.roadmap-item:hover {
  transform: scale(1.15);
  z-index: 100;
}

.roadmap-item .date {
  color: #fff;
  font-size: .85rem;
}

.roadmap-item .year {
  color: #ffc107;
  font-size: 1.1rem;
  margin: 6px 0;
}

.roadmap-item p {
  color: #fff;
  font-size: .8rem;
  line-height: 1.4;
  margin-top: 8px;
}

/* Terminé */

.roadmap-item.completed {
  background: rgba(0, 150, 90, .85);
  box-shadow: 0 0 30px rgba(0, 255, 128, .4);
}

/* En cours */

.roadmap-item.in-progress {
  background: rgba(255, 152, 0, .95);
  animation: pulseRoadmap 2s infinite;
}

@keyframes pulseRoadmap {
  0% {
    box-shadow: 0 0 0 rgba(255, 152, 0, .4);
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 152, 0, 1);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 152, 0, .4);
  }
}

/* Futur */

.roadmap-item.upcoming {
  background: rgba(255, 255, 255, .08);
  border: 2px solid #ffc107;
  box-shadow: 0 0 25px rgba(255, 193, 7, .25);
}

/* Icônes */

.image-status {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.status {
  margin-top: 8px;
}

/* Positionnement circulaire */

.roadmap-item:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.roadmap-item:nth-child(2) {
  top: 10%;
  right: 10%;
}

.roadmap-item:nth-child(3) {
  top: 32%;
  right: 0;
}

.roadmap-item:nth-child(4) {
  top: 58%;
  right: 3%;
}

.roadmap-item:nth-child(5) {
  bottom: 8%;
  right: 18%;
}

.roadmap-item:nth-child(6) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.roadmap-item:nth-child(7) {
  bottom: 8%;
  left: 18%;
}

.roadmap-item:nth-child(8) {
  top: 58%;
  left: 3%;
}

.roadmap-item:nth-child(9) {
  top: 32%;
  left: 0;
}

.roadmap-item:nth-child(10) {
  top: 10%;
  left: 10%;
}

.roadmap-node.node1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.roadmap-node.node2 {
  top: 10%;
  right: 10%;

  .roadmap-node.node3 {
    top: 32%;
    right: 0;
  }

  .roadmap-node.node4 {
    top: 58%;
    right: 3%;
  }

  .roadmap-node.node5 {
    bottom: 8%;
    right: 18%;
  }

  .roadmap-node.node6 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .roadmap-node.node7 {
    bottom: 8%;
    left: 18%;
  }

  .roadmap-node.node8 {
    top: 58%;
    left: 3%;
  }

  .roadmap-node.node9 {
    top: 32%;
    left: 0;
  }

  .roadmap-node.node10 {
    top: 10%;
    left: 10%;
  }

  /* Responsive */

  @media(max-width:992px) {

    .roadmap-dates {
      width: 100%;
      height: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .roadmap-dates::before,
    .roadmap-dates::after {
      display: none;
    }

    .roadmap-item {
      position: relative;
      width: 100%;
      height: auto;
      min-height: 220px;
      transform: none !important;
    }

    .roadmap-item:hover {
      transform: translateY(-6px) !important;
    }
  }

  @media(max-width:768px) {

    .roadmap-section {
      padding: 4rem 1rem;
    }

    .roadmap-item {
      min-height: 180px;
    }
  }

  /* Timeline Sections */
  .timeline-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50px;
    bottom: -2rem;
    width: 2px;
    background: linear-gradient(to bottom, #ffc107 0%, #ff9800 50%, #1c3a2d 100%);
  }

  .timeline-item:last-child::before {
    display: none;
  }

  .timeline-point {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffc107;
    border: 3px solid #1c3a2d;
    flex-shrink: 0;
    margin-top: 0.2rem;
    box-shadow: 0 0 0 4px rgba(252, 161, 7, 0.2);
  }

  .timeline-content {
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    box-shadow: 0 2px 8px rgba(28, 58, 45, 0.08);
    flex: 1;
  }

  .timeline-content h3 {
    margin: 0 0 0.8rem;
    color: #1c3a2d;
    font-size: 1.2rem;
  }

  .timeline-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
  }

  .timeline-content:hover {
    box-shadow: 0 6px 16px rgba(28, 58, 45, 0.12);
    transform: translateX(4px);
  }

  /* Gallery Timeline Items */
  .gallery-item-timeline .gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
  }

  .main-title {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  .main-title h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #1c3a2d;
    margin: 0 0 1rem;
    font-weight: 700;
  }

  .main-title h2 span {
    display: inline-block;
    width: 2.8rem;
    height: 2.8rem;
    line-height: 2.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1c3a2d;
    margin-right: 0.5rem;
    font-weight: 700;
  }

  .main-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Responsive Timeline */
  @media (max-width: 768px) {
    .timeline-item {
      gap: 1rem;
    }

    .timeline-item::before {
      left: 9px;
    }

    .timeline-point {
      width: 24px;
      height: 24px;
      border-width: 2px;
    }

    .timeline-content {
      padding: 1rem;
    }

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

    .gallery-item-timeline .gallery-image {
      height: 200px;
    }
  }

  @media (max-width: 600px) {
    .timeline-item {
      gap: 0.8rem;
    }

    .timeline-item::before {
      left: 6px;
    }

    .timeline-point {
      width: 20px;
      height: 20px;
    }

    .timeline-content {
      padding: 0.8rem;
      font-size: 0.9rem;
    }

    .timeline-content h3 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    .main-title h2 span {
      width: 2.2rem;
      height: 2.2rem;
      line-height: 2.2rem;
      font-size: 0.9rem;
    }

    .gallery-item-timeline .gallery-image {
      height: 150px;
    }
  }

  font-weight: 500;
}

.roadmap-item .year {
  display: block;
  font-size: 1.4rem;
  color: #1c3a2d;
  margin: 0.3rem 0 0.8rem;
}

.roadmap-item .pointer {
  display: none;
}

.image-status {
  width: 48px;
  height: 48px;
  margin: 0.8rem 0;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-check,
.icon-progress,
.icon-arrow {
  width: 32px;
  height: 32px;
}

.status {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0.8rem 0;
}

.completed-badge {
  background: #fff3cd;
  color: #856404;
}

.in-progress-badge {
  background: #ffe0b2;
  color: #e65100;
}

.roadmap-item p {
  margin: 1rem 0 0;
  color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .roadmap-section {
    padding: 2rem 1rem;
  }

  .roadmap-timeline {
    gap: 0.5rem;
  }

  .title-roadmap h2 span {
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 1.2rem;
  }

  .roadmap-dates {
    grid-template-columns: 1fr;
  }

  .directors-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .director-image {
    height: 220px;
  }

  .registration-form {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .title-roadmap h2 {
    font-size: 1.6rem;
  }

  .roadmap-timeline {
    height: 30px;
  }

  .point {
    width: 16px;
    height: 16px;
    border-width: 2px;
    box-shadow: 0 0 0 2px #1c3a2d;
  }
}

/* ==========================
   ORIENTATIONS STRATEGIQUES
========================== */

.orientation-card {
  position: absolute;
  width: 160px;
  padding: 15px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  transition: .4s;
  cursor: pointer;
}

.orientation-card:hover {
  transform: translateY(-8px);
}

.orientation-card span {
  font-size: 2rem;
}

.orientation1 {
  top: -60px;
  left: 50%;
}

.orientation2 {
  top: 20%;
  left: -100px;
}

.orientation3 {
  bottom: 20%;
  left: -100px;
}

.orientation4 {
  top: 20%;
  right: -100px;
}

.orientation5 {
  bottom: 20%;
  right: -100px;
}

.orientation6 {
  bottom: -60px;
  left: 50%;
}

/* ==========================
   COMPTEURS
========================== */

.roadmap-stats {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.stat {
  background: rgba(255, 255, 255, .1);
  padding: 8px 14px;
  border-radius: 12px;
}

.stat strong {
  display: block;
  color: #ffc107;
  font-size: 1.4rem;
}

/* ==========================
   POPUP
========================== */

.event-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .8);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.event-modal-content {
  width: 90%;
  max-width: 700px;
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  animation: zoomIn .4s ease;
}

.event-modal-content img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.modal-body {
  padding: 25px;
}

.close-modal {
  position: absolute;
  right: 30px;
  top: 20px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    transform: scale(.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}