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

:root {
  --primary-color: #0f1a2c;
  --secondary-color: #f6ac0f;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --extra-light: #f8fafc;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Playfair Display", serif;
}

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

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

.section__subheader {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.section__header {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: #012475;
}

.section__description {
  margin-top: 1rem;
  color: var(--text-light);
}


.section__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section__nav span {
  padding: 10px 15px;
  font-size: 1.25rem;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.section__nav span:hover {
  background-color: var(--secondary-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 2px;
}

.logo div {
  padding-inline: 12px;
  font-size: 2rem;
}

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

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

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



.header__container .section__subheader {
  color: var(--white);
}

.header__container h1 {
  margin-bottom: 2rem;
  font-size: 6rem;
  font-weight: 800;
  line-height: 7rem;
  font-family: var(--header-font);
  color: var(--white);
}
.header {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Style de la vidéo */
.header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Pour que la vidéo soit en arrière-plan */
}

/* Container principal du header */
.header__container {
  position: absolute;
  top: 50%;
  left: 0;  /* Alignement à gauche */
  transform: translateY(-50%);  /* Centrage vertical */
  text-align: left;  /* Aligner le texte à gauche */
  color: white;
  padding: 0 20px;
}

/* Style pour le sous-titre */
.section__subheader {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Style pour le titre */
.header h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -2px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

/* Style du bouton */
.btn {
  background-color: #f6ac0f;
  color: white;
  padding: 12px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #fcc125;
}


.booking {
  background-color: var(--primary-color);
}

.booking__container form {
  max-width: 350px;
  margin: auto;
  display: grid;
  gap: 2rem;
}

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

.input__group label {
  font-weight: 600;
  color: var(--white);
}

.input__group input {
  width: 100%;
  font-size: 1rem;
  padding: 0.5rem;
  color: var(--white);
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid var(--text-light);
  border-radius: 5px;
}

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

.about {
  position: relative;
  isolation: isolate;
}



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

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

.about__card {
  height: 100%;
  padding: 2rem;
  display: grid;
  place-content: center;
  text-align: center;
}

.about__card span {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var (--secondary-color);
}

.about__card h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

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

.about__card:nth-child(4) {
  background-color: var(--primary-color);
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.about__card:nth-child(4) :is(h4, p) {
  color: var(--white);
}

.about__image img {
  height: 100%;
  object-fit: cover;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.about__content .section__description {
  margin-bottom: 2rem;
}

.room__container {
  padding-block: 5rem;
}

.room__container :is(.section__subheader, .section__header) {
  padding-inline: 1rem;
  text-align: center;
}

.room__grid {
  max-width: 1500px;
  margin-inline: auto;
  margin-top: 4rem;
  display: grid;
  gap: 0 1rem;
}

.room__card img {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.room__card__details {
  margin-inline: 1rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--white);
  transform: translateY(-50%);
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.room__card__details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

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

.room__card__details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var (--secondary-color);
}

room__card__details h3 span {
  font-size: 0.8rem;
}

.intro {
  position: relative;
  isolation: isolate;
  background-color: var(--primary-color);
}

.intro::before {
  position: absolute;
  content: "";
  right: 0;
  height: 100%;
  width: calc(100vw / 4);
  background-color: var(--secondary-color);
  z-index: -1;
}

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

.intro__container .section__subheader {
  color: var(--secondary-color);
}

.intro__container :is(.section__header, .section__description) {
  margin-bottom: 1rem;
  color: var(--white);
}

.intro__video {
  max-width: 450px;
  margin: auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.feature__container :is(.section__subheader, .section__header) {
  text-align: center;
}

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

.feature__card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  color: var(--secondary-color);
}

.feature__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  counter-reset: var(--text-dark);
}

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

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

.menu__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu__items {
  list-style: none;
  margin-block: 4rem;
  display: grid;
  gap: 1rem 4rem;
}

.menu__items li {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.menu__items li:hover {
  background-color: #0f1a2c;
  border-radius: 5%;
}

.menu__items img {
  max-width: 100px;
  border-radius: 2px;
}

.menu__items h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
  transition: 0.3s;
}

.menu__items p {
  max-width: 400px;
  color: var(--text-light);
  transition: 0.3s;
}

.menu__items li:hover :is(h4, p) {
  color: #f8f9fa;
}

.menu__images {
  margin-bottom: 4rem;
  display: grid;
  gap: 1rem;
}

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

.menu__banner {
  list-style: none;
  padding: 4rem 2rem;
  display: grid;
  gap: 2rem;
  text-align: center;
  background-color: var(--primary-color);
  border-radius: 5px;
}

.menu__banner span {
  font-size: 3.5rem;
  color: var(--secondary-color);
}

.menu__banner h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

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

.news__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.news__card img {
  margin-bottom: 2rem;
  border-radius: 5px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.news__card__title {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news__card__title p {
  font-weight: 500;
  color: var (--text-light);
}

.news__card h4 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: var(--header-font);
  color: var(--text-dark);
}

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


@media (width > 480px) {
  .about__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__image:nth-child(1) {
    grid-area: 1/2/2/3;
  }

  .about__image:nth-child(1),
  .about__card:nth-child(4) {
    transform: translateY(2rem);
  }

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

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

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

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

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

  .footer__col:first-child {
    grid-column: 1/3;
  }
}

@media (width > 768px) {
  nav {
    position: static;
    padding-inline: 1rem;
    background-color: #012475;
  }

  .nav__bar {
    max-width: var(--max-width);
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    border-radius: 5px;
    transform: translateY(50%);
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
  }

  /* .nav__menu__btn {
    display: block;
  } */

  .nav__links {
    width: fit-content;
    padding: 0;
    position: static;
    flex-direction: row;
    transform: none;
    background-color: transparent;
  }

  .booking__container form {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }

  .about::before {
    height: 75%;
    width: 75%;
  }

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

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

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

  .feature__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__header {
    flex-direction: row;
  }

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

  .menu__images {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__banner {
    grid-template-columns: repeat(4, 1fr);
  }

  .news__header {
    flex-direction: row;
  }

  .news__grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer__col:first-child {
    grid-column: unset;
  }
}

@media (width > 1024px) {
  .about__grid {
    gap: 2rem;
  }

  .room__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .menu__images {
    gap: 2rem;
  }

  .news__grid {
    gap: 2rem;
  }
}

/* Breakpoint intermédiaire */
@media (min-width: 769px) and (max-width: 1024px) {
  .navbar1 {
    width: 95%;
    max-width: 960px;
    padding: 0.8rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem;
  }

  /* Ajustement des grilles */
  .room__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .menu__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Ajustement des conteneurs */
  .section__container {
    padding: 4rem 1.5rem;
  }

  /* Ajustement des tailles de texte */
  .section__header {
    font-size: 2.5rem;
  }

  .header__container h1 {
    font-size: 4rem;
    line-height: 4.5rem;
  }

  /* Ajustement des vols */
  .vols-container {
    gap: 15px;
  }

  .vol {
    width: 280px;
  }

  /* Ajustement des vidéos */
  .intro__video {
    max-width: 400px;
  }
}

/* Ajustement des boutons de connexion/inscription pour tablette */
@media (min-width: 769px) and (max-width: 1024px) {
  .btn-connect,
  .redirect-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  /* Ajustement du menu déroulant */
  .dropdown {
    width: 180px;
  }
}

/* Correction de l'espacement pour les grands écrans */
@media (min-width: 1025px) {
  .navbar1 {
    max-width: 1400px;
    padding: 1rem 2rem;
  }

  .nav-links {
    gap: 2rem;
  }
}

.nos-vols {
  padding: 40px;
  background-color: #f8f9fa;
  text-align: center;
}

.nos-vols h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
  font-weight: bold;
}

.vols-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.vol {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vol:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.vol img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.vol-info {
  padding: 20px;
  text-align: left;
}

.vol h3 {
  font-size: 1.5em;
  color: #012475;
  margin-bottom: 10px;
}

.vol p {
  font-size: 1em;
  color: #555;
  margin: 5px 0;
}



.btn-reserver {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #f6ac0f;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
}

.btn-reserver:hover {
  background-color: #0056b3;
}
/* Base pour la navbar */
nav {
  background-color: #012475;
  font-family: Arial, sans-serif;
}

.nav__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1000;
}

/* Logo */
.nav__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #012475;
  font-size: 1.5rem;
}

.nav__logo div {
  font-size: 2rem;
  font-weight: bold;
}

.nav__logo span {
  font-size: 1rem;
  font-weight: lighter;
}

/* Style pour le burger */
.burger {
  display: none; /* Caché par défaut */
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 1001; /* Toujours devant */
}

.burger span {
  width: 100%;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

/* Menu du bouton hamburger */
/* .nav__menu__btn {
  display: none;
  cursor: pointer;
  font-size: 2rem;
  color: white;
} */

/* Liste de navigation */
.nav__links {
  list-style-type: none;
  display: flex;
  gap: 2rem;
}

.nav__links li {
  position: relative;
}

.nav__links a {
  color: #012475;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.9s ease;
}

.nav__links a:hover {
  color: #fcc125; /* Couleur d'accent pour le survol */
}




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

  .navbar1 {
    justify-content: center; /* Centre toute la navbar */
  }
  /* Affiche le bouton burger */
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    z-index: 1001; /* Toujours devant le menu */
  }

  .burger span {
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
  }

  /* Menu caché par défaut */


  .nav-links {
    flex-direction: column; /* Colonne pour un affichage vertical */
    justify-content: center; /* Centre les liens */
    align-items: center;
    position: absolute;
    left: 40%; /* Place le centre du conteneur à 50% du parent */
    top: 50%; /* (Optionnel) Centre verticalement si nécessaire */
    transform: translate(-50%, -50%); /* Ajuste pour centrer parfaitement */
    width: 90%; /* Ajustez selon vos besoins */
    padding: 1rem;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;

}


  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1);  /* Assure un centrage parfait */
  }



  /* Menu visible lorsqu'il est actif */


  /* Espacement des liens */
  .nav-links li {
    margin: 1rem 0;
  }

  /* Style des liens */
  .nav-links a {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
  }

  .nav-links a:hover {
    color: var(--secondary-color); /* Couleur de survol */
  }
}

.navbar1 {
  background: rgba(255, 255, 255, 0.2); /* Fond semi-transparent */
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: fixed;
  width: 90%;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  backdrop-filter: blur(10px); /* Effet de flou */
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2rem;
  color: #ffca28;
  font-weight: bold;
  letter-spacing: 2px;
  text-shadow: 0 2px 5px rgba(255, 202, 40, 0.3);
  margin-left: 12px;
}



.nav-links {
  display: flex; /* Gardez les éléments en ligne horizontale */
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%; /* Assurez que la hauteur correspond */
  margin: 0 auto; /* Centre les liens */
}
.nav-links.active {
  position: relative; /* Le menu burger reste dans la navbar */
}

.nav-links a {
  color: #012475; /* Couleur des liens initialement en blanc */
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  padding: 0.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
  font-weight: bold;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #ffca28;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}



.btn-connect {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(45deg, #ffca28, #ff8c00);
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
  margin-top: 12px;

}

.btn-connect:hover {
  background: linear-gradient(45deg, #ff8c00, #ff5722);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.btn-connect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transform: scale(0);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn-connect:hover::before {
  transform: scale(2.5);
}

/* Responsive design */
@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      width: 100%;
      padding: 1rem;
      top: 10px;
  }

  .nav-links {
      flex-direction: column;
      gap: 1rem;
  }
}

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

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

.visa__card {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
}

.visa__card img {
  width: 100%;
  height: auto;
}

.visa__card__details {
  padding: 1rem;
}

.visa__card__details h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.visa__card__details p {
  font-size: 1rem;
  color: #666;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

.btn:hover {
  background-color: #0056b3;
}

/* Navigation styles */
.navbar1 {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  width: 90%;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.nav-links a {
  color: #012475;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffde59;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 3px;
  background-color: #ffde59;
  transition: width 0.3s ease;
}

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

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.burger span {
  width: 30px;
  height: 3px;
  background: #012475;
  border-radius: 10px;
  transition: all 0.3s linear;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .burger {
    display: flex;
    position: fixed;
    right: 2rem;
    top: 1.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    flex-direction: column;
    padding: 80px 1rem 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .burger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.toggle span:nth-child(2) {
    opacity: 0;
  }

  .burger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

@media (max-width: 768px) {
  .navbar1 {
    width: 95%;
    padding: 0.5rem;
  }

  .nav-links.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* ...existing code... */

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 6rem 2rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    overflow-y: auto; /* Permet le défilement vertical */
    -webkit-overflow-scrolling: touch; /* Pour un défilement fluide sur iOS */
    /* Stylisation de la barre de défilement */
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(255, 255, 255, 0.1);
  }

  /* Style pour la barre de défilement sur Chrome/Safari */
  .nav-links::-webkit-scrollbar {
    width: 6px;
  }

  .nav-links::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 10px;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding-top: 5rem; /* Espace supplémentaire en haut */
    max-height: 100vh; /* S'assure que le menu ne dépasse pas la hauteur de l'écran */
  }

  /* ...existing code... */
}

/* ...existing code... */

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre verticalement les liens */
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    margin: 0; /* Réinitialise la marge */
    transform: translateY(0); /* Réinitialise la transformation */
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding-top: 4rem; /* Ajoute de l'espace en haut pour éviter le chevauchement */
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Ajustement du burger menu */
  .burger {
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 1002; /* Assurez-vous qu'il reste au-dessus du menu */
  }
}

/* ...existing code... */

@media (max-width: 768px) {
  .nav-links {
    /* ...existing code... */
    padding: 6rem 2rem 2rem 2rem; /* Augmentation du padding top à 6rem */
    overflow-y: auto;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding-top: 5rem; /* Augmentation de l'espace en haut à 8rem */
  }

  /* Style des éléments de la liste */
  .nav-links li:first-child {
    margin-top: 2rem; /* Ajoute de l'espace avant le premier élément */
  }

  /* Ajustement de la position du burger */
  .burger {
    position: fixed;
    right: 1.5rem;
    top: 1.5rem; /* Légère augmentation de la position du burger */
  }
}

/* ...existing code... */

/* Modification du breakpoint pour le menu burger */
@media (max-width: 1000px) {
  .burger {
    display: flex;
    position: fixed;
    right: 1.5rem;
    top: 1.5rem;
    z-index: 1002;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 6rem 2rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) rgba(255, 255, 255, 0.1);
  }

  .navbar1 {
    width: 95%;
    padding: 0.8rem;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding-top: 5rem;
  }

  .burger.toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.toggle span:nth-child(2) {
    opacity: 0;
  }

  .burger.toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Ajustement pour les écrans plus grands que 1000px */
@media (min-width: 1001px) {
  .navbar1 {
    max-width: 1400px;
    padding: 1rem 2rem;
  }

  .nav-links {
    gap: 2rem;
    flex-direction: row;
    background: none;
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0;
    height: auto;
  }
}

/* ...existing code... */

/* Style cohérent pour tous les breakpoints */
@media (max-width: 768px),
       (min-width: 768px) and (max-width: 1000px) {
  .nav-links.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    padding-top: 8rem; /* Augmenté de 5rem à 8rem pour plus d'espace */
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Ajout d'un espace supplémentaire pour le premier élément */
  .nav-links.active li:first-child {
    margin-top: 2rem; /* Ajoute un espace supplémentaire avant le premier lien */
  }
}

/* ...existing code... */

@media (min-width: 768px) and (max-width: 1000px) {
  .nav-links.active {
    padding-top: 9rem; /* Légèrement plus d'espace pour les tablettes */
  }
}

/* ...existing code... */

/* Ajustements spécifiques pour les écrans entre 768px et 1000px */
@media (min-width: 768px) and (max-width: 1000px) {
  .nav-links.active {
    padding-top: 6rem; /* Légèrement plus d'espace en haut */
  }

  .nav-links.active a {
    font-size: 1.3rem; /* Texte légèrement plus grand */
  }
}

/* ...existing code... */

/* Ajustement spécifique pour le bouton de déconnexion entre 1002px et 1095px */
@media (min-width: 1002px) and (max-width: 1095px) {
  .navbar1 {
    padding: 1rem 1rem; /* Réduire légèrement le padding horizontal */
  }

  .nav-links {
    gap: 1.5rem; /* Réduire l'espace entre les éléments */
  }

  .nav-links li:last-child {
    margin-right: 0; /* Supprimer la marge à droite du dernier élément */
  }

  /* Ajuster la taille du bouton de déconnexion */
  .nav-links button {
    padding: 8px 15px; /* Réduire le padding du bouton */
    font-size: 0.9rem; /* Réduire légèrement la taille du texte */
    white-space: nowrap; /* Empêcher le texte de passer à la ligne */
  }
}

/* ...existing code... */

/* Section Nos Services */
.services {
  padding: 80px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.services__header {
  text-align: center;
  margin-bottom: 50px;
}

.services__header .section__subheader {
  font-size: 1.2em;
  color: #ffca28;
}

.services__header .section__header {
  font-size: 2.5em;
  color: #012475;
  margin-top: 10px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

.service__card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service__icon {
  font-size: 3em;
  color: #ffca28;
  margin-bottom: 20px;
}

.service__title {
  font-size: 1.8em;
  color: #012475;
  margin-bottom: 15px;
}

.service__description {
  font-size: 1.2em;
  color: #555;
}




.visa-section {
  padding: 50px 20px;

  text-align: center;
  position: relative;
  overflow: hidden;
}

.visa-title {
  font-size: 2.5rem;
  color: #012475;
  margin-bottom: 20px;
  animation: fadeInDown 1s;
}

.visa-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
  animation: fadeInUp 1s;
}

.visa-gallery {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  perspective: 1000px;
}

.visa-item {
  position: relative;
  width: 300px;
  height: 400px;
  transform-style: preserve-3d;
  transform: rotateY(0);
  transition: transform 0.8s;
}

.visa-item:hover {
  transform: rotateY(180deg);
}

.visa-image {
  position: absolute;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.visa-info {
  position: absolute;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  color: #012475;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 15px;
  transform: rotateY(180deg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.visa-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.visa-info p {
  font-size: 1rem;
  text-align: center;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-section {
  padding: 100px 20px;

  color: #333;

}

.about-header h2 {
  font-size: 3em;
  color: #012475;
  text-align: center;
  margin-bottom: 20px;
}

.about-header h2 span {
  color: #ffca28;
}

.about-header p {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

/* Contenu */
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
  animation: fadeIn 1.5s ease;
}

.about-text h3 {
  font-size: 2em;
  color: #012475;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  font-size: 1.3em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.about-text ul li i {
  font-size: 1.8em;
  color: #012475;
  margin-right: 10px;
}

/* Image avec effet parallax */
.about-image {
  flex: 1;
  max-width: 45%;
  position: relative;
  height: 500px;
}

.parallax-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.parallax-wrapper img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1) translateY(0);
  transition: transform 0.5s ease-in-out;
}

.about-image[data-parallax] .parallax-wrapper img {
  animation: parallaxEffect 6s infinite alternate ease-in-out; /* Durée de 6s */
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(13, 71, 161, 0.7);
  padding: 20px 30px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.parallax-wrapper:hover .image-overlay {
  opacity: 1;
  transform: translate(-50%, -40%);
}

.image-overlay h4 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 15px;
}

.image-overlay button {
  padding: 10px 20px;
  font-size: 1.2em;
  background: #ffca28;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.image-overlay button:hover {
  background: #ffca28;
}

/* Effet Parallax Scroll */
@keyframes parallaxEffect {
  0% {
    transform: scale(1.1) translateY(-30px);
  }
  100% {
    transform: scale(1.1) translateY(30px);
  }
}

/* Animation générale */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-us-section {
  padding: 100px 20px;

  color: #000;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-us-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s;
  color: #012475;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about-us-description {
  font-size: 1.5rem;
  margin-bottom: 50px;
  line-height: 1.8;
  animation: fadeInUp 1s;
  color: #012475;
}

.about-us-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.about-us-card {
  width: 300px;
  height: 400px;
  background: #fff;
  color: #012475;
  border-radius: 15px;
  perspective: 1000px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
  animation: zoomIn 1s;
}

.about-us-card:hover {
  transform: scale(1.05);
}

.about-us-card-front,
.about-us-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: transform 0.8s ease;
}

.about-us-card-front {

  color: #000;
}

.about-us-card-back {
  background: #fff;
  color: #012475;
  transform: rotateY(180deg);
}

.about-us-card:hover .about-us-card-front {
  transform: rotateY(180deg);
}

.about-us-card:hover .about-us-card-back {
  transform: rotateY(0);
}

.icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

#particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
 /* Section principale */
 .about-section {
  padding: 100px 20px;

  color: #333;

}
.about-header h2 {
  font-size: 3em;
  color: #012475;
  text-align: center;
  margin-bottom: 20px;
}

.about-header h2 span {
  color: #ffca28;
}

.about-header p {
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
}

/* Contenu */
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
  animation: fadeIn 1.5s ease;
}

.about-text h3 {
  font-size: 2em;
  color: #012475;
  margin-bottom: 20px;
}

.about-text ul {
  list-style: none;
  padding: 0;
}

.about-text ul li {
  font-size: 1.3em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.about-text ul li i {
  font-size: 1.8em;
  color: #012475;
  margin-right: 10px;
}

/* Image avec effet parallax */
.about-image {
  flex: 1;
  max-width: 45%;
  position: relative;
  height: 500px;
}

.parallax-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  height: 100%;
}

.parallax-wrapper img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1) translateY(0);
  transition: transform 0.5s ease-in-out;
}

.about-image[data-parallax] .parallax-wrapper img {
  animation: parallaxEffect 6s infinite alternate ease-in-out; /* Durée de 6s */
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(13, 71, 161, 0.7);
  padding: 20px 30px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.parallax-wrapper:hover .image-overlay {
  opacity: 1;
  transform: translate(-50%, -40%);
}

.image-overlay h4 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 15px;
}

.image-overlay button {
  padding: 10px 20px;
  font-size: 1.2em;
  background: #ffca28;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.image-overlay button:hover {
  background: #ffca28;
}

/* Effet Parallax Scroll */
@keyframes parallaxEffect {
  0% {
    transform: scale(1.1) translateY(-30px);
  }
  100% {
    transform: scale(1.1) translateY(30px);
  }
}

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

.visa-section {
  padding: 60px 20px;
  color: #012475;
}

.visa__header {
  text-align: center;
  margin-bottom: 40px;
}

.visa__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.visa__card {
  background: white;
  color: #012475;
  width: 300px; /* Largeur fixe */
  max-width: 100%; /* Permet d'être responsive */
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.visa__card:hover {
  transform: perspective(1000px) rotateY(15deg);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

.visa__image-wrapper {
  width: 100%;
  overflow: hidden;
}

.visa__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visa__card:hover .visa__image {
  transform: scale(1.1);
}

.visa__title {
  text-align: center;
  font-size: 1.5rem;
  margin: 20px 0 10px;
}

.visa__description {
  text-align: center;
  padding: 0 15px 20px;
}
/* Section globale */
.omra-slider-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f0f8ff, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Supprime le padding */
  margin-top: 0; /* Supprime la marge en haut */
}

/* Conteneur du slider */
.slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.5s ease-in-out;
  animation: autoSlide 15s infinite;
}

.slider-item {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

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

.slider-item:hover img {
  transform: scale(1.1);
}

.slider-description {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: left;
  animation: fadeIn 1s ease;
}

.slider-description h3 {
  margin: 0;
  font-size: 24px;
  color: #ffd700;
}

.slider-description p {
  margin: 5px 0 0;
  font-size: 16px;
}

/* Boutons de navigation */
.slider-navigation {
  position: absolute;
  width: 100%;
  top: 50%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.slider-navigation button {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-navigation button:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Animation Auto-Play */
@keyframes autoSlide {
  0%, 20% { transform: translateX(0); }
  25%, 45% { transform: translateX(-100%); }
  50%, 70% { transform: translateX(-200%); }
  75%, 95% { transform: translateX(-300%); }
  100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .slider-description h3 {
    font-size: 18px;
  }

  .slider-description p {
    font-size: 14px;
  }
}
.omra-section {
  padding: 60px 20px;
  text-align: center;
  color: #012475;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  animation: fadeIn 1s ease-out;
}

/* Titre */
.omra-title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #012475;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Description */
.omra-description {
  font-size: 18px;

  line-height: 1.6;
  color: #7f8c8d;
}

/* Galerie */
.omra-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  transform: translateY(20px);
  animation: slideUp 1s ease-out forwards;
  opacity: 0;
}

/* Images */
.omra-image {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.omra-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Animation au survol */
.omra-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.omra-image:hover img {
  transform: scale(1.1) rotate(3deg);
}

/* Bouton */
.omra-button {
  margin-top: 30px;
  padding: 15px 40px;
  background: linear-gradient(45deg, #3498db, #9b59b6);
  color: #fff;
  font-size: 18px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.omra-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}



/* le code de la responivite pour celui de decouvrez ziguade tour */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-text, .about-image {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-text, .about-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-text, .about-image {
    padding: 10px;
  }
}
