/* ===========================
   Global
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cairo Play', sans-serif;
  background: #EDF2F4;
  color: #04168a;
}

:root{
  --loader-bg: #060505;          /* fond du loader */
  --loader-text: #ffffff;        /* couleur du texte */
  --fade-duration: 600ms;        /* durée fade in/out (doit correspondre au JS) */
  --visible-duration: 1400ms;    /* durée d'affichage d'une phrase (JS doit correspondre) */
}

/* full-screen loader */
#loader{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--loader-bg);
  color: var(--loader-text);
  z-index: 9999;
  padding: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* container interne */
.loader-inner{
  text-align: center;
  max-width: 92%;
}

/* texte */
.loader-text{
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  font-size: clamp(1.1rem, 2.6vw, 1.9rem);
  line-height: 1.2;
  margin: 0 0 1rem 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--fade-duration) ease, transform var(--fade-duration) ease;
  white-space: pre-wrap;
}

/* classe appliquée par JS pour faire apparaître la phrase */
.loader-text.visible{
  opacity: 1;
  transform: translateY(0);
}

/* petite barre sous le texte (effet visuel) */
.loader-bar{
  height: 4px;
  width: 160px;
  background: rgba(255, 0, 0, 0.663);
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
}
.loader-bar span{
  display: block;
  height: 100%;
  width: 0%;
  background: rgba(255,255,255,0.18);
  animation: barGrow 2.8s linear infinite;
}
@keyframes barGrow{
  0%{ width: 0%; }
  50%{ width: 70%; }
  100%{ width: 0%; }
}

/* classe pour masquer doucement le loader */
#loader.hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* page content invisible tant que body n'a pas la classe loaded */
#page-content{
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
body.loaded #page-content{
  opacity: 1;
  pointer-events: auto;
}

/* ===========================
   Navbar
=========================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ff0000;
  padding: 0.8rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

.navbar .logo {
  color: #EDF2F4;
  font-family: 'Cairo Play', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.navbar .logo:hover {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
}

.nav-links li a {
  color: #EDF2F4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links li a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* CTA button */
.navbar .btn {
  background: #160376;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.navbar .btn:hover {
  background: #0f024f;
  transform: scale(1.05);
}

/* Burger */
.burger {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: #EDF2F4;
  transition: transform 0.3s ease;
}

.burger:hover {
  transform: rotate(90deg);
}

/* ===========================
   Responsive Navbar
=========================== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: #021bba;
    width: 100%;
    height: 0;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: height 0.4s ease;
  }

  .nav-links.active {
    height: 280px; /* ajustable selon le nombre de liens */
  }

  .nav-links li {
    margin: 1rem 0;
  }

  .navbar .btn {
    display: none; /* cacher le bouton sur mobile si nécessaire */
  }

  .burger {
    display: block;
  }
}


/* ===========================
   HERO SECTION
=========================== */
#hero {
  position: relative;
  height: 100vh;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Overlay sombre */
#hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* ===========================
   HERO CONTENT
=========================== */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 1rem;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.hero-content h1 span {
  color: #fbfbfb;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* ===========================
   CTA BUTTONS
=========================== */
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta a {
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Primary */
.cta .btn {
  background: #ff0400;
  color: #000;
}
.cta .btn:hover {
  background: #004cff;
  transform: scale(1.05);
}

/* Secondary */
.cta .btn-light {
  border: 2px solid #ff0000;
  color: #ffffff;
  background: transparent;
}
.cta .btn-light:hover {
  background: #ff0000;
  color: #000;
  transform: scale(1.05);
}

/* Overlay text */
.hero-overlay {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .cta {
    flex-direction: center;
    gap: 0.8rem;
  }
  .cta a {
    width: 80%;
    text-align: center;
  }
}


/* ==================== SECTION À PROPOS ==================== */
#about {
  padding: 6rem 1rem;
  background: #EDF2F4;
  color: #2B2E42;
  font-family: 'Cairo Play', sans-serif;
}

#about .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

#about .about-image {
  flex: 1;
  min-width: 300px;
}

#about .about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  object-fit: cover;
}

#about .about-text {
  flex: 1;
  min-width: 300px;
}

#about .about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

#about .about-text h2 span {
  color: #ff0000;
}

#about .about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

