header {
  background-color: #4A90E2;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.logo img {
  height: 80px;
}

.nav-container {
  display: flex;
  gap: 40px; 
  align-items: center;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  cursor: pointer;
}

.nav-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.nav-item span {
  font-size: 16px;
  white-space: nowrap;
  color: white;
}
.hero {
    background: url('cover.png') no-repeat;
    background-size: cover;
    background-position: center;
    height: 70vh;
    position: relative;
    color: white;
}
.hero h1 {
   text-align: left;
   color: #ffffff;
   margin-bottom: 16px ;

}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.subtitle {
    color: #fff;
    font-size: 1.3rem;
    text-align: left;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
  
  .search-container {
    width: 100%;
    max-width: 700px;
  }
  
  .search-box {
    display: flex;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    align-items: center;
    padding: 3px;
  }
  .search-input {
    display: flex;
    align-items: center;
    padding: 0 18px;
    flex: 2;
    border-right: 6px solid #eee;
  }
  
  .search-icon {
    font-size: 1.2em;
    margin-right: 10px;
  }
  
  .search-input input {
    border: none;
    outline: none;
    font-size: 1em;
    padding: 14px 0;
    width: 100%;
    background: transparent;
    color: #222;
  }
  .date-selector {
    display: flex;
    align-items: center;
    padding: 0 18px;
    flex: 1;
  }
  
  .calendar-icon {
    color: #aaa;
    font-size: 1.2em;
    margin-right: 8px;
  }
  
  .date-selector select {
    border: none;
    background: transparent;
    font-size: 1em;
    color: #222;
    outline: none;
    cursor: pointer;
  }
  .search-box:focus-within {
    box-shadow: 0 0 0 3px #1976d2aa;
  }
  
  @media (max-width: 700px) {
    .hero-content {
      padding: 24px 4px 0 4px;
    }
    .hero h1 {
      font-size: 1.2rem;
    }
    .search-box {
      flex-direction: column;
      border-radius: 18px;
    }
    .search-input, .date-selector {
      border-right: none;
      border-bottom: 1px solid #eee;
      width: 100%;
      padding: 0 10px;
    }
  }  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.categories-section {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    padding: 0 0 40px 0;
}

.categories-title {
    text-align: center;
    width: 100%;
    margin: 0 auto 30px auto;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: block;
    margin-top: 40px;
}
.category {
    text-decoration: none;
    color: inherit;
}

.categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
    flex-wrap: nowrap;
    overflow-x: auto;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0 40px;
}
.icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
  }
   
