@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+AU+QLD:wght@100..400&family=Playwrite+HU:wght@100..400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans";
}

html, body {
  height: 100%;
}

body .index {
  display: flex;
  flex-direction: column;
  font-family: "Open Sans", sans-serif;
  background: #fff;
  color: #333;
}

.body__destinations {
  background: #ffffff;
  overflow-x: hidden;
}

.container {
  width: 1000px;
  max-width: 95%;
  height: 600px;
  margin: 50px auto;
  background: #f5f5f5;
  box-shadow: 0 30px 50px #dbdbdb;
  position: relative;
}

.offresspeciales {
  font-family: "Poppins", sans-serif;
  background: #fdfdfd;
  text-align: center;
}

/* ---------------- HEADER ---------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: relative;
}

.logo img {
  height: 70px;
  width: auto;
}

nav {
  display: flex; /* visible en desktop */
  align-items: center;
  gap: 70px;
}

nav a {
  margin: 0 30px;
  text-decoration: none;
  color: #333;
}

.btn-contact {
  padding: 8px 15px;
  background: #d4a017;
  color: rgb(99, 98, 98);
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-left: 20px;
}

.btn-contact::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ccc;
}

/* Burger icône (caché en desktop) */
.hamburger {
  font-size: 28px;
  cursor: pointer;
  display: none;
  z-index: 1100;
}

/* Overlay du menu burger */
#nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 20px;
  transition: 0.3s ease;
  z-index: 1000;
}

#nav-menu a {
  color: white;
  text-decoration: none;
  margin: 10px 0;
  font-size: 18px;
}

#nav-menu.show {
  left: 0;
}

/* bouton fermer */
.close-btn {
  align-self: flex-end;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  margin-bottom: 30px;
}

/* ---------------- HERO ---------------- */
.hero {
  display: flex;
  align-items: center;
  padding: 120px;
  gap: 120px;
  flex-wrap: wrap;
}

.hero-left img {
  width: 600px;
  border-radius: 10px;
  max-width: 100%;
  margin-right: 60px;
}

.hero-right {
  flex: 1; /* prend toute la largeur dispo */
  min-width: 400px; /* tu peux garder une largeur minimale */
}

.hero-right h1 {
  font-size: 90px;
  margin-bottom: 20px;
  font-weight: 800;
  font-family: "Playfair Display", sans-serif;
}

.hero-right h2 {
  font-size: 20px;
  color: #d4a017;
  margin-bottom: 15px;
  font-family: "Playfair Display", sans-serif;
  margin-left: 70px;
  font-size: 25px;
}

.hero-right h3 {
  font-size: 40px;
  margin-bottom: 15px;
  font-family: "Playfair Display", sans-serif;
  margin-left: 70px;
}

.hero-right p {
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 20px;
  margin-left: 70px;
}

.btn-offres {
  background-color: #fff;
  color: #d4a017;
  border: 2px solid #d4a017;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  margin-left: 70px;
}

/* ---------------- TESTIMONIALS ---------------- */
.testimonials {
  padding: 60px;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 90px;
  font-family: "Playfair Display";
  font-size: 30px;
}

.testimonial-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.testimonial {
  max-width: 300px;
  text-align: center;
}

.testimonial img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial p {
  font-size: 14px;
  margin-bottom: 10px;
}

.stars {
  color: gold;
  font-size: 18px;
}

/* =======================================================
          🌟 Image et bannière 🌟
======================================================= */
.images__destinations {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.images__destinations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/nourriture.webp") center/cover no-repeat;
  opacity: 0.6; /* opacité uniquement sur l'image */
  z-index: 0;
  background-color: rgba(245, 245, 245, 0.6); /* couleur de fond avec opacité */
}

.images__destinations h1 {
  position: relative;
  z-index: 1; /* reste au-dessus de l’image */
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 4rem;
  color: #383D59;
  text-align: center;
  font-weight: normal;
}

/* =======================================================
          🌟 Voyages selon vos envies 🌟
======================================================= */
.carousel-container__destinations {
  position: relative;
  overflow: hidden;
}

.carousel-section__destinations {
  padding: 40px 10%;
}

