/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
   max-width: 100%;
}

body {
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;

}

/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  overflow: visible;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: relative;
}

/* ================= LOGO ================= */
.logo img {
  height: 60px;
  width: auto;
}

/* ================= SOCIAL ICONS ================= */
.socials {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socials a {
  color: white;
  font-size: 1.2rem;
  transition: 0.3s;
}

.socials a:hover {
  color: #e8a2b8;
  transform: translateY(-2px);
}

/* ================= MENU DESKTOP ================= */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

/* ================= BURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
}

@media (max-width: 768px) {
  .socials {
    display: none;
  }
}

.socials-mobile {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.socials-mobile a {
  color: white;
  text-decoration: none;
}

/* ================= MOBILE MENU ================= */
.nav-links-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;

  background: rgba(0,0,0,0.95);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;

  padding: 25px 0;

  /* caché propre */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-10px);
  transition: all 0.35s ease;

  z-index: 9999;

  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;

  backdrop-filter: blur(10px);
}

/* ACTIF */
.nav-links-mobile.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* ================= LIENS MOBILE ================= */
.nav-links-mobile a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;

  padding: 10px 20px;
  border-radius: 30px;

  position: relative;
  transition: all 0.3s ease;
}

/* hover */
.nav-links-mobile a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ligne animée */
.nav-links-mobile a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;

  width: 0%;
  height: 2px;

  background: #e8a2b8;
  transition: 0.3s;
  transform: translateX(-50%);
}

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

/* ================= HAMBURGER ================= */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger span {
    transition: 0.3s;
  }
}
/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;

  min-width: 100%;
  min-height: 100%;

  transform: translate(-50%, -50%);
  object-fit: cover;

  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;
  gap: 20px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-video {
    display: block !important; /* 🔥 force l'affichage */
  }

  .hero {
    background: none; /* enlève l’image fallback si tu veux la vidéo */
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap');


/* TITLE */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: bold;
}

.hero h1 span {
  font-family: 'Playfair Display', serif;
  color: transparent;
  -webkit-text-stroke: 1px white;
}

/* TEXT */
.hero p {
  font-size: 1.2rem;
  max-width: 500px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* 🔥 FIX overlap */
  justify-content: center;
}

.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  background: #ddd;
}

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

.btn-outline:hover {
  background: white;
  color: black;
}

/* ================= CARDS ================= */
.hero-cards {
  margin-top: -80px;
  padding: 0 20px 80px;
  position: relative;
  z-index: 5;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.card {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  text-decoration: none;
  color: white;
}

/* IMAGE */
.card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

/* CONTENT */
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px; /* 🔥 FIX texte collé */
}

.card h3 {
  font-size: 1.6rem;
}

.card p {
  opacity: 0.8;
}

/* HOVER */
.card:hover .card-bg {
  transform: scale(1.1);
}

.card:hover .card-overlay {
  background: rgba(0,0,0,0.3);
}

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

/* ================= SECTIONS ================= */
.section {
  padding: 80px 40px;
  text-align: center;
  overflow-x: hidden;

}

.section h2 {
  margin-bottom: 15px;
}

.dark {
  background: #111;
  color: white;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  background: #fafafa;
  overflow-x: hidden;

}

/* TITLES */
.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  margin-bottom: 40px;
  opacity: 0.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-container {
  display: flex;
  gap: 40px;
  align-items: stretch; /* 🔥 même hauteur */
}

/* LES DEUX BLOCS */
.about-left,
.about-right {
  flex: 1; /* 🔥 même largeur */
  display: flex;
  flex-direction: column;
}

.about-left {
  background: linear-gradient(135deg, #ffffff, #f5f5f5);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* petit effet décoratif */
.about-left::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: black;
  opacity: 0.05;
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

/* TITRE */
.about-left h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: black;
  position: relative;
}

/* TEXTES */
.about-left p {
  margin-bottom: 15px;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #444;
  position: relative;
}

/* OBJECTIF */
.about-objective {
  margin-top: 25px;
  padding: 20px;
  background: black;
  color: white;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
}

/* effet hover élégant */
.about-left:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}



/* RIGHT */
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}


/* TITRE RIGHT */
.about-right h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.info-card {
  display: flex;
  align-items: center; /* 🔥 alignement vertical */
  gap: 12px;
  padding: 12px 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 12px;
}

/* ICONE */
.info-icon {
  font-size: 1.4rem;
  flex-shrink: 0; /* 🔥 empêche l’icône de se réduire */
}

/* TEXTE SUR UNE LIGNE */
.info-text {
  font-size: 0.95rem;
  line-height: 1.4;
  white-space: nowrap; /* 🔥 tout sur une ligne */
  overflow: hidden;
  text-overflow: ellipsis; /* 🔥 coupe proprement si trop long */
}