.activitees { background-color: #1cb0ef; }
.sejour { background-color: #fff453; }
.cinema { background-color: #e24a54; }
.arcades { background-color: #2B3467; }
.culture { background-color: #7b9189; }
.resto { background-color: #14263a; }
.category span {
    font-size: 16px;
    font-weight: 500;
}

@keyframes clickFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.category:hover {
    transform: translateY(-15px);
}

.category:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .categories {
        gap: 15px;
    }
    
    .icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .category span {
        font-size: 14px;
    }
}
  .destinations-list {
    display: flex;
    gap: 20px;
    overflow-x: auto; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch;  
    padding: 20px;
    scroll-snap-type: x mandatory;  
    max-width: 1200px;
  }

.destination-card {
    scroll-snap-align: start; 
    flex: 0 0 340px; 
    min-width: 340px; 
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
  
}

.destinations-list::-webkit-scrollbar {
    display: none;
}
  .destination-card:hover {
    border: 4px solid #1976d2;
    box-shadow: 0 6px 24px rgba(25,118,210,0.10);
  }
  
  .destination-card img {
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #e0e0e0;
    height: 220px;
  }
  
  .destination-info {
    background: #fff;
    padding: 18px 18px 12px 18px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 230px
    
  }
  .destinations-phares h2{
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .destination-city {
    color: #444;
    font-size: 1.1rem;
  }
  
  .destination-info h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 4px 0 8px 0;
  }
  
  .destination-info p {
    font-size: 16px;
    color: #444;
    margin: 10px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
  }
  .destination-rating {
    color: #1976d2;
    font-weight: bold;
    font-size: 1.1rem;
    
  }
  
  .destination-rating .votes {
    color: #888;
    font-weight: normal;
    font-size: 0.95em;
  }
  
  .destination-price {
    color: #1976d2;
    font-weight: bold;
    font-size: 1.0rem;
    margin-bottom: 7px;
  }
  
  .destination-price b {
    font-size: 1.2em;
  }
  
  .destination-price.gratuit {
    color: #111;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 7px;

  }
  
  .arrow-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #222;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.arrow-btn:hover {
    background: #1976d2;
}
  @media (max-width: 900px) {
    .destinations-list {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }
    .arrow-btn {
      position: static;
      margin: 24px auto 0 auto;
      display: block;
      transform: none;
    }
  }
  


.Séjours-list {
  display: flex;
    gap: 20px;
    overflow-x: auto; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch;  
    padding: 20px;
    scroll-snap-type: x mandatory; 
}


.Séjours {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.subtitle-sejours {
  text-align: center;
  font-size: 1,6rem;
}

.Séjours-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}
.Séjours h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}


.Séjours-card {
  flex: 0 0 300px;  
  min-width: 300px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  scroll-snap-align: start;
}


.Séjours-card img {
  width: 100%;
  height: 200px;
}


.Séjours-info {
  padding: 16px;
}

.Séjours-city {
  color: #666;
  font-size: 1rem;
  display: block;
  margin-bottom: 8px;
}

.Séjours-info h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #222;
  margin: 8px 0;
}

.Séjours-info p {
  color: #666;
  font-size: 1rem;
  line-height: 1.4;
}


.Séjours-list::-webkit-scrollbar {
  display: none;
}

.Séjours-list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 768px) {
  .Séjours-card {
      flex: 0 0 280px;
      min-width: 280px;
  }
  
  .Séjours-container {
      padding: 0 20px;
  }
}
.sleep-section {
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 1200px;
  background: #fff;
}

.sleep-title {
  text-align: center;
  margin-bottom: 32px;
}

.sleep-title h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 24px 0;
}

.sleep-liste {
  display: flex;
  flex-direction: row;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-left: 32px;
  padding-right: 32px;  
}
.sleep-liste::-webkit-scrollbar {
  display: none;
}

.sleep-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 340px;      
  max-width: 340px;
  flex: 0 0 340px;      
  margin-bottom: 16px;
}

.sleep-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.sleep-info {
  padding: 18px 18px 20px 18px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}
.sleep-city {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: block;
}

.sleep-info h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #222;
}
.sleep-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
}

.sleep-btn {
  align-self: flex-start;
  background: #3b8edb;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  margin-top: 24px;
}

.sleep-btn:hover {
  background: #2366a8;
}
.activites {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 0px;
  background: #fff;
  
}

.activites-title {
  text-align: center;
  margin-bottom: 100;
}

.activites-title h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 10 0;
  padding: 20px;
}

.activites-liste {
  display: flex;
  flex-direction: row;
  gap: 32px;
  overflow-x: auto;    
  scrollbar-width: none; 
  padding-left: 32px; 
}

.activites-carte {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 340px;
  max-width: 340px;
  flex: 0 0 340px;
  transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s cubic-bezier(.25,.8,.25,1);
  will-change: transform;
}

.activites-carte:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  z-index: 2;
}

.activites-carte img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.activites-info {
  padding: 4px 6px 4px 6px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.activites-city {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 0px;
  display: block;
  text-align: center;
  line-height: 1.1;
  margin-top: 2px;
}

.activites-info h2 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 0 0;
  color: #222;
  text-align: center;
  margin-top: 0;
  line-height: 1.15;
}

.activites-info p {
  font-size: 1rem;
  color: #444;
  margin: 4px 0 6px 0;
  text-align: center;
  line-height: 1.2; 
}


