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

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

/* ===========================
   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 DESTINATIONS ===== */
.hero-destinations {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('images/thailande.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
}

.hero-destinations::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-destinations-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-destinations-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-destinations-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f1f1f1;
}

.hero-destinations-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-destinations-btns .btn-red {
  background: #D80536;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-destinations-btns .btn-red:hover {
  background: #EE2449;
}

.hero-destinations-btns .btn-white {
  background: #fff;
  color: #D80536;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-destinations-btns .btn-white:hover {
  background: #D80536;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-destinations {
    height: 80vh;
    padding: 1.5rem;
  }

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

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

  .hero-destinations-btns {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ================== DESTINATIONS ================== */
/* ===== DESTINATIONS ===== */
.destinations {
  padding: 4rem 1.5rem;
  text-align: center;
  background: #fafafa;
}

.destinations h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #D80536;
  margin-bottom: 0.5rem;
}

.destinations .subtitle {
  color: #444;
  margin-bottom: 2.5rem;
}

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

.card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}

.card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.overlay .btn {
  background: #D80536;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.overlay .btn:hover {
  background: #EE2449;
}





/* ================== FORMULAIRE RESERVATION ================== */
.reservation {
  padding: 4rem 1rem;
  background: #EDF2F4;
  text-align: center;
}

.reservation h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

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

.reservation-container img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.reservation-form {
  max-width: 500px;
  width: 100%;
  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%;
  resize: none;
}

.reservation-form textarea {
  min-height: 100px;
}

.reservation-form button {
  background: #d80505;
  color: #fff;
  padding: 0.8rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.reservation-form button:hover {
  background: #fc0000;
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  .hero-destination h1 {
    font-size: 2rem;
  }

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

  .destinations-grid .card img {
    height: 180px;
  }

  .reservation-container {
    flex-direction: column;
    align-items: center;
  }

  .reservation-container img {
    max-width: 100%;
  }
}
/* ================== FOOTER ================== */
/* 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;
}


#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;
}



/* ===== SECTION VISA INFO ===== */
.visa-info {
  background: linear-gradient(to bottom, #f9fbff, #eef4ff);
  padding: 100px 20px;
  color: #222;
  font-family: 'Cairo Play', sans-serif;
}

.visa-content {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 40px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  line-height: 1.8;
}

.visa-content h2 {
  font-size: 2.2rem;
  color: #0056d2;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.visa-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #333;
}

.visa-content span {
  color: #e63946;
  font-weight: 600;
}

.visa-content .highlight {
  margin-top: 35px;
  font-style: italic;
  color: #111;
  font-size: 1.15rem;
  font-weight: 500;
}

.btn-tourisme {
  display: inline-block;
  background: #0056d2;
  color: #fff;
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 86, 210, 0.3);
}

.btn-tourisme:hover {
  background: #0042a8;
  transform: scale(1.05);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .visa-content {
    padding: 40px 25px;
  }

  .visa-content h2 {
    font-size: 1.8rem;
  }

  .visa-content p {
    font-size: 1rem;
  }

  .btn-tourisme {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}