#about .about-text .btn {
  display: inline-block;
  background: #ff0000;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

#about .about-text .btn:hover {
  background: #ff0000;
}

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

  #about .about-text h2 {
    font-size: 1.6rem;
  }

  #about .about-text p {
    font-size: 1rem;
  }

  #about .about-text .btn {
    width: 70%;
    margin: 1rem auto 0;
  }
}

/* ===== SECTION VISA TOURISME ===== */
#visa-tourisme {
  background: #f9fafc;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  color: #0056d2;
  margin-bottom: 20px;
  font-family: 'Cairo Play', sans-serif;
  font-weight: 800;
}

#visa-tourisme .intro {
  max-width: 850px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.highlight {
  color: #ff6600;
  font-weight: 700;
}

.highlight2 {
  color: #0078ff;
  font-weight: 700;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.destination-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-card h3 {
  font-size: 1.2rem;
  color: #0056d2;
  margin: 10px 0;
}

.destination-card p {
  padding: 0 15px 20px;
  font-size: 0.95rem;
  color: #444;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.disclaimer {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.disclaimer h3 {
  color: #d9534f;
  margin-bottom: 15px;
}

.disclaimer p {
  line-height: 1.6;
  color: #333;
}

.motivation {
  margin-top: 15px;
  text-align: center;
  font-style: italic;
  color: #0056d2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .destination-card img {
    height: 180px;
  }
}


#testimonials {
  padding: 4rem 1rem;
  background: #EDF2F4;
  text-align: center;
}

#testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2B2E42;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.8s forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }
.testimonial-card:nth-child(4) { animation-delay: 0.4s; }
.testimonial-card:nth-child(5) { animation-delay: 0.5s; }
.testimonial-card:nth-child(6) { animation-delay: 0.6s; }
.testimonial-card:nth-child(7) { animation-delay: 0.7s; }
.testimonial-card:nth-child(8) { animation-delay: 0.8s; }

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.testimonial-card .stars {
  color: #ffbf00;
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #2B2E42;
}

.testimonial-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff0000;
}

/* Animation fadeUp */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  #testimonials h2 {
    font-size: 1.6rem;
  }
  .testimonial-card p {
    font-size: 0.9rem;
  }
  .testimonial-card h4 {
    font-size: 0.85rem;
  }
}



/* ==================== STORYTELLING ==================== */

#storytelling {
  padding: 4rem 1rem;
  background: #fff;
  color: #2B2E42;
}

.story-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.story-image img {
  width: 100%;                /* S’adapte à son conteneur */
  max-width: 400px;           /* Image maximale sur desktop */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
  display: block;             /* Évite les problèmes d’alignement inline */
  margin: 0 auto;             /* Centre l’image horizontalement */
}


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

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ff0000;
}

.story-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story-content p span {
  font-weight: 700;
  color: #2B2E42;
}

.story-benefits {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.story-benefits li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.story-benefits li i {
  color: #ff0000;
  margin-right: 0.6rem;
}

.story-content .btn {
  background: #d80505;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.story-content .btn:hover {
  background: #ee2424;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
    text-align: center;
  }
  .story-image img {
    max-width: 100%;
  }
  .story-content .btn {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
}


#reservation {
  padding: 4rem 1rem;
  background: #fff;
  color: #2B2E42;
}

.reservation-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.reservation-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.reservation-form {
  flex: 1;
}

.reservation-form h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #d80505;
}

.reservation-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reservation-form input,
.reservation-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.reservation-form label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #444;
}

.reservation-form button {
  background: #d80505;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.reservation-form button:hover {
  background: #00b925;
  transform: translateY(-2px);
}

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

  .reservation-image img {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .reservation-form form {
    width: 100%;
  }
}


/* Footer Global */
#footer {
  background: #d80505;
  color: #EDF2F4;
  padding: 3rem 1rem 1.5rem;
  font-family: "Cairo Play", sans-serif;
}

/* Conteneur principal */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

/* Colonnes */
.footer-col {
  flex: 1 1 300px;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 1rem;
}

.footer-logo p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Titres */
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
  border-left: 3px solid #EDF2F4;
  padding-left: 0.5rem;
}

/* Contact */
.footer-contact p,
.footer-contact a {
  color: #EDF2F4;
  font-size: 0.95rem;
  margin: 0.4rem 0;
  text-decoration: none;
}