.carousel-section__destinations h2 {
  position: relative;
  display: inline-block;
  color: #383D59;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-left: 20px;
  font-weight: normal;
}

.carousel-section__destinations h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 100%;
  background-color: #d2a517;
  border-radius: 2px;
}

/* Carousel */
.carousel__destinations {
  display: flex;
  gap: 15px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.carousel-item__destinations {
  min-width: 200px;
  height: 150px;
  border-radius: 10px;
  position: relative;
  color: white;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  font-weight: bold;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* Flèches */
.slider-arrow1__destinations {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #eaeeff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow1__destinations.left__destinations {
  left: 10px;
}

.slider-arrow1__destinations.right__destinations {
  right: 10px;
}

/* =======================================================
          🌟 Nos voyages incontournables 🌟
======================================================= */
.slider-container__destinations {
  position: relative;
  width: 100%;
  padding: 20px;
  background: #eaeeff;
  border-radius: 20px;
  box-sizing: border-box;
}

.incontournables-section__destinations {
  padding: 40px 10%;
}

.incontournables-section__destinations h2 {
  position: relative;
  display: inline-block;
  color: #383D59;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-left: 20px;
  font-weight: normal;
}

.incontournables-section__destinations h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 100%;
  background-color: #d2a517;
  border-radius: 2px;
}

.cards__destinations {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
}

.cards__destinations::-webkit-scrollbar {
  display: none;
}

.card__destinations {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 320px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card__destinations:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card__destinations img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.card-content__destinations {
  padding: 15px;
}

.card-content__destinations h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #383d59;
}

.card-content__destinations p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #383d59;
  font-family: open sans, sans-serif;
}

/* Flèches */
.slider-arrow__destinations {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #d2a517;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow__destinations.left__destinations {
  left: 15px;
}

.slider-arrow__destinations.right__destinations {
  right: 10px;
}

/* =======================================================
          🌟 Carte interactive 🌟
======================================================= */
.carte__destinations {
  padding: 40px 10%; /* même que .incontournables-section__destinations */
}

.carte__titre__destinations {
  position: relative;
  display: inline-block;
  color: #383D59;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding-left: 20px; /* rectangle à gauche */
  font-weight: normal;
}

.carte__titre__destinations::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 100%;
  background-color: #d2a517;
  border-radius: 2px;
}

.carte__svg__destinations {
  width: 80%;
  max-width: 800px;
  height: auto;
  border-radius: 25px;
  display: block;
  margin: 0 auto;
}

/* Couleurs par défaut et hover */
.carte__destinations path {
  fill: #b8b8b8;
  stroke: #cdcdcd;
  stroke-width: 0.5;
  cursor: pointer;
}

.carte__destinations path.active {
  fill: #383d59;
}

.carte__destinations path:hover {
  opacity: 0.8;
}

/* Pays proposés */
.carte__destinations path[data-name=France],
.carte__destinations path[data-name=Italy],
.carte__destinations path[data-name=Morocco],
.carte__destinations path[data-name="South Africa"],
.carte__destinations path[data-name="United States of America"],
.carte__destinations path[data-name=Peru],
.carte__destinations path[data-name=Japan],
.carte__destinations path[data-name=Australia],
.carte__destinations path[data-name="New Zealand"],
.carte__destinations path[data-name=Thailand] {
  fill: #d2a517;
}

/* =======================================================
          🌟 Description Section 🌟
======================================================= */
.destination-section {
  padding: 50px 10%;
  background: #fff;
}

.destination-section h2,
.destination-content h2 {
  position: relative;
  display: inline-block;
  color: #383d59;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-left: 20px;
  font-weight: normal;
}

.destination-section h2::before,
.destination-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 100%;
  background-color: #d2a517;
  border-radius: 2px;
}

.destination-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 40px auto;
}

.destination-image img {
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid #d2a517;
}

.destination-content {
  flex: 1;
}

.destination-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #d2a517;
}

.destination-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.destination-content li {
  margin-bottom: 10px;
}

.destination-highlight {
  margin-top: 15px;
  padding: 12px 18px;
  background: #f9f9f9;
  border-left: 4px solid orange;
  border-radius: 6px;
  font-size: 14px;
}