@media (max-width: 900px) {
  .activites-liste {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .category-card {
      padding: 1rem;
  }
  
  .icon-wrapper {
      font-size: 1.5rem;
  }
  
  .category-name {
      font-size: 1rem;
  }
}
.pourquoi-nous-choisir {
  padding: 40px 20px;
  background-color: #fff;
  margin: 0 auto;
  max-width: 1200px;
}

.pourquoi-nous-choisir h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.avantages-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.avantages-carte {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.avantages-image {
  margin-bottom: 15px;
}

.avantages-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.avantages-info h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  min-height: 28px;
}

.avantages-info p {
  font-size: 16px;
  color: #666;
  line-height: 1.4;
  min-height: 48px; 
}
  .avis {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    max-width: 1200px;
  }
  
  .avis h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: bold;
    text-align: center;
  }
  
  .avis-liste {
    display: flex;
    flex-direction: row;
    gap: 32px;
    overflow-x: auto;        
    scrollbar-width: none;  
    flex-wrap: nowrap;  
    padding-left: 32px; 
    padding-right: 32px;
  }
  
  .avis-carte {
    border: 2px solid #2ee6c5;
    border-radius: 10px;
    padding: 32px 24px;
    background: #fff;
    width: 320px;
    min-height: 260px;
    min-width: 340px;
    max-width: 340px;
    flex: 0 0 340px;
  }
  .avis-info p {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 5px;
    font-weight: 500;
    min-height: 70px;
    text-align: center;
    
  }
 #form-avis {
    display: none;
}
#toggle-avis:checked ~ #form-avis {
    display: block;

}

  .avis-etoils {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-align: center;
    display: block;
  }
  .avis-nom {
    font-weight: bold;
    font-size: 1.1rem;
    color: #222;
    display: block;
    margin-top: 8px;

  }
  .guillemet {
    font-size: 4rem;
    color: #2ee6c5;
    margin-bottom: 2px;
    font-family: serif;
  }
  
  @media (max-width: 768px) {
    .avis-liste {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .avis-carte {
        min-width: 100%;
        width: 100%;
    }
}
.partner-section {
  background-color: #B8E1FF;
  padding: 30px  100px;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.partner-icon {
  font-size: 3.5rem;
  background-color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.partner-icon:hover {
  transform: scale(1.1);
}

.partner-text {
  flex: 1;
  min-width: 300px;
}

.partner-text h2 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left;
}

.partner-text p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;

}

.partner-buttons {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-left: 20px;  

}

.partner-button {
  background-color: #333;
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #333;
}

.partner-button:hover {
  background-color: white;
  color: #333;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Version mobile */
@media (max-width: 768px) {
  .partner-section {
      padding: 30px 20px;
      margin: 20px;
  }

  .partner-content {
      flex-direction: column;
      text-align: center;
  }

  .partner-text h2 {
      font-size: 1.8rem;
  }

  .partner-text p {
      font-size: 1rem;
  }

  .partner-button {
      width: 100%;
      text-align: center;
  }
}
.footer {
  background-color: #4BA3E3;  
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  border-radius: 20px;
  max-width: 1200px;

}

.footer-contenue {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
}

/* Logo style */
.footer-logo img {
  width: 150px;
  height: auto;
}

/* Links columns style */
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.8;
}

/* Selectors style */
.footer-selectors {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.language-selector, .currency-selector {
  width: 100%;
}

.language-selector select, .currency-selector select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  font-size: 14px;
  cursor: pointer;
}

.language-selector select option, .currency-selector select option {
  background-color: #0364ad;
  color: white;
}

.moyens-paiments {
  margin-top: 40px;
  text-align: center;
}
.moyens-paiments h3{
  margin-bottom: 20px;
  font-size: 18px;

}
.paiments-icons img {
  height: 30px;
  width: auto;
  transition: opacity 0.3s;
}
.social-media {
  margin-top: 30px;
  text-align: center;
}

.social-media h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px; 
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 20%;
}

.social-icons a:hover {
  transform: translateY(-3px);
}
.copyright {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
}
