@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --primary-color: #015797;
  --primary-color-dark: #2476da;
  --text-dark: #0a0a0a;
  --text-light: #737373;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
}

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

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  
}





body {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  z-index: 9;
  margin-bottom: 2rem;


}


.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

.nav__logo .logo {
  max-width: 120px; /* taille maximale */
  width: 100%;       /* pour que ce soit responsive */
  height: auto;      /* garde les proportions */
  display: block;
}


.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}



/* Effet soulignement animé */
.nav__links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav__links li a:hover::after {
  width: 100%;
}




.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
}

.nav__links a {
  position: relative;
  color: black;
  font-size: 1.05rem;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav__links a:hover {
  color: var(--primary-color);
}

.nav__btns {
  display: none;
}

 header{
  margin-top: 10rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
header::before{
  position:absolute;
  content: "";
  height: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(img/back.webp) !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;
}
.header__container{
  display: grid;
  margin-top: 4rem;
}
.header__content{
  padding: 4rem 1rem;
}


  .header__content p{
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
  }
  .header__content h1{
    margin-bottom: 2rem;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 5.5rem;
    text-align: center;
  }

  .header__btns{
    display:flex ;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .header__btns .btn{
    padding: 1rem 2rem;
  }


.destination__container :is(.section__header, .section__description){
  text-align: left;
  margin-inline-start: unset;
}

  .destination__grid{
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;

}
.destination__card img {
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}  


 /* .destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}



.destination__card img {
  width: 80%;
  margin-left: 43px;
  height: 250px;
  border-radius: 1.5rem;
  object-fit: cover;
}  */



.destination__card__details{
  padding:1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;


}
.destination__card__details h4{
margin-bottom: 5px;
font-size: 1.2rem;
font-weight: 600;
columns: var(--text-dark);
}
.destination__card__details p{
  columns: var(--text-light);
}
.destination__ratings{
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
  transition: 0.3s;
}

.destination__card:hover .destination__ratings{
  background-color: var(--primary-color-dark);
}

.journey__grid{
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card{
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card__bg{
  padding: 2rem;
  background-color:var(--extra-light) ;
  border-bottom-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.journey__card__bg span{
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4{
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.journey__card__content{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-bottom-left-radius: 1rem;
   border-bottom-right-radius: 1rem;
   transition: 0.3s;
}
  .journey__card:hover .journey__card__content{
    top: 0;
  }

  .journey__card__content span{
    display: inline-block;
    margin-bottom: 1rem;
    padding: 7px 9px;
    font-size: 1rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 100%;
  }

  .journey__card__content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color:var(--white);
  }

  .journey__card__bg p{
   color: var(--extra-light);
  }

  .showcase__container{
    display: grid;
    gap: 2rem;
    overflow: hidden;
  }
  
  .showcase__image img{
    max-width: 400px;
    margin-inline: auto;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
  }

  .showcase__content h4{
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .showcase__content p{
    margin-bottom: 1rem;
    color: var(--text-light);
  }


  .banner__container{
    display: grid;
    gap: 2rem;
  }

  .banner__card{
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--extra-light);
    border-radius: 2rem;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }

  .banner__card h4{
    font-size: 5rem;
    font-weight: 500;
    color: var(--primary-color);
  }

  .banner__card p{
    color: var(--text-light);

  }

  .discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.destination__card p {
  color: var(--text-light);
}

footer {
  background-color: var(--extra-light);
}

.footer__container {
  display: grid;
  gap: 4rem 2rem;
}

.footer__col p {
  max-width: 300px;
  margin-block: 2rem;
  color: var(--text-light);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-block;
  padding: 7px 10px;
  font-size: 1.25rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 100%;
}

.footer__socials a:hover {
  background-color: var(--primary-color-dark);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__links a span {
  font-size: 1.25rem;
}

.footer__col form {
  display: grid;
  gap: 1rem;
}

.footer__col input {
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--white);
  border: 1px solid var(--text-light);
  border-radius: 5px;
}

.footer__col input::placeholder {
  color: var(--text-light);
}

.footer__col .btn {
  border-radius: 5px;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

@media (width > 540px) {


  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:last-child {
    grid-area: 2/1/3/2;
  }
}
  @media(width > 768px) {
    nav {
      position: static;
      padding: 2rem 1rem;
      max-width: var(--max-width);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .nav__header{
      flex: 1;
      padding: 0;
      background-color: transparent;
    }
    .nav__logo .logo{
      color: var(--text-dark);
    }
    .nav__menu__btn{
      display: none;
    }
.nav__links{
  position: static;
  width: fit-content;
  padding: 0;
  flex-direction: row;
  background-color: transparent;
  transform: none !important;
}



.nav__links a:hover{
  color: var(--primary-color);
}

.nav__links li:last-child{
  display: none;
}

.nav__btns{
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__btns .button{
  padding: 75rem 2rem;
  background-color: var(--text-dark);
}
header{
  margin-top: 0;
}
.header__container{
  grid-template-columns:
  minmax(0 ,1fr)
repeat(5, minmax(0, calc(var(--max-width)/ 5)))
minmax(0, 1fr) ;
}
.header__content{
grid-column: 2/4;
padding-block: 8rem;
}
.header__content :is(p, h1){
  text-align: left;
}
.header__btns{
  justify-content: flex-start;
}
.header__image{
  grid-column: 4.5/8;
  position: relative;
  isolation: isolate;
  height: 100%;
}
.header__image img{
  position: absolute;
  top: 2rem;
  left: 0;
  height: 100%;
  width: unset;
}
.destination__grid{
  grid-template-columns: repeat(3, 1fr);
}
.journey__grid{
  grid-template-columns: repeat(3, 1fr);
}
.showcase__container{
  grid-template-columns: repeat(3, 1fr);
}

.showcase__content{
  grid-column: 2/4;
} 

.banner__container{
  grid-template-columns: repeat(3, 1fr);
}
.discover__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer__col:last-child {
    grid-area: unset;
  }

  
}

/* ===== MENU LINKS ===== */
.menu__links {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}

.menu__links li a {
  position: relative;
  color: black;
  font-size: 1.05rem;
  font-weight: 500;
  transition: 0.3s ease;
}

/* Effet soulignement animé */
.menu__links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.menu__links li a:hover::after {
  width: 100%;
}

.menu__links li a:hover {
  color: var(--primary-color);
}

/* ===== Bouton Réserver ===== */
.menu__reserve {
  background: #ff6b35;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.menu__reserve:hover {
  background: #ff8a5c;
  transform: translateY(-2px);
  color: #fff !important;
}

/* ===== MENU LINKS ===== */
.menu__links {
  display: none;        /* caché en desktop pour éviter conflits */
  align-items: center;
  gap: 35px;
  list-style: none;
}

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

  .menu__links.open {
    right: 0;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .menu__links {
    position: fixed;
    top: 75px;
    right: -100%;
    width: 70%;
    height: 100vh;
    padding-top: 40px;
    background: rgba(26, 95, 63, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 999;
  }

  .menu__links.open {
    right: 0;
  }

  .menu__links li a {
    font-size: 1.4rem;
  }
}

  

  @media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}

/* ======================
   FORMULAIRE DEMANDE DE RÉSERVATION

/* ===== SECTION FORMULAIRE ===== */
#formulaire {
  width: 100%;
  min-height: 100vh; /* optionnel : au moins toute la hauteur de l'écran */
  position: relative;
  background-image: url("img/can.webp"); /* image de fond */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* effet parallax léger */
  padding: 60px 20px;
  color: #fff;
  overflow: hidden;
}

@media (max-width: 768px) {
  #formulaire {
    background-attachment: scroll; 
  }
}

/* Overlay sombre */
#formulaire::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55); 
  z-index: 0;
}

/* Contenu au-dessus de l'overlay */
#formulaire .section__header,
#formulaire .section__description,
.contact__form {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}


#formulaire .section__header {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffddc1; 
  margin-bottom: 15px;
}

#formulaire .section__description {
  color: #f0f0f0;
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* ===== FORM STYLING ===== */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,0.95); /* léger transparent pour voir bg */
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Champs input/select/textarea */
.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  border-color: #015797;
  box-shadow: 0 0 8px rgba(26, 95, 63, 0.3);
  outline: none;
}

.contact__form select {
  cursor: pointer;
}

.contact__form textarea {
  resize: vertical;
  min-height: 100px;
}

/* SUBMIT BUTTON */
.contact__form .btn {
  background: linear-gradient(135deg, #015797, #2d8659);
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.contact__form .btn:hover {
  background: linear-gradient(135deg, #015797, #1a5f3f);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,95,63,0.3);
}

/* RESPONSE MESSAGE */
#responseMessage {
  margin-top: 20px;
  font-weight: 600;
  color: #015797;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #formulaire {
    padding: 40px 15px;
  }

  .contact__form {
    padding: 25px 15px;
  }
}




/* ======================
   CONTACT
====================== */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.contact__col h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 700;
}

.contact__col p {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pay-logo {
  width: 32px;
  height: auto;
}

.contact__whatsapp {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
}

.contact__whatsapp:hover {
  background: #1ebe5d;
  transition: 0.3s;
}





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

/* MOBILE */
@media (max-width: 600px) {
  .contact__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact__col p {
    justify-content: center;
  }

  .contact__whatsapp {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}


.map__container {
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}




/* ======================
   QUI SOMMES-NOUS (ABOUT)
====================== */
/* ===== SECTION PRESENTATION ===== */
/* ===== SECTION CONTAINER ===== */
.section__container_q {
  margin-top: 5rem;
width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
 
 
}

/* Background image + overlay pour la section About */
.about__section {
  background-image: url("img/med.jfif"); /* image des souks */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* effet parallax */
  color: #fff;
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .about__section {
    background-attachment: scroll; /* plus de parallax sur mobile */
  }
}

.about__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: -1;
}

/* ===== SECTION HEADER ===== */
.section__header_q {
  font-size: 2rem;
  font-weight: 700;
  color: #ffddc1; /* beige doré premium */
  margin-bottom: 20px;
  position: relative;
}

.section__header_q::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6b35;
  margin: 10px auto 0;
 
}

.section__description_q {
  color: #ffffff; /* blanc */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* ombre pour lisibilité */
  font-weight: 500; /* texte clair sur background sombre */
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* ===== ABOUT CARDS ===== */
.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
  z-index: 2;
  position: relative;
}

.about__card {
  background: rgba(255,255,255,0.08);
  padding: 25px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  color: #fff;
  backdrop-filter: blur(5px);
}

.about__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.15);
}

.about__card span i {
  font-size: 2rem;
  color: #ffddc1;
  margin-bottom: 10px;
  display: inline-block;
}

.about__card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffddc1;
  font-weight: 700;
}

.about__card p {
  color: #ffffff; /* blanc */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7); /* ombre pour lisibilité */
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===== STATISTIQUES ===== */
.banner__container {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(135deg, #015797, #2d8659);
  padding: 40px 20px;
  border-radius: 15px;
  flex-wrap: wrap;
  color: #fff;
  margin-top: 6rem;
}

.banner__card {
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.banner__card h4 {
  font-size: 2rem;
  font-weight: 700;
}

.banner__card p {
  font-size: 0.95rem;
  margin-top: 5px;
}

/* ===== PARTENAIRES ===== */
.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.partners__logos img {
  height: 60px;
  width: auto;
  transition: transform 0.3s, filter 0.3s;
}

.partners__logos img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}


/* ===== BANNER MODERNE ===== */
.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a5f3f, #2d8659);
  border-radius: 20px;
  color: #fff;
  gap: 20px;
  overflow: hidden;
}

.banner__content {
  flex: 1 1 400px;
  max-width: 600px;
  text-align: left;
}

.banner__content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffddc1;
}

.banner__content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.4;
}

