.logo {
    width: 100px;   /* adapte la taille */
    height: auto;
}
/* ——— Base ——— */
:root{
  --bg:#ffffff;              /* Fond clair (ciel / nuages) */
  --bg-soft:#f0f4f8;         /* Fond doux */
  --text:#1c1c1c;            /* Texte sombre */
  --muted:#555555;           /* Texte atténué */
  --brand:#ff6600;           /* Orange avion */
  --brand-2:#0077ff;         /* Bleu planète */
  --card:#f9f9f9;            /* Fond des cartes */
  --ring: rgba(0,119,255,.35);
  --shadow: 0 10px 30px rgba(0,0,0,.15);
}
*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #e6f2ff 100%);
  line-height:1.55;
}
img{max-width:100%; display:block;}

.container{max-width:1100px; margin:0 auto; padding:0 16px;}
.section{padding:64px 0;}
h1,h2,h3{line-height:1.2; margin:0 0 12px}
h1{font-size: clamp(28px, 5vw, 46px);}
h2{font-size: clamp(22px, 4vw, 34px);}
h3{font-size: 20px;}

.btn{
  border:0; background:linear-gradient(90deg,var(--brand),var(--brand-2));
  color:#ffffff; font-weight:700; padding:12px 18px; border-radius:10px;
  cursor:pointer; box-shadow: var(--shadow); transition: transform .08s ease;
}
.btn:hover{transform: translateY(-1px);}
.btn.ghost{background:transparent; color:var(--text); border:1px solid #ddd; box-shadow:none}
.btn.small{padding:8px 12px; font-size:14px}
.btn.full{width:100%}

.site-header{
  position:sticky; top:0; z-index:10; backdrop-filter: blur(8px);
  background: rgba(0,119,255,.9); border-bottom:1px solid #ccc;
}
.header-inner{display:flex; align-items:center; gap:16px; padding:12px 0;}
.brand{font-weight:900; font-size:20px; color:var(--text); text-decoration:none;}
.nav{display:flex; gap:16px; margin-left:auto; margin-right:12px;}
.nav a{color:var(--muted); text-decoration:none; padding:8px 10px; border-radius:8px;}
.nav a:hover{background:#e6f2ff; color:var(--brand);}
.auth-actions{display:flex; gap:8px;}
.nav-toggle{display:none; background:transparent; border:1px solid #ccc; color:var(--text); padding:8px 10px; border-radius:8px;}

.hero{
  background: radial-gradient(80% 60% at 50% 0%, rgba(0,119,255,.15), transparent 60%);
  padding: 80px 0 64px;
  text-align:center;
}
.hero p{color:var(--muted); max-width:680px; margin:8px auto 20px}
.cta-row{display:flex; gap:12px; justify-content:center; flex-wrap:wrap;}

.grid.cards{
  display:grid; gap:18px; grid-template-columns: repeat(4, 1fr);
}
.card{background:var(--card); border:1px solid #ddd; border-radius:14px; overflow:hidden; box-shadow: var(--shadow);}
.card-body{padding:14px;}
.card h3{margin-bottom:6px;}
.card img{aspect-ratio:16/10; object-fit:cover;}

.offers{display:grid; gap:16px; grid-template-columns: repeat(3,1fr);}
.offer{background:var(--card); border:1px solid #ddd; border-radius:14px; padding:16px; position:relative;}
.offer-badge{position:absolute; top:12px; right:12px; background:var(--brand-2); color:#ffffff; padding:4px 8px; border-radius:999px; font-weight:700; font-size:12px;}

#contact-form{
  display:grid; grid-template-columns: repeat(2,1fr); gap:14px;
  background:var(--card); border:1px solid #ddd; padding:16px; border-radius:14px; box-shadow: var(--shadow);
}
.form-row{display:flex; flex-direction:column; gap:6px;}
.form-row.full{grid-column: 1 / -1;}
label{font-size:14px; color:#444;}
input,select{
  background:#ffffff; color:var(--text); border:1px solid #ccc; border-radius:10px;
  padding:12px 10px; outline:2px solid transparent; outline-offset:2px;
}
input:focus,select:focus{outline-color: var(--ring); border-color:var(--brand-2);}
.form-help{margin-top:8px; color:var(--rouge); min-height:1.2em;}

.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px; background:var(--card); border:1px solid #ddd; padding:16px; border-radius:14px;}

.site-footer{border-top:1px solid #ddd; margin-top:40px; padding:24px 0; background:var(--brand-2);}
.footer-inner{display:flex; align-items:center; justify-content:space-between; color:var(--blanc);}
.social a{color:var(--blanc); text-decoration:none; margin-left:12px; font-family: Arial, sans-serif;}

.modal-backdrop{
  position: fixed; inset:0; background: rgba(0,0,0,.45); backdrop-filter: blur(2px);
}
.modal{
  width:min(480px, 92vw); border:1px solid #ddd; border-radius:14px; padding:0; background:var(--card);
  color:var(--text);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tabs{padding:0; margin:0;}
[role="tablist"]{display:flex; gap:8px; padding:10px; border-bottom:1px solid #ddd;}
.tab{background:#e6f2ff; color:var(--text); border:1px solid #ccc; padding:10px 12px; border-radius:10px; cursor:pointer;}
.tab[aria-selected="true"]{background:linear-gradient(90deg,var(--brand),var(--brand-2)); color:#ffffff; font-weight:800;}
.tab-panels{padding:16px;}
.modal-close{
  position:absolute; top:8px; right:10px; border:0; background:transparent; color:var(--muted); font-size:28px; cursor:pointer;
}

/* ——— Responsive ——— */
@media (max-width: 960px){
  .grid.cards{grid-template-columns: repeat(2,1fr);}
  .offers{grid-template-columns: repeat(2,1fr);}
}
@media (max-width: 720px){
  .nav{display:none;font-weight: 900;
}
  .nav.is-open{display:flex; position:absolute; top:56px; left:0; right:0; background:#e6f2ff; padding:10px 16px; border-bottom:1px solid #ddd;}
  .nav-toggle{display:block; margin-left:auto;}
  #contact-form{grid-template-columns: 1fr;}
  .offers{grid-template-columns: 1fr;}
  .contact-grid{grid-template-columns: 1fr;}
  .grid.cards{grid-template-columns: 1fr;}
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #222;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  color: #c62828;
  font-size: 2.2em;
}

.price {
  font-size: 1.5em;
  color: #333;
}

.price span {
  color: #d32f2f;
  font-weight: bold;
}

/* Sections */
section {
  background: white;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

h2 {
  margin-bottom: 10px;
  color: #1565c0;
}

ul {
  margin-left: 20px;
  list-style-type: square;
}

.city h3 {
  color: #2e7d32;
  margin-top: 10px;
}

footer {
  text-align: center;
  padding: 10px;
  background: #1565c0;
  color: white;
  border-radius: 8px;
}
.tarif-box {
  display: inline-block;
  background: #f0f0f0;
  color: #333;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 1.3em;
  font-weight: 500;
  border: 1px solid #ccc;
  margin: 15px auto;
}

.tarif-box .label {
  font-size: 0.9em;
  color: #666;
  margin-right: 6px;
}

.tarif-box .amount {
  font-weight: bold;
  color: #2e7d32; /* Vert élégant */
}
/* Section générale */
section {
  background: #ffffff;
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Titres */
section h2 {
  font-size: 1.6em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 6px solid #1565c0;
  padding-left: 10px;
  color: #1565c0;
}

/* Listes */
ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  font-size: 1.05em;
}

ul li::before {
  content: "✔";
  color: #2e7d32;
  font-weight: bold;
  margin-right: 10px;
}

/* Mise en avant des "pièces à fournir" */
.documents h2 {
  color: #c62828;
  border-left: 6px solid #c62828;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.whatsapp-btn img {
  width: 24px;
  height: 24px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
}
/*.list {
  list-style: none; /* enlève les puces par défaut
  padding: 0;
  margin: 0;
}

.list li {
  background: var(--card);
  border: 1px solid #1f2937;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: var(--shadow);
} */
 .infos span {
  background: linear-gradient(to right, #ff6600, #ff9900);
  color: white;
  padding: 6px 12px;
  margin: 0 5px;
  border-radius: 20px;
  font-weight: bold;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 100%;
  max-width: 1200px; /* optionnel pour PC */
  margin: auto;
  padding: 10px;
}
.header {
  width: 100%;
  text-align: center;   /* centre horizontalement */
  padding: 20px 0;      /* espace en haut et en bas */
  background: #f5f5f5;  /* couleur de fond (optionnel) */
  position: relative;   /* garde en haut */
}

.logo {
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: #333;
}
#passengers {
  width: 203%;       /* prend toute la largeur du conteneur */
  /*max-width: 400px;   optionnel : limite la largeur */
  padding: 10px;     /* plus confortable */
  font-size: 1.1rem; /* texte plus grand */
  border-radius: 8px; /* coins arrondis */
  border: 1px solid #ccc;
}
#destinations {
 margin-bottom: 50PX;
  }
 /*body {
  background-image: url("pexels-rushdi-fatani-782816372-27608158.jpg");  chemin de ton image 
  background-size: cover;    ajuste l'image pour couvrir tout l'écran 
  background-position: center;  centre l'image 
  background-repeat: no-repeat;  évite la répétition 
}*/
#reservation {
 margin-bottom: 50PX;
  }
  /* Conteneur principal */
.offers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  perspective: 1200px; /* Nécessaire pour l'effet 3D */
}

/* Carte d'offre */
.offer {
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 20px;
  padding: 30px;
  width: 320px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  animation: appear3D 1.2s ease forwards;
  opacity: 0;
}

/* Effet 3D au survol */
.offer:hover {
  transform: rotateY(12deg) rotateX(5deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* Badge en haut */
.offer-badge {
  font-size: 2rem;
  background: linear-gradient(45deg, #ffce00, #ff9900);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 20px;
  color: #fff;
  transform: translateZ(40px);
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.4);
}

/* Animation d'apparition 3D */
@keyframes appear3D {
  from {
    transform: rotateY(-30deg) translateY(40px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: rotateY(0) translateY(0) scale(1);
    opacity: 1;
  }
}

/* Bouton */
.btn.small {
  background: linear-gradient(135deg, #0078ff, #00c6ff);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.small:hover {
  transform: translateZ(15px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 120, 255, 0.4);
}
#offres {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #e0f7ff, #b6e0ff);
  perspective: 1000px;
}

/* Arrière-plan animé */
#offres::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url('pexels-ahmar-graphy-863967639-32906507.jpg') center/cover no-repeat;
  animation: move3D 20s infinite linear;
  transform: translateZ(-300px) scale(1.5);
  opacity: 0.6;
}

@keyframes move3D {
  0% { transform: translate(0, 0) scale(1.5); }
  50% { transform: translate(50px, -50px) scale(1.6); }
  100% { transform: translate(0, 0) scale(1.5); }
}

.offers {
  position: relative;
  z-index: 5;
}
#offres h2 {
  position: relative;
  font-weight: 800;           /* plus épais */
  text-align: center;
  color: #ffffff;             /* blanc pour contraster avec le fond */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 50px;
  z-index: 3;
  animation: titleGlow 2s ease-in-out infinite alternate;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7),
               0 0 30px rgba(0, 174, 255, 0.6);
}
/* ====== FOOTER ====== */
.footer-bg {
  position: relative;
  background: url('pexels-yasirgurbuz-32290182.jpg') center/cover no-repeat;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

/* Superposition sombre */
.footer-overlay {
  background: rgba(138, 126, 126, 0.75);
  padding: 70px 20px 30px;
}

/* Conteneur principal */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Bloc texte/logo */
.footer-about h2 {
  color: #ffcc00;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.footer-about p {
  line-height: 1.6;
  font-size: 0.95em;
  color: #ddd;
}

/* Liens rapides */
.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  color: #ffcc00;
  margin-bottom: 12px;
  font-size: 1.1em;
  border-left: 3px solid #ffcc00;
  padding-left: 8px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #ddd;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffcc00;
}

/* Contact */
.footer-contact p {
  margin: 6px 0;
  color: #ddd;
}

/* Réseaux sociaux */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.2em;
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 100%;
  transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background: #ffcc00;
  color: #002244;
  transform: scale(1.1);
}

/* Bas du footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 50px;
  padding-top: 15px;
  font-size: 0.9em;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
.footer-socials {
  text-align: center;
}

.footer-socials h3 {
  color: #ffcc00;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.8em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons a:nth-child(1):hover { color: #1877f2; }  /* Facebook */
.social-icons a:nth-child(2):hover { color: #e4405f; }  /* Instagram */
.social-icons a:nth-child(3):hover { color: #25d366; }  /* WhatsApp */
/* Applique à tous les champs du formulaire */
form {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
}

/* Pour les champs input et textarea */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;               /* Le champ occupe toute la largeur disponible */
  max-width: 100%;           /* Empêche tout débordement */
  box-sizing: border-box;    /* Inclut les bordures dans la largeur */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  resize: vertical;          /* Permet d'agrandir verticalement uniquement */
}

/* Pour rendre le formulaire plus joli sur mobile */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 14px;
  }

  form {
    padding: 5px;
  }
}
.footer-bottom-section {
  width: 100%;
  background: #0d1b2a00; /* couleur sombre du footer */
  padding: 20px 0;
  text-align: center;
  
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.5px;
   justify-content: center;        /* centre horizontalement */
  align-items: center;            /* centre verticalement */
}