.footer-contact i {
  margin-right: 8px;
  color: #fff;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Réseaux sociaux */
.footer-socials .social-icons {
  margin-top: 0.5rem;
}

.footer-socials a {
  color: #EDF2F4;
  font-size: 1.5rem;
  margin-right: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Bas de page */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1rem;
  font-size: 0.9rem;
}


/* Section Conditions */
#conditions {
  padding: 4rem 2rem;
  background: #f9f9f9;
  color: #2B2E42;
  line-height: 1.8;
  text-align: center;
}

#conditions h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #D80536;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.conditions-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.conditions-container p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.conditions-highlight {
  background: #D80536;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin: 1rem 0;
}

.conditions-list {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.conditions-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.conditions-list li::before {
  content: "\f00c"; /* Icône Font Awesome (check) */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #D80536;
  font-size: 1.2rem;
}

#conditions .note {
  margin-top: 2rem;
  padding: 1rem;
  background: #EDF2F4;
  border-left: 4px solid #D80536;
  font-style: italic;
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  #conditions {
    padding: 3rem 1rem;
  }
  #conditions h2 {
    font-size: 1.8rem;
  }
  .conditions-container p, 
  .conditions-list li {
    font-size: 1rem;
  }
}


/* Section Compagnies */
#compagnies {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
  color: #2B2E42;
}

#compagnies h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #D80536;
}

#compagnies .intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

#compagnies .intro .highlight {
  display: inline-block;
  margin: 1rem 0;
  background: #D80536;
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-weight: bold;
}

#compagnies .intro .brand {
  color: #D80536;
  font-weight: bold;
}

.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.logo-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 180px;
  max-width: 220px;
}

.logo-card img {
  max-width: 150px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 768px) {
  #compagnies {
    padding: 3rem 1rem;
  }

  #compagnies h2 {
    font-size: 1.8rem;
  }

  .logo-card {
    max-width: 160px;
  }

  .logo-card img {
    max-width: 120px;
  }
}


#services {
  padding: 5rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

#services .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #D80536;
}

#services .intro {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  color: #333;
}

.highlight {
  color: #D80536; 
  font-weight: 700;
}

.highlight2 {
  color: #0077b6; 
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: #2B2E42;
  font-weight: 700;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: #D80536;
  margin-bottom: 1rem;
}



#destinations {
  padding: 5rem 2rem;
  background: #fff;
  text-align: center;
}

#destinations .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #D80536;
}

#destinations .intro {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  color: #333;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.destination-card {
  background: #f9f9f9;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.destination-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
  color: #2B2E42;
}

.destination-card p {
  padding: 0 1rem 1.5rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.closing-text {
  margin-top: 3rem;
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.highlight {
  color: #D80536;
  font-weight: bold;
}

.highlight2 {
  color: #0077b6;
  font-weight: bold;
}


#visa-mecque {
  padding: 4rem 1rem;
  text-align: center;
  background: #f9f9f9;
  color: #2B2E42;
}

#visa-mecque .visa-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

#visa-mecque h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #D80536;
}

#visa-mecque p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

#visa-mecque .btn-visa {
  background: #D80536;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

#visa-mecque .btn-visa:hover {
  background: #ee2449;
  transform: translateY(-3px);
}

.highlight {
  color: #D80536;
  font-weight: bold;
}

.highlight2 {
  color: #0077cc;
  font-weight: bold;
}







/* ===== SECTION GALERIE ===== */
#galerie {
  background: #f9fafc;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

#galerie h2 {
  font-family: 'Cairo Play', sans-serif;
  font-size: 2.2rem;
  color: #0056d2;
  margin-bottom: 40px;
  font-weight: 800;
}

/* Slider container */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track animation */
.slide-track {
  display: flex;
  width: calc(200px * 32); /* largeur totale selon le nb d'images */
  animation: scroll 40s linear infinite;
}

/* Chaque slide */
.slide {
  width: 200px;
  height: 200px; /* carré 1:1 */
  margin: 0 10px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Effet hover */
.slide img:hover {
  transform: scale(1.1);
}

/* Animation keyframes */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 16)); }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    width: 150px;
    height: 150px;
  }
  .slide-track {
    animation: scroll 60s linear infinite;
  }
}
