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

body {
  font-family: "Poppins", sans-serif;
  background: #f8f8f8;
  color: #111;
  min-height: 100vh;
  padding: 24px 70px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.logo img {
  height: 150px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 42px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Bouton principal */
.nav-btn {
  text-decoration: none;
  background: #1abc9c;
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.25);
}

.nav-btn:hover {
  background: #1abc9c;
  transform: translateY(-2px);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  background: white;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 1000;
}

/* Liens du menu */
.dropdown-menu a {
  text-decoration: none;
  color: #16363d;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.2s;
}

.dropdown-menu a:hover {
  background: #f2f9ff;
  color: #1abc9c;
}

/* Affichage au survol */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 20px;
  border: 2px solid;
  transition: 0.3s;
  background: #fff;
}

.nav-links a:nth-child(1) {
  border-color: #2bf1a5;
  color: #2bf1a5;
}

.nav-links a:nth-child(2) {
  border-color: #3498db;
  color: #3498db;
}

.nav-links a:nth-child(3) {
  border-color: #9b59b6;
  color: #9b59b6;
}

.nav-links a:nth-child(4) {
  border-color: #f39c12;
  color: #f39c12;
}

.nav-links a:nth-child(5) {
  border-color: #e74c3c;
  color: #e74c3c;
}

.nav-links a:nth-child(6) {
  border-color: #1abc9c;
  color: #1abc9c;
}

.nav-links a:nth-child(1):hover {
  background: #2bf1a5;
  color: white;
}

.nav-links a:nth-child(2):hover {
  background: #3498db;
  color: white;
}

.nav-links a:nth-child(3):hover {
  background: #9b59b6;
  color: white;
}

.nav-links a:nth-child(4):hover {
  background: #f39c12;
  color: white;
}

.nav-links a:nth-child(5):hover {
  background: #e74c3c;
  color: white;
}

.nav-links a:nth-child(6):hover {
  background: #1abc9c;
  color: white;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  max-width: 1250px;
  margin: -200px  auto 0;
  min-height: calc(100vh - 140px);
}

/* LEFT IMAGES */
.hero-images {
  position: relative;
  width: 540px;
  height: 470px;
}

.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 6px solid #1abc9c; 
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Grande image */
.image-large {
  width: 320px;
  height: 430px;
  left: 0;
  top: 10px;
}

/* Petite image superposée */
.image-small {
  width: 320px;
  height: 260px;
  left: 210px;
  top: 140px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* RIGHT CONTENT */
.hero-content {
  max-width: 950px;
}

.subtitle {
  color: #1abc9c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
  margin-bottom: 24px;
}

.plane {
  font-size: 40px;
}

.description {
  color: #9a9a9a;
  font-size: 17px;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 34px;
}

/* ACTIONS */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.book-btn {
  text-decoration: none;
  background: #1abc9c;
  color: #111;
  padding: 16px 30px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(241, 204, 43, 0.35);
  transition: 0.3s;
}

.book-btn:hover {
  transform: translateY(-2px);
}

.story {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #111;
}

.story-avatars {
  display: flex;
  align-items: center;
}

.story-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
  background: #ddd;
}

.story-avatars img:first-child {
  margin-left: 0;
}

.play-btn {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e53935;
  font-size: 13px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    gap: 40px;
    padding-top: 20px;
  }

  .hero-images {
    width: 100%;
    max-width: 540px;
    height: 470px;
  }

  .hero-content {
    text-align: center;
  }

  .description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px 24px;
  }

  .navbar {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .subtitle {
    font-size: 16px;
  }

  .description {
    font-size: 15px;
  }

  .hero-images {
    max-width: 360px;
    height: 360px;
  }

  .image-large {
    width: 220px;
    height: 300px;
  }

  .image-small {
    width: 210px;
    height: 170px;
    left: 140px;
    top: 150px;
  }
}
/* CAROUSEL */
.carousel {
  width: 100%;
  overflow: hidden;
  margin-top: -200px;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.carousel-item {
  min-width: 350px; /* ← largeur augmentée */
  height: 230px;    /* ← hauteur augmentée */
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #2bf1a5; /* ton bleu */
  box-shadow: 0 10px 25px rgba(43, 241, 165, 0.3);
  flex-shrink: 0;
}

.carousel-item:nth-child(1) {
  border-color: #2bf1a5;
  box-shadow: 0 10px 25px rgba(43, 241, 165, 0.4);
}

.carousel-item:nth-child(2) {
  border-color: #3498db;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.carousel-item:nth-child(3) {
  border-color: #9b59b6;
  box-shadow: 0 10px 25px rgba(155, 89, 182, 0.4);
}

.carousel-item:nth-child(4) {
  border-color: #f39c12;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.carousel-item:nth-child(5) {
  border-color: #e74c3c;
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.carousel-item:nth-child(6) {
  border-color: #1abc9c;
  box-shadow: 0 10px 25px rgba(26, 188, 156, 0.4);
}

.carousel-item:nth-child(7) {
  border-color: #f39c12;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.carousel-item:nth-child(8) {
  border-color: #3498db;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.carousel-item:nth-child(9) {
  border-color: #9b59b6;
  box-shadow: 0 10px 25px rgba(155, 89, 182, 0.4);
}

.carousel-item:nth-child(10) {
  border-color: #f39c12;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.carousel-item:nth-child(11) {
  border-color: #e74c3c;
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.carousel-item:nth-child(12) {
  border-color: #1abc9c;
  box-shadow: 0 10px 25px rgba(43, 241, 165, 0.4);

}
.carousel-item:nth-child(13) {
  border-color: #3498db;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.carousel-item:nth-child(14) {
  border-color: #9b59b6;
  box-shadow: 0 10px 25px rgba(155, 89, 182, 0.4);
}

.carousel-item:nth-child(15) {
  border-color: #f39c12;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.4);
}

.carousel-item:nth-child(16) {
  border-color: #e74c3c;
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.carousel-item:nth-child(17) {
  border-color: #1abc9c;
  box-shadow: 0 10px 25px rgba(43, 241, 165, 0.4);
}

.carousel-item:nth-child(18) {
  border-color: #3498db;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* FOOTER */
.footer {
  margin-top: 10px;
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
  border-top: 2px solid #eee;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Réseaux */
.socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.social {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 20px;
  border: 2px solid;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

/* Couleurs réseaux */
.instagram {
  border-color: #e1306c;
  color: #e1306c;
}

.facebook {
  border-color: #1877f2;
  color: #1877f2;
}

.tiktok {
  border-color: #000;
  color: #000;
}

/* Hover */
.social:hover {
  color: white;
}

.instagram:hover {
  background: #e1306c;
}

.facebook:hover {
  background: #1877f2;
}

.tiktok:hover {
  background: #000;
}

/* Contact */
.footer-contact {
  font-size: 14px;
  color: #777;
}

.footer-contact a {
  color: #2bf1a5;
  text-decoration: none;
  font-weight: 500;
}

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