/* EXTRA BLOCK */
.info-extra {
  margin-top: 20px;
  padding: 20px;
  background: black;
  color: white;
  border-radius: 10px;
}

.info-extra h4 {
  margin-bottom: 10px;
}

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

.info-extra li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}


.info-text a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}


/* container */
.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* liens */
.social-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: black;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
  transition: 0.3s;
}

/* hover */
.social-links a:hover {
  background: black;
  color: white;
}

/* icônes */
.social-links i {
  font-size: 1.1rem;
}

/* couleurs */
.fa-instagram {
  color: #E1306C;
}

.fa-facebook-f {
  color: #1877F2;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
  }

  .about-left,
  .about-right {
    width: 100%;
  }

}


/* SECTION */
.courses-section {
  position: relative;
  padding: 100px 20px;
  background: #111;
  color: white;
  text-align: center;
}

/* OVERLAY */
.courses-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent);
  top: 0;
  left: 0;
}

/* CONTENT */
.courses-content {
  position: relative;
  z-index: 2;
}
.courses-content h2{
  color: #ff7eb3;
}


/* GRID */
.courses-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.course-card {
  background: #1a1a1a;
  padding: 25px;
  border-radius: 15px;
  transition: 0.3s;
  text-align: center; /* 🔥 centre tout */
  display: flex;
  flex-direction: column;
  align-items: center; /* 🔥 centre horizontalement */
   box-shadow: 
    8px 8px 16px rgba(0,0,0,0.2),
    -4px -4px 6px rgba(255,255,255,0.8);
}


/* HOVER */
.course-card:hover {
  transform: translateY(-10px);
  background: #222;
}

/* ICON */
.course-icon {
  width: 100px;
  height: 100px;

  border-radius: 20px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eee;

  transition: 0.3s;
  margin-bottom: 7px;
}

/* IMAGE plein cadre */
.course-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 remplit sans déformation */
}

/* effet hover */
.course-card:hover .course-icon {
  transform: scale(1.08);
}

/* TITLE */
.course-card h3 {
  margin-bottom: 10px;
}

/* TEXT */
.course-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  opacity: 0.8;
  line-height: 1.6;
}

/* LIST */
.course-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.course-card ul li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* TAG */
.course-tag {
  display: inline-block;
  font-size: 0.8rem;
  background: white;
  color: black;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

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

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


.courses-gallery {
  margin-top: 4rem;
  text-align: center;
}

/* titre */
.gallery-title {
  color: #ff7eb3;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* item */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
}

/* image */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* hover */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* overlay rose */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 92, 138, 0.3)
  );
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* responsive */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

/* image */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* zoom hover */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* bande texte */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;

  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    transparent
  );

  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s ease;
}

/* apparition au hover */
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}


/* ===================== SECTION TARIFS ===================== */

#tarifs {
  width: 100%;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

#tarifs .section-title {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

#tarifs .section-subtitle {
  max-width: 600px;
  margin: 0 auto 0.5rem;
  color: #777;
  font-size: 0.9rem;
}

/* ================= CATEGORIES ================= */

.tarif-category {
  margin-top: 3rem;
  font-size: 1.4rem;
  color: var(--primary-dark);
  position: relative;
}

.tarif-category::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--primary);
  display: block;
  margin: 8px auto 0;
  border-radius: 10px;
}

/* ================= GRID ================= */

#tarifs .pricing {
  margin-top: 2.5rem;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;

  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;

  justify-items: center;
  align-items: stretch;
}

/* ================= CARD ================= */

#tarifs .price-card {
  width: 100%;
  max-width: 230px;

  background: #fff;
  border-radius: 18px;
  padding: 2.2rem 1.2rem 1.3rem;

  border: 1px solid #eee;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  text-align: center;

  position: relative;
  transition: all 0.3s ease;

  overflow: visible;
}

/* HOVER */
#tarifs .price-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ================= BADGE ================= */

#tarifs .price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);

  background: black;
  color: white;

  font-size: 0.7rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;

  font-weight: 600;
  white-space: nowrap;

  box-shadow: 0 6px 15px rgba(0,0,0,0.12);

  animation: badgePulse 2.5s infinite;
}

/* badge animation */
@keyframes badgePulse {
  0% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
  100% { transform: translateX(-50%) scale(1); }
}

/* ================= TITRE ================= */

#tarifs .price-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.6rem 0;
  color: #222;
}

/* ================= PRIX ================= */

#tarifs .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0.7rem 0;
}

/* ================= LISTE ================= */

#tarifs .price-card ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
  width: 100%;
}

/* li corrigé */
#tarifs .price-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.4rem;

  font-size: 0.82rem;
  color: #555;
  text-align: left;
}