/* =======================================================
          🌟 Modal 🌟
======================================================= */
.modal__destinations {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content__destinations {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  color: #383d59;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close__destinations {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #383d59;
}

.close__destinations:hover {
  color: #000;
}

.main-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.subtitle {
  margin: 40px 0 20px;
  font-size: 2rem;
  color: #444;
}

.offers {
  display: grid;
  grid-template-columns: 1fr 1fr; /* deux colonnes */
  gap: 35px;
  max-width: 1000px;
  margin: 0px auto;
  padding: 3%;
  row-gap: 50px;
}

.card__offers {
  background: linear-gradient(135deg, #ffedcb, #fff);
  border-radius: 20px;
  box-shadow: 20px 20px 20px 2px #ffedcb;
  padding: 20px;
  transition: transform 0.3s ease;
}

.card__offers:hover {
  transform: scale(1.02);
}

.card__offers:nth-child(3),
.card__offers:nth-child(6) {
  grid-column: 1/-1;
  justify-self: center;
  max-width: 600px;
}

.card__offers:nth-child(3) img,
.card__offers:nth-child(6) img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

.card__offers:nth-child(4) {
  grid-column: 1;
}

.card__offers img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.card__offers h3 {
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
}

.card__offers ul {
  text-align: left;
  padding: 0 20px 20px;
  list-style: none;
}

.card__offers li {
  margin: 8px 0;
  font-size: 1rem;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

/* ---------------- FOOTER ---------------- */
footer {
  background: linear-gradient(to right, #f1c40f, #d35400);
  color: white;
  padding: 30px 60px;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.footer-search {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-search input {
  padding: 6px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
}

.footer-search button {
  background: white;
  border: none;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}

.footer-socials a {
  margin: 0 8px;
  font-size: 20px;
  color: white;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
}

/* ---------------- CONTACT ---------------- */
.contact {
  min-height: 100vh;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #f1c40f, #f39c12, #d35400);
  background-size: cover;
  color: #333;
}
.contact h1 {
  font-size: 48px;
  font-family: "Playfair Display", serif;
  font-weight: 800;
  margin-bottom: 10px;
}
.contact h1 span {
  color: #d4a017;
}
.contact p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #444;
}
.contact .card-contact {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  text-align: left;
}
.contact .card-contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact .card-contact form label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
}
.contact .card-contact form input,
.contact .card-contact form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}
.contact .card-contact form textarea {
  resize: none;
}
.contact .card-contact form button {
  margin-top: 10px;
  padding: 12px;
  background: #000;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.contact .card-contact form button:hover {
  background: #333;
}

/*================================================================================
  PAGES ATELIERS CUISINE {ACCEUIL} 
==================================================================================*/
.playfair-display-stylesheet {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* =======================================================================================
   TITRE ATELIERS CUISINE
=========================================================================================*/
section h1 {
  margin-top: 45px;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.span_atelier {
  border-radius: 100px;
  background-color: #FFC529;
  padding: 11px;
  font-size: 0.9em;
}

.annonce {
  margin-top: 15px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  font-family: Helvetica, sans-serif;
}

/* ================================================================================================
 CARTES DES CHEFS    CARTES DES CHEFS   CARTES DES CHEFS    CARTES DES CHEFS    CARTES DES CHEFS
====================================================================================================*/
.container4 {
  width: 100vw;
  height: 110vh;
  display: grid;
  place-items: center;
  background-color: #fffbef;
  margin: 20px 0;
  font-size: large;
}

.review_list {
  display: flex;
  list-style: none;
  gap: 150px;
}

.review_item:hover {
  transition: 1s;
  transform: scale(1.2);
}

.review_item {
  width: 300px;
  margin: 0% 1rem;
  padding: 1rem;
  border-radius: 12px;
  background: white;
  box-shadow: inset 2px 2px 1px white, 4px 4px 4px rgba(0, 0, 0, 0.267);
}

.review_img {
  height: 44px;
  width: 44px;
  float: left;
  border-radius: 6px;
  margin-right: 1rem;
  margin-bottom: 0.4rem;
  box-shadow: inset 4px 4px 4px rgba(255, 37, 37, 0.89);
  overflow: hidden;
}

.review_img img {
  width: 115%;
  margin: auto;
  border-radius: 10px;
}

.review_item h2 {
  line-height: 100%;
  margin-top: 4px;
  color: black;
  font-size: 16px;
}

.review_item span > p {
  font-size: 12px;
  margin-right: 4px;
}

.review_item span {
  position: relative;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

/* à rajouter */
.review_item span .star {
  align-self: flex-end;
  font-style: normal;
  height: 16px;
  width: 16px;
  clip-path: polygon(40% 40%, 50% 10%, 60% 40%, 90% 40%, 65% 60%, 70% 90%, 50% 70%, 25% 90%, 35% 60%, 10% 40%);
  background-color: rgb(54, 54, 54);
}

.review_item span .star::before {
  content: "";
  height: 100%;
  width: 92%;
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: #FFC529;
}

.review_item span.span3 .star::before {
  width: 90%;
}

.review_item p {
  color: rgb(99, 99, 99);
  padding-top: 10px;
  font-size: 12px;
}

/*=================================================================================================
Ceci sont les boutons de selections et le menu déroulant des 3 boutons respectifs
===================================================================================================*/
.options {
  display: flex;
  margin-bottom: 30px;
  padding-right: 100px;
  gap: 150px;
  margin-top: 100px;
}

.options label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.options select {
  padding: 10px;
  width: 200px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* ===========================================================================================================
    CARTES DES DIFFERENTES ACTIVITES   CARTES DES DIFFERENTES ACTIVITES   CARTES DES DIFFERENTES ACTIVITES
   ===========================================================================================================*/
.slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1em;
  display: flex;
  justify-content: center;
}

.product-slider {
  display: flex;
  gap: 4em;
}

.product-card {
  scroll-snap-align: start;
  flex: 0 0 auto; /* empêche la carte de s'étirer */
  width: 200px; /* ajuste selon ton design */
  background-color: rgb(252, 253, 254);
  padding: 1em;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 100px;
}

.product-card img {
  max-width: 100%;
  border-radius: 4px;
  margin-bottom: 8px;
}

.product-card h4 {
  font-size: 1.3em;
  margin: 0.5em 0;
}

.product-card div {
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.chef-icon {
  width: 32px;
  height: 32px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.chef-icon:hover {
  transform: scale(1.1);
}

.product-card:hover {
  background-color: #808083;
  color: white;
  transform: scale(1.1);
}

.slider-container::-webkit-scrollbar {
  display: none;
}

/* ======================================================================================================================
    SQUELETTTE POUR LA PAGE PRODUITS PRESENTANT LES DIFFERENTES ACTIVITES 
  =========================================================================================================================*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container_product {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  gap: 40px;
  background-color: #fff8e7;
}

/* =================================================
  SECTION GAUCHE DE LA PAGE
===================================================*/
.left-section img {
  width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.5s ease;
}

.left-section img:hover {
  transform: scale(1.1);
}

.info-box {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.info-box p {
  margin-bottom: 1px;
  line-height: 40px;
  text-align: justify;
}

.info-text {
  flex: 1;
}

.chef-img {
  max-width: 41px;
  top: 15px;
  margin-left: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.flag {
  font-size: 1.2em;
}

/* ==================================================
    SECTION DROITE DE LA PAGE 
=====================================================*/
.right-section {
  max-width: 600px;
  padding: 25px;
  border-radius: 12px;
}

.right-section h2 {
  background-color: #FFC529;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.right-section p {
  margin-bottom: 10px;
  line-height: 2.5;
}

.right-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.right-section ul li {
  margin-bottom: 8px;
  list-style: disc;
}

.highlight {
  font-weight: bold;
  color: #000000;
}

.note {
  font-style: italic;
  margin-top: 10px;
}

/* ===================================================
 LOCALISATION / ENREGISTREMENT / NOTIFICATIONS
========================================================*/
.event-details {
  background-color: #FFC529;
  border: 1px solid #e2c97b;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
}

.event-btn-group {
  display: flex;
  align-items: center;
}

.event-btn {
  background-color: #FFC529;
  color: rgb(4, 4, 4);
  border: none;
  padding: 10px 16px;
  font-size: 0.9em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 0;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
}

.event-btn:hover {
  background-color: #383D59;
}


/* ICI C'EST PAGE GALERIE  */
/* ----- INTRO ----- */
.intro-text {
  text-align: center;
  margin: 20px;
  font-size: 24px;
  font-weight: bold;
}

.mosais-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 20px;
  box-sizing: border-box;
 
}
.mosaic {
  text-align: center;
  grid-template-columns: repeat(auto-fill, minmax(200px));
  grid-auto-rows: 200px;
  gap: 5px;
  justify-content: center;
  width: 100%;
  
}

.mosaic img {
  margin: 2px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  max-width: 269px;
  height: 250px;
  object-fit: cover;
  border-radius: 2%;
  transition: transform 0.3s;
}

.mosaic img.vertical {
  grid-row: span 2;
  max-width: 10;
  height: 300px;
  object-fit: cover;
  border-radius: 20px ;
  width: 300px;



}
.mosaic img.horizontal {
  max-width: 50%;
  height: 485px;
  grid-row:  span 2;
  object-fit:cover;
}

img.photo{
  width: 200px;
  height: auto;
  margin: 10px;
  object-fit: cover;
  border-radius: 8px;
 

}
img.photo.portrait {
  width: 200px;
  height: auto;
  margin: 10px;
  object-fit: cover;
  border-radius: 8px;

}

/* ---------------- RESPONSIVE ---------------- */
/* Tablette */
@media (max-width: 1024px) {
  header {
    padding: 15px 30px;
    flex-wrap: wrap;
  }
  .card__offers .offers {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px; /* encore plus serré */
  }
  .card__offers {
    width: 100%;
    margin: 0 auto;
  }
  .card__offers h3 {
    font-size: 16px;
  }
  .card__offers li,
  .card__offers p,
  .old-price {
    font-size: 0.9rem;
  }
  /* Images / bannière */
  .images__destinations {
    height: 250px;
  }
  .images__destinations h1 {
    font-size: 2.5rem;
    padding: 12px 20px;
  }
  /* Carousel / Cartes */
  .carousel-section__destinations,
  .incontournables-section__destinations {
    padding: 30px 5%;
  }
  .carousel__destinations,
  .cards__destinations {
    gap: 12px;
    overflow-x: auto;
  }
  .carousel-item__destinations,
  .card__destinations {
    min-width: 280px;
    max-width: 280px;
  }
  /* Carte interactive */
  .carte__destinations {
    padding: 30px 5%;
  }
  .carte__titre__destinations {
    font-size: 1.5rem;
    padding-left: 20px;
  }
  .carte__svg__destinations {
    width: 90%;
    max-width: 700px;
  }
  /* Description section */
  .destination-container {
    flex-direction: row;
    gap: 20px;
  }
  .destination-image img {
    width: 250px;
  }
  .destination-content h2,
  .carousel-section__destinations h2,
  .incontournables-section__destinations h2,
  .destination-section h2 {
    font-size: 1.5rem; /* uniformisation des titres */
  }
  .destination-content h3 {
    font-size: 16px;
  }
  .destination-content li {
    font-size: 14px;
  }
  .destination-highlight {
    font-size: 13px;
  }
  nav {
    display: none; /* caché par défaut */
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 80px; /* sous le header */
    left: 0;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }
  .hamburger {
    display: block; /* le burger apparaît */
  }
  .btn-contact {
    margin-top: 10px;
    font-size: 14px;
    display: none;
  }
  nav a {
    margin: 5 15px;
  }
  .hero {
    padding: 60px 30px;
    gap: 40px;
  }
  .hero-right h1 {
    font-size: 38px;
    margin-bottom: 10px;
  }
  .hero-right h2 {
    font-size: 18px;
  }
  .footer-nav {
    padding: 30px 30px;
  }
  .footer-search input {
    width: 160px;
  }
  .hero {
    flex-direction: column-reverse;
    padding: 30px 15px;
    gap: 20px;
  }
  .hero-right {
    max-width: 100%;
    text-align: center;
  }
  .hero-right h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 15px;
  }
  .hero-right h2 {
    font-size: 18px;
    margin: 0 0 10px;
  }
  .hero-right h3 {
    font-size: 22px;
    margin: 0 0 10px;
  }
  .hero-right p {
    font-size: 14px;
    line-height: 1.4;
    margin: 10px 0 20px;
    padding: 0 10px;
  }
  .btn-offres {
    font-size: 14px;
    padding: 8px 16px;
    margin: 0 auto; /* bouton centré */
    display: inline-block;
  }
  .hero-left img {
    width: 100%;
    max-width: 350px; /* limite l’image pour éviter débordement */
    margin: 0 auto;
    display: block;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 30px;
  }
  .testimonial img {
    width: 100px;
    height: 100px;
  }
  .testimonials h2 {
    font-size: 20px;
  }
}
/* Mobile */
@media (max-width: 600px) {
  nav {
    display: none; /* cache la nav desktop */
  }
  .hamburger {
    display: block; /* le burger apparaît */
  }
  .btn-contact {
    margin-top: 10px;
    font-size: 14px;
    display: none;
  }
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px;
  }
  .hero {
    flex-direction: column-reverse;
    padding: 30px 15px;
    gap: 20px;
  }
  .hero-right {
    max-width: 100%;
    text-align: center;
  }
  .hero-right h1 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 15px;
  }
  .hero-right h2 {
    font-size: 18px;
    margin: 0 0 10px;
  }
  .hero-right h3 {
    font-size: 22px;
    margin: 0 0 10px;
  }
  .hero-right p {
    font-size: 14px;
    line-height: 1.4;
    margin: 10px 0 20px;
    padding: 0 10px;
  }
  .btn-offres {
    font-size: 14px;
    padding: 8px 16px;
    margin: 0 auto; /* bouton centré */
    display: inline-block;
  }
  .hero-left img {
    width: 100%;
    max-width: 350px; /* limite l’image pour éviter débordement */
    margin: 0 auto;
    display: block;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 30px;
  }
  .testimonial img {
    width: 100px;
    height: 100px;
  }
  .testimonials h2 {
    font-size: 20px;
  }
  .contact h1 {
    font-size: 28px;
  }
  .contact p {
    font-size: 14px;
  }
  .card-contact {
    padding: 20px;
  }
  /* Images / bannière */
  .images__destinations {
    height: 200px;
    padding: 0 10px;
  }
  .images__destinations h1 {
    font-size: 1.7rem;
    padding: 10px 15px;
    line-height: 1.3;
  }
  /* Carousel / Cartes */
  .carousel-section__destinations,
  .incontournables-section__destinations {
    padding: 20px 10px;
  }
  .carousel__destinations,
  .cards__destinations {
    gap: 10px;
    overflow-x: auto;
  }
  .carousel-item__destinations,
  .card__destinations {
    min-width: 220px;
    max-width: 220px;
  }
  .card__destinations img {
    height: 180px;
  }
  /* Carte interactive */
  .carte__destinations {
    padding: 20px 10px;
  }
  .carte__titre__destinations {
    font-size: 1.3rem;
    padding-left: 15px;
  }
  .carte__svg__destinations {
    width: 100%;
    max-width: 100%;
  }
  /* Description section - texte sous l'image */
  .destination-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 10px;
  }
  .destination-image img {
    width: 100%;
    max-width: 180px;
    margin: 0 auto 15px;
  }
  .destination-content {
    width: 100%;
    max-width: 100%;
    text-align: left;
    padding: 0 8px;
  }
  .destination-content h2,
  .carousel-section__destinations h2,
  .incontournables-section__destinations h2,
  .destination-section h2 {
    font-size: 1.3rem; /* uniformisation des titres sur mobile */
    line-height: 1.3;
  }
  .destination-content h3 {
    font-size: 0.85rem;
    margin-top: 8px;
    margin-bottom: 6px;
  }
  .destination-content p,
  .destination-content li {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .destination-content ul {
    margin-left: 12px;
  }
  .destination-highlight {
    font-size: 0.75rem;
    padding: 5px 8px;
    margin-top: 6px;
  }
  .card__offers {
    max-width: 100%;
    padding: 6px;
  }
  .card__offers img {
    border-radius: 10px;
  }
  .card__offers h3 {
    font-size: 10px;
  }
  .card__offers li,
  .card__offers p,
  .old-price {
    font-size: 0.5rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
  .main-title {
    font-size: 1.8rem;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 16px;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-search input {
    width: 160px;
  }
  .footer-socials a {
    font-size: 18px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
/* ---------------- RESPONSIVE CONTACT ---------------- */
@media (max-width: 600px) {
  .contact h1 {
    font-size: 28px;
  }
  .contact p {
    font-size: 14px;
  }
  .card-contact {
    padding: 20px;
  }
}
/* ========================================================================
   Responsive Ateliers Cuisine : Tablettes (entre 768px et 1024px)
========================================================================= */
@media screen and (max-width: 1024px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 30px;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 100px;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 15px 0;
  }
  nav.active {
    display: flex;
  }
  nav a {
    margin: 10px 20px;
    font-size: 16px;
  }
  .hamburger {
    display: block;
    align-self: flex-end;
  }
  .btn-contact {
    display: none;
  }
  .footer-nav {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .review_list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .options {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
    margin-top: 50px;
  }
  .container4 {
    height: auto;
    padding: 20px;
  }
  .container_product {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }
  .left-section img {
    width: 100%;
    max-width: 450px;
  }
  .chef-img {
    margin-left: 0;
    margin-top: 10px;
  }
  .right-section {
    width: 100%;
    padding: 20px;
  }
  .product-slider {
    gap: 2em;
  }
  .product-card {
    width: 180px;
  }
}
/* ==========================================================================
   Responsive : Mobiles (max-width: 768px)
========================================================================== */
@media screen and (max-width: 768px) {
  header {
    padding: 15px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .logo img {
    height: 60px;
  }
  nav {
    display: none;
    position: absolute;
    top: 90px;
    width: 100%;
    flex-direction: column;
    background-color: #fff;
    padding: 15px;
    z-index: 10;
  }
  nav.active {
    display: flex;
  }
  nav a {
    margin: 10px 0;
    font-size: 16px;
  }
  .hamburger {
    display: block;
    align-self: flex-end;
  }
  .btn-contact {
    display: none;
  }
  section h1 {
    font-size: 24px;
    margin: 20px;
  }
  .review_list {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .review_item {
    width: 90%;
  }
  .options {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
    margin-top: 40px;
  }
  .slider-container {
    padding: 10px;
  }
  .product-card {
    width: 140px;
    font-size: 0.85em;
  }
  .product-slider {
    gap: 1em;
  }
  .container_product {
    flex-direction: column;
    padding: 15px;
  }
  .left-section img {
    width: 100%;
  }
  .right-section {
    padding: 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
  .footer-search {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .footer-search input {
    width: 100%;
  }
  .footer-bottom {
    font-size: 12px;
  }
  .event-details {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 10px;
  }
  .event-btn {
    font-size: 0.8em;
    padding: 8px 10px;
  }
}
/* ==========================================================================
   Responsive : Petits Mobiles (max-width: 480px)
========================================================================== */
@media screen and (max-width: 480px) {
  header {
    padding: 10px 15px;
  }
  .logo img {
    height: 50px;
  }
  nav a {
    font-size: 14px;
  }
  .product-card {
    width: 120px;
    font-size: 0.75em;
  }
  .right-section h2 {
    font-size: 1em;
  }
  .right-section p,
  .right-section ul {
    font-size: 0.9em;
  }
  .footer-search input {
    width: 100%;
    font-size: 0.8em;
    padding: 6px;
  }
  .footer-search button {
    padding: 5px;
  }
  .footer-bottom {
    font-size: 11px;
  }
  .event-btn {
    padding: 6px;
    font-size: 0.75em;
  }
  .info-box p {
    font-size: 0.9em;
    line-height: 28px;
  }
}/*# sourceMappingURL=style.css.map */