.banner__content .btn {
  background: #ff6b35;
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px;
  transition: all 0.3s;
}

.banner__content .btn:hover {
  background: #ff8a5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.banner__image {
  flex: 1 1 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner__image img {
  max-width: 250px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: transform 0.5s;
}

.banner__image img:hover {
  transform: scale(1.05) rotate(2deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .banner__content {
    text-align: center;
  }

  .banner__image img {
    max-width: 200px;
  }
}



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

  .banner__container {
    flex-direction: column;
    gap: 20px;
  }
}



.whatsapp-floating-group {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.whatsapp-btn {
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.25s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}



/* Sec
/* ===== CONTACT ===== */
#contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

#contact .section__header {
  font-size: 2.5rem;
  font-weight: 700;
  color: #015797;
  margin-bottom: 15px;
}

#contact .section__description {
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* GRID CONTACT */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* COLONNES */
.contact__col {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact__col:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact__col h3 {
  color: #015797;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

/* TEXTE & ICONES */
.contact__col p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact__col p i {
  color: #ff6b35;
  font-size: 18px;
}

/* LOGOS PAIEMENT */
.contact__col .pay-logo {
  height: 25px;
  margin-right: 10px;
  vertical-align: middle;
}

/* BOUTON WHATSAPP */
.contact__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* MAP */
.map__container iframe {
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #contact {
    padding: 40px 15px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .contact__whatsapp {
    width: 100%;
    justify-content: center;
  }
}



/* Tablettes */
@media (max-width: 992px) {
  .nav__logo img.logo {
    max-width: 140px;
  }
}

/* Mobiles */
@media (max-width: 576px) {
  .nav__logo img.logo {
    max-width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .nav__header{
    background-color: white;
  }

  .nav__menu__btn{
    color: var(--text-dark);
  }
  nav{
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

 
 
}

.period-picker {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 400px;
}



.period-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-icon {
  position: relative;
  flex: 1;
}

.input-icon input[type="date"] {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.input-icon input[type="date"]:focus {
  outline: none;
  border-color: #015797;
  box-shadow: 0 0 0 3px rgba(0,119,255,0.2);
}

.input-icon .icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 18px;
  color: #015797;
}

.separator {
  font-size: 20px;
  color: #555;
}


.phone-wrapper {
  width: 100%;
}

.iti {
  width: 100%;
}

input[type="tel"] {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  outline: none;
}

.iti__country-list {
  max-height: 250px;
  overflow-y: auto;
  z-index: 999999 !important;
}
/* rendre le dropdown de intl-tel-input propre et limité */
.iti {
  width: 100%;
  max-width: 450px; /* s’adapte proprement */
}

.iti--container {
  max-width: 450px !important;
  width: 100% !important;
  left: auto !important;        /* évite de dépasser l’écran */
  right: auto !important;
}

.iti__country-list {
  max-height: 300px;        /* limite la hauteur */
  overflow-y: auto;         /* scroll interne */
  border-radius: 10px;
  background: white;
}


/* ===== BANNER HERO ===== */
.banner {
  position: relative;
  width: 100%;
  height: 90vh; /* ou 100vh si tu veux tout l'écran */
  background-image: url('img/logoa.webp');
  background-position: center;
  background-size: cover;   /* couvre tout l'espace */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0; /* enlève si tu veux que ça touche les bords */
  overflow: hidden;
}


.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 95, 63, 0.5); /* vert semi-transparent */
  z-index: 1;
}

.banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.banner__logo {
  max-width: 150px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.5s;
}

.banner__logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

.banner__content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffddc1; /* touche lumineuse */
}

.banner__content p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

.banner__content .btn {
  background: #ff6b35;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s;
}

.banner__content .btn:hover {
  background: #ff8a5c;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .banner {
    height: 70vh;
  }

  .banner__content h2 {
    font-size: 2rem;
  }

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

  .banner__logo {
    max-width: 120px;
    margin-bottom: 15px;
  }
}


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

/* Tablettes (iPad, 768px et moins) */
@media (max-width: 768px) {
  .banner {
    padding: 2.5rem 0;
    margin: 3rem 0;
  }
  
  .slide {
    max-width: 250px;
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .slide img {
    max-height: 100px;
  }
}

/* Mobiles paysage (640px et moins) */
@media (max-width: 640px) {
  .banner {
    padding: 2rem 0;
    margin: 2rem 0;
  }
  
  .slide {
    max-width: 200px;
    padding: 1.25rem;
  }
  
  .slide img {
    max-height: 80px;
  }
}

/* Petits mobiles (480px et moins) */
@media (max-width: 480px) {
  .banner {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
  }
  
  .slide {
    max-width: 160px;
    padding: 1rem;
    border-radius: 10px;
  }
  
  .slide img {
    max-height: 65px;
  }
}

/* Très petits écrans (360px et moins) */
@media (max-width: 360px) {
  .banner {
    padding: 1rem 0;
    margin: 1rem 0;
  }
  
  .slide {
    max-width: 140px;
    padding: 0.75rem;
  }
  
  .slide img {
    max-height: 55px;
  }
}


/* ========================================
   NOUVELLES SECTIONS - STYLES CASDAK VOYAGES
   ======================================== */

/* SECTION ÉVÉNEMENT CAN 2025 */
.event__special {
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.event__hero__image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.event__hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event__hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.event__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ff6b35;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
  z-index: 2;
  position: relative;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.event__badge i {
  font-size: 20px;
}

.event__title {
  color: white !important;
  font-size: 2.8rem;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.event__special .section__description {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.2rem;
  z-index: 2;
  position: relative;
  max-width: 800px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.event__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.event__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.event__card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.event__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #ff8b5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.event__icon i {
  font-size: 35px;
  color: white;
}

.event__card h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: white;
}

.event__card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  font-size: 1rem;
}

.event__highlight {
  background: rgba(255, 107, 53, 0.3);
  padding: 8px 15px;
  border-radius: 10px;
  font-weight: 600;
  margin-top: 15px !important;
  color: #ffe4d6 !important;
}

.event__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.btn__primary {
  background: #ff6b35;
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn__primary:hover {
  background: #ff8b5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.btn__secondary {
  background: white;
  color: #015797;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn__secondary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

/* SECTION DESTINATIONS */
.destinations__section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9fa 0%, white 100%);
}

.destination__continent {
  margin-bottom: 70px;
}

.continent__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ff6b35;
}

.continent__header i {
  font-size: 35px;
  color: #ff6b35;
}

.continent__header h3 {
  font-size: 2rem;
  color: #015797;
  font-weight: 800;
  letter-spacing: 2px;
}

.destination__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.destination__card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.destination__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.destination__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

.destination__card:hover .destination__image img {
  transform: scale(1.15);
}

.destination__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.destination__country {
  background: rgba(255, 107, 53, 0.95);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.destination__info {
  padding: 25px;
}

.destination__info h4 {
  font-size: 1.3rem;
  color: #015797;
  margin-bottom: 12px;
  font-weight: 700;
}

.destination__info p {
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.destination__info p i {
  color: #ff6b35;
  font-size: 16px;
}

.destination__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #015797, #2d8659);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.destination__btn:hover {
  background: linear-gradient(135deg, #2d8659, #3fa76f);
  transform: translateX(5px);
}

.destination__btn i {
  transition: transform 0.3s ease;
}

.destination__btn:hover i {
  transform: translateX(5px);
}

/* SECTION OFFRES SPÉCIALES */
.promo__section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.promo__section .section__header,
.promo__section .section__description {
  color: white;
}

.promo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.promo__card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.promo__card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.promo__badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: #ff6b35;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.promo__card i {
  font-size: 60px;
  color: #ffe4d6;
  margin-bottom: 25px;
}

.promo__card h4 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: white;
}

.promo__card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.promo__card .btn {
  background: white;
  color: #667eea;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.promo__card .btn:hover {
  background: #ffe4d6;
  color: #ff6b35;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .event__hero__image {
    height: 400px;
  }
  
  .event__title {
    font-size: 2rem;
  }
  
  .event__special .section__description {
    font-size: 1rem;
  }
  
  .event__grid {
    grid-template-columns: 1fr;
  }
  
  .event__cta {
    flex-direction: column;
  }
  
  .btn__primary,
  .btn__secondary {
    width: 100%;
    justify-content: center;
  }
  
  .continent__header h3 {
    font-size: 1.5rem;
  }
  
  .destination__grid {
    grid-template-columns: 1fr;
  }
  
  .promo__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .event__hero__image {
    height: 350px;
  }
  
  .event__title {
    font-size: 1.7rem;
  }
  
  .event__card {
    padding: 25px;
  }
  
  .destination__info h4 {
    font-size: 1.1rem;
  }
}

.organized__trips__section {
  width: 100%;
  padding: 80px 20px;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600') no-repeat center center/cover;
  position: relative;
  overflow: hidden;
  color: white;
}

.organized__trips__section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* overlay pour contraste texte */
  z-index: 0;
}

.section__header__main {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
  color: #ff6b35;
}

.section__description__main {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #fff;
}

.trips__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

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

.trip__card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.trip__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.trip__image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

.trip__card:hover .trip__image img {
  transform: scale(1.15);
}

.trip__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #015797;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.trip__content {
  padding: 25px;
}

.trip__title {
  font-size: 1.5rem;
  color: #2d8659;
  margin-bottom: 12px;
  font-weight: 700;
}

.trip__features {
  list-style: none;
  margin: 15px 0;
}

.trip__features li {
  padding: 8px 0;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.trip__features i {
  color: #ff6b35;
  font-size: 1.1rem;
}

.trip__btn {
  display: inline-block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #015797, #2d8659);
  color: white;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.trip__btn:hover {
  background: linear-gradient(135deg, #2d8659, #3fa76f);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}