/* check icon */
#tarifs .price-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;

  width: 14px;
  height: 14px;

  font-size: 0.6rem;

  background: var(--primary);
  color: #0a0a0a;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= BUTTON ================= */

#tarifs .btn-primary {
  margin-top: 1rem;
  width: 100%;
  padding: 0.65rem;

  border-radius: 999px;
  background: rgb(234, 150, 178);

  color: #040404;
  border: none;

  font-size: 0.78rem;
  font-weight: 500;

  cursor: pointer;
  transition: all 0.3s ease;

  display: block;
  text-align: center;
}

#tarifs .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ================= PREMIUM ================= */

#tarifs .price-card.premium {
  border: 1.5px solid var(--primary);
  background: linear-gradient(180deg, #fff, #fff6f6);
}

/* ================= HIGHLIGHT ================= */

#tarifs .price-card.highlight {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ================= GOLD BADGE ================= */

#tarifs .price-badge.gold {
  background: #ffe625;
  color: #000;
}

/* ================= SAVING ================= */

#tarifs .saving {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ================= UNLIMITED ================= */

#tarifs .pricing.unlimited {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 2.5rem auto 0;
  justify-items: center;
  
}

#tarifs .pricing.unlimited .price-card {
  max-width: 300px;
  width: 100%;
}

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

@media (max-width: 1200px) {
  #tarifs .pricing {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #tarifs .pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  #tarifs .price-card {
    max-width: 100%;
  }

  #tarifs .pricing.unlimited {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  #tarifs .pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  #tarifs .price-card {
    max-width: 100%;
  }

  #tarifs .pricing.unlimited {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT ================= */

.contact-section {
  padding: 80px 20px;
  background: #0d0d0d; /* noir profond */
  color: #fff;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* LEFT */
.contact-left {
  flex: 1;
  min-width: 320px;
}

.contact-left .section-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ff7eb3;
}

.contact-left .section-subtitle {
  margin-bottom: 25px;
  color: white;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;

  border: 1px solid #333;
  background: #1a1a1a;

  color: #fff;
  font-size: 14px;

  outline: none;
  transition: 0.3s;
}

/* placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

/* focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7eb3;
  box-shadow: 0 0 8px rgba(255, 126, 179, 0.3);
}

/* TEXTAREA */
.contact-form textarea {
  resize: none;
}

/* BUTTON */
.btn-submit {
  background: linear-gradient(131deg, #ff758c, #ff7eb3);
  color: #fff;

  padding: 14px;
  border: none;
  border-radius: 12px;

  font-size: 15px;
  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 126, 179, 0.4);
}

/* RIGHT */
.contact-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
}
.contact-right h3{
  color: #ff7eb3;
}

.svg-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.svg-container svg {
  width: 100%;
  max-width: 600px; /* 🔥 plus grand */
  height: auto;
  display: block;
}

#envelope {
  animation: float 2s ease-in-out infinite;
  transform-origin: center;
}

/* Animation de flottement */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}



/* Animation clignotement */
@keyframes blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.7);
  }
}



/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= MAP ================= */
.map iframe {
  width: 100%;
  height: 400px;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #0b0b0f;
  color: #ccc;
  font-size: 0.85rem;
}

/* lien */
.footer-links a {
  color: #ff7eb3;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

/* hover */
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeUp 1s ease;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .cards-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .hero-video {
    display: none;
  }

  .hero {
    background: url('hero.jpg') center/cover no-repeat;
  }
}

@media (max-width: 600px) {
  .cards-container {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    margin-top: -40px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);

  background: #15151b;
  color: #ccc;

  padding: 1rem 1.5rem;
  border-radius: 14px;
  border: 1px solid #222;

  display: flex;
  align-items: center;
  gap: 1rem;

  max-width: 500px;
  width: 90%;

  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 999;
}

/* texte */
.cookie-banner p {
  font-size: 0.85rem;
  margin: 0;
}

/* lien */
.cookie-banner a {
  color: #ff7eb3;
  text-decoration: none;
}

/* boutons */
.cookie-actions button {
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
}

/* accepter */
#accept-cookies {
  background: #ff7eb3;
  color: #fff;
}

/* refuser */
.decline {
  background: transparent;
  color: #aaa;
  border: 1px solid #333;
}

/* hover */
#accept-cookies:hover {
  background: #ff5c8a;
}

.decline:hover {
  color: #fff;
  border-color: #555;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: linear-gradient(135deg, #ffffff, #f8f9fb);
  color: #333;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
}

/* Animation */
@keyframes fadeIn {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Texte */
.modal-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Bouton OK stylé */
#closeModal {
  background: linear-gradient(135deg, #ff7eb3, #ff758c);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 117, 140, 0.4);
}

/* Hover du bouton */
#closeModal:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 117, 140, 0.6);
}

/* Click */
#closeModal:active {
  transform: scale(0.95);
}