html, body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9fafe;
    color: #191717;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #f5f5f5;
    padding: 5px 0;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    overflow-x: auto;
}

.top-bar-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.top-bar-content a {
    color: #191717;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-content a:hover {
    color: #0085ff;
}

/* === HEADER GLOBAL === */
header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* << shadow ajouté */
}


/* === STRUCTURE DU HEADER === */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
  height: auto;
}

/* === LOGO === */
.logo {
  margin: 0;
  padding: 0;
  line-height: 0;
  z-index: 1001;
}

.logo a {
  display: inline-block;
}

.logo img {
  display: block;
  height: 85px;
  mix-blend-mode: lighten;
}

/* === NAVIGATION === */
nav {
  margin: 0;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #000;
  font-size: 16px;
  text-decoration: none;
  padding: 10px;
}

nav ul li a:hover,
nav ul li a.active {
  color: #0085ff;
}

/* === BOUTON BON CADEAU === */
.btn-gift {
  background-color: #0085ff;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 133, 255, 0.3);
}



.btn-gift:hover {
  background-color: #006fd1;
  box-shadow: 0 5px 15px rgba(0, 133, 255, 0.45);
  transform: translateY(-2px);
}

/* === DROPDOWN === */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 10;
}

.dropdown.open .dropdown-content {
  display: block;
}

.dropdown-content li a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  color: #191717;
  transition: background 0.3s ease;
}

.dropdown-content li a:hover {
  background-color: #0085ff;
  color: #fff;
}

/* === HAMBURGER MENU (mobile) === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #000;
  transition: 0.4s;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        display: none; /* caché par défaut */
        align-items: center;
        padding: 20px 0;
        gap: 0; /* supprimer le gap pour mobile */
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 12px 0; 
        width: 100%;
        text-align: center;
    }

    .dropdown {
        position: relative;
        width: 100%;
        text-align: center;
    }

    /* Dropdown menu mobile */
    .dropdown-menu, 
    .dropdown-content {
        position: static;
        background-color: #FFF;
        width: 100%;
        display: none;
        padding: 10px 0;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown.open .dropdown-content {
        display: block;
    }

    .dropdown-content li a {
        color: #000;
    }

    .dropdown-content li a:hover {
        background-color: #0085ff;
        color: #fff;
    }
}




.carousel-overlay-left {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 400px;
  text-align: left;
  z-index: 10;
  user-select: none;
}

.carousel-overlay-left h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 25px;
  line-height: 1.1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

/* Bouton */
.btn-clean {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background-color: #0085ff;
  border: none;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.35s ease, transform 0.3s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 14px rgba(0, 133, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-clean:hover {
  background-color: #006bbd;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 107, 189, 0.4);
}

.btn-clean:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(0, 107, 189, 0.3) inset;
}

@media screen and (max-width: 1024px) {
  .carousel-overlay-left {
    top: 80%;
    width: 90%;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .carousel-overlay-left h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .btn-clean,
  .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .carousel-overlay-left {
    max-width: 90%;
  }

  .carousel-overlay-left h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
  }

  .btn-clean,
  .btn-primary {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .carousel-overlay-left h1 {
    font-size: 1.6rem;
    margin-bottom: 14px;
  }

  .btn-clean,
  .btn-primary {
    padding: 9px 20px;
    font-size: 0.9rem;
  }
}



/* === CAROUSEL === */
.carousel {
  position: relative;
  height: calc(100vh - 110px); /* hauteur = viewport - header minimal */
  width: 100%;
  overflow: hidden;
}

.carousel-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%; /* centré horizontalement, 20% depuis le haut */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}


.carousel-image.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.presentation-section {
  padding: 80px 40px;
  background-color: #f9fafe;
  font-family: 'Inter', sans-serif;
}

.presentation-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.presentation-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.presentation-title {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 24px;
  font-weight: 600;
  position: relative;
}

.presentation-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0085ff;
  margin-top: 10px;
  border-radius: 2px;
}

.presentation-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 32px;
  max-width: 60ch; /* limite à environ 60 caractères par ligne */
  text-align: justify;
}


.presentation-description strong {
  color: #111827;
}

.cta-button {
  display: inline-block;
  background-color: #0085ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #006fd3;
  transform: translateY(-2px);
}

.presentation-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}

.presentation-image img {
  width: 100%;
  height: auto;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.presentation-image img {
  border: none;
}


/* Responsive */
@media (max-width: 768px) {
  .presentation-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .presentation-title::after {
    margin: 10px auto 0;
  }

  .cta-button {
    margin: 0 auto;
  }
}

.popular-tours {
  position: relative;
  background-color: #f9fafe;
  color: #111827;
  padding: 80px 40px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  overflow: visible; /* très important pour ne pas couper l'image */
}

.popular-tours h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #111827;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.popular-tours h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #0085ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.tours-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  box-sizing: border-box;
}

/* === CARD UI/UX FINAL Optimized === */
.tour-card {
  position: relative;
  width: 260px;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #0085ff;
  background-color: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
    text-decoration: none;
  color: inherit;
}

.tour-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 133, 255, 0.25);
}

.tour-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.4s ease;
  will-change: transform;
}

.tour-card:hover img {
  transform: scale(1.08);
}

/* Overlay sombre pour lisibilité du texte */
.tour-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease;
}

.tour-card:hover::before {
  background: rgba(0, 0, 0, 0.45);
}

/* Texte */
.tour-info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-sizing: border-box;
}

.tour-info h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.tour-info p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  max-width: 220px;
  color: #ddd;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

/* === Responsive === */

/* Mobiles et tablettes */
@media (max-width: 768px) {
  .popular-tours {
    padding: 60px 20px;
  }

  .tour-card {
    width: 90%;
    max-width: 320px;
    height: 480px;
  }

  .tour-info {
    padding: 24px 20px;
  }

  .tour-info p {
    max-width: 100%;
    font-size: 14px;
  }

  .tour-info h3 {
    font-size: 16px;
  }
}

/* Ordinateurs standards : 2 colonnes (plus grandes) */
@media (min-width: 1024px) and (max-width: 1439px) {
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0;
  }

  .tour-card {
    width: 420px;
    height: 520px;
  }
}

/* 1440px à 2559px : 4 colonnes, même taille que la base */
@media (min-width: 1440px) and (max-width: 2559px) {
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    justify-content: center;
    gap: 40px;
    max-width: 1200px; /* 4 * 260 + gaps */
    margin: 40px auto 0;
  }

  .tour-card {
    width: 260px;
    height: 480px;
  }
}

/* Très grands écrans (2560px+) : 4 colonnes plus grandes */
@media (min-width: 2560px) {
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    justify-content: center;
    gap: 50px;
    max-width: 1800px;
    margin: 40px auto 0;
  }

  .tour-card {
    width: 450px;
    height: 620px;
  }
}

/* === SHOOTING EXTERIEUR === */
  .shooting-exterieur {
    
    background-color: #f9fafe; 
    color: #191717; 
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.shooting-exterieur h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #191717;
}

.shooting-description {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
    padding: 0 1rem;
}


.shooting-exterieur p {
    font-size: 1.15rem;        
    line-height: 1.8;            
    margin: 0 auto 24px auto;   
    max-width: 700px;           
    padding: 0 16px;             
    text-align: left;            
    color: #191717;
    font-family: 'Inter', sans-serif;  
    letter-spacing: 0.2px;      
}

.shooting-exterieur p strong {
    font-size: 1.5rem;
    color: #191717;
    font-weight: bold;
}

.shooting-exterieur p small {
    font-size: 1.3rem;
    color: #191717;
}

.offers-cards-wrapper {
  padding: 40px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #f9fafe;
    justify-content: center;
}

.offer-card {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 25%;
}

.offer-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    border-radius: 0 0 20px 20px;
    z-index: 1;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 132, 255, 0.3);
}

.offer-card img {
    display: none;
}

.offer-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem 2rem;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.offer-content h2,
.offer-content .price,
.offer-content .description {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.offer-content h2 {
    font-size: 2.2rem;
    margin: 0 0 0.4rem;
    font-weight: bold;
    color: #00a1ff;
}

.offer-content .price {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0 0 1rem;
    color: #fff;
}

.offer-content .description {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1.3rem;
    color: #eee;
}

.offer-content .cta-button {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: #0085ff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-shadow: none;
}

.offer-content .cta-button:hover {
    background-color: #006bbd;
}

.offer-content .description em {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    font-size: 1rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

/* === RESPONSIVE BREAKPOINTS === */
@media screen and (min-width: 1024px) {
    .offer-card {
        height: 480px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .offer-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        padding: 1.5rem 2rem;
        box-sizing: border-box;
        text-align: left;
    }

    .offer-content h3 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
        min-height: 2.6rem; /* pour éviter les sauts */
    }

    .offer-content .price {
        font-size: 2rem;
        margin-bottom: 1rem;
        min-height: 2rem;
    }

    .offer-content .description {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1.3rem;
        min-height: 3.4rem;
    }

    .offer-content .cta-button {
        margin-top: auto;
        align-self: flex-start;
    }
}


@media screen and (max-width: 767px) {
    .offer-card {
        flex: 1 1 100%;
        height: 400px;
    }

    .offer-content h3 {
        font-size: 1.8rem;
    }

    .offer-content .price {
        font-size: 1.4rem;
    }

    .offer-content .description {
        font-size: 1.1rem;
    }
}

/* Tablettes et + : 3 colonnes */
@media screen and (min-width: 768px) {
    .offer-card {
        flex: 1 1 calc(33.333% - 2rem);
    }
}

/* Très grands écrans */
@media screen and (min-width: 1920px) {
    .offer-card {
        height: 480px;
    }

    .offer-content h3 {
        font-size: 2.5rem;
    }

    .description {
        font-size: 2.9rem;
    }

    .offer-content .price {
        font-size: 1.8rem;
    }

    .offer-content .description {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 2560px) {
    .offers-cards-wrapper {
        gap: 3rem; /* Plus d'espace entre les cards */
        padding: 4rem 0;
    }

    .offer-card {
        flex: 1 1 calc(33.333% - 3rem); /* même ratio mais plus d'espace */
        height: 660px !important;
        padding: 3rem 2.5rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .offer-content h3 {
        font-size: 3.4rem;
        margin-bottom: 1.8rem;
        min-height: 3.6rem;
    }

    .offer-content .price {
        font-size: 2.6rem;
        margin-bottom: 1.2rem;
        min-height: 2.4rem;
    }

    .offer-content .description {
        font-size: 1.7rem;
        line-height: 1.9;
        min-height: 4rem;
        margin-bottom: 1.5rem;
    }

    .offer-content .cta-button {
        font-size: 1.3rem;
        padding: 1rem 2rem;
        border-radius: 10px;
    }
}




/* === MARIAGE === */
.mariage {
  padding: 40px 30px;
  border-radius: 20px;
  color: #191717;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.title-mariage {
  font-size: 3.5rem;
  margin: 85px 0 0;
  font-weight: bold;
  color: #191717;
  text-align: center;
}

.mariage-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.mariage-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mariage-texte {
  flex: 1 1 50%;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  padding-right: 1rem;
}

.mariage-texte h3 {
  font-size: 2.5rem;
  color: #0085ff;
  margin-bottom: 20px;
}

.mariage-texte p {
  margin-bottom: 1.2rem;
}

.mariage-texte ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.mariage-texte ul li {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.mariage-texte strong {
  font-weight: bold;
}

.mariage .cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 0.8rem 1.5rem;
  background-color: #0085ff;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.mariage .cta-button:hover {
  background-color: #006bbd;
}

.carousel-wrapper-mariage {
  overflow: hidden;
  width: 100%;
  max-width: 600px; /* adapte si besoin */
  margin: auto;
  position: relative;
}

.carousel-slide {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.carousel-slide img {
  width: 100%;  /* Affiche une image à la fois */
  flex-shrink: 0;
  object-fit: cover;
}

/* === FIN MARIAGE === */

/* === EVENEMENTS === */
.evenement {
    padding: 60px 30px;
    border-radius: 20px;
    color: #191717;
    max-width: 1200px;
    margin: 0 auto 100px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.evenement h1 {
    font-size: 3.2rem;
    margin: 0 0 60px;
    font-weight: 700;
    color: #191717;
    text-align: center;
}

/* Container */
.evenement-container {
    display: flex;
    flex-direction: row; /* Image à gauche, texte à droite */
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

/* Image à gauche */
.evenement-image {
    flex: 1 1 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.evenement-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 12px 32px rgba(0, 132, 255, 0.15);
}

/* Texte amélioré côté UI/UX */
.evenement-texte {
    flex: 1 1 50%;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2c2c2c;
    padding: 0 1rem;
}

.evenement-texte h3 {
    font-size: 2rem;
    color: #0085ff;
    margin-bottom: 16px;
    font-weight: 600;
}

.evenement-texte p {
    margin-bottom: 1rem;
    font-weight: 400;
    color: #4a4a4a;
    letter-spacing: 0.2px;
}

@media (max-width: 768px) {
    .evenement {
        height: auto;
        padding: 60px 20px;
    }

    .evenement-container {
        flex-direction: column;
    }

    .evenement-image,
    .evenement-texte {
        flex: 1 1 100%;
        text-align: center;
    }

    .evenement-image img {
        max-width: 90%;
    }

    .evenement-texte {
        padding-right: 0;
    }
}
/* === FIN EVENEMENTS === */
/* LIENS BLEUS */
.lien-bleu {
    color: #0085ff;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.lien-bleu:hover,
.lien-bleu:focus {
    text-decoration: underline;
    cursor: pointer;
}
/* === FIN LIENS BLEUS === */
/* === FOOTER === */
.footer-section {
  position: relative;
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 120px 20px 30px;
  text-align: center;
  overflow: hidden;
}


.footer-section::before {
  content: "";
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px; /* Ajusté à la hauteur du SVG */
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.footer-column {
  flex: 1 1 250px;
  margin: 15px;
  min-width: 220px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #0085ff;
  display: inline-block;
  padding-bottom: 5px;
  color: #ffffff;
}

.footer-column p,
.footer-column a,
.footer-column li {
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.7;
}

.footer-column a:hover {
  color: #0085ff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  color: #ffffff;
  position: relative;
  z-index: 3;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #0085ff;
}

.footer-column .copyright {
  font-size: 0.95rem;
  margin-top: 20px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    margin: 20px auto;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-wave {
    height: 50px;  /* hauteur réduite sur mobile */
  }
}
/* === FIN FOOTER === */

/* === THEME TOGGLE === */
.toggle-theme button {
    background: none;
    border: none;
    cursor: pointer;
}

.toggle-theme img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.toggle-theme {
    display: inline-block;
}

#theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.6s ease-in-out;
}

#theme-toggle:hover {
    transform: rotate(360deg) scale(1.1); 
}

#theme-toggle:not(:hover) {
    transform: rotate(0deg) scale(1); 
}

/* === COOKIES === */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 900px;
    background: rgba(25, 25, 25, 0.95);
    color: white;
    padding: 18px 22px;
    border-radius: 14px;
    z-index: 1000;
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    animation: slideUp 0.5s ease;
    backdrop-filter: blur(6px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* CONTENU */
.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cookie-icon {
    font-size: 32px;
    background: #ffb703;
    color: #222;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-text h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.cookie-text p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #ddd;
}

.cookie-text a {
    color: #3ea6ff;
    text-decoration: underline;
}

/* ACTIONS */
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.primary {
    background: linear-gradient(135deg, #0085ff, #00b4ff);
    color: white;
}

.cookie-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,133,255,0.4);
}

.cookie-btn.secondary {
    background: transparent;
    color: #bbb;
    border: 1px solid #444;
}

.cookie-btn.secondary:hover {
    background: #333;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        justify-content: center;
    }
}

/* === CGV === */
.cgv {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: #333;
}

.cgv h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #0085ff;
    text-align: center;
    border-bottom: 2px solid #0085ff;
    padding-bottom: 10px;
}

.cgv h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #005bb5;
    position: relative;
}

.cgv h2::before {
    content: "•";
    color: #0085ff;
    font-size: 1.2rem;
    position: absolute;
    left: -20px;
    top: 2px;
}

.cgv p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .cgv {
        padding: 30px 20px;
    }

    .cgv h1 {
        font-size: 1.8rem;
    }

    .cgv h3 {
        font-size: 1.2rem;
    }

    .cgv p {
        font-size: 0.95rem;
    }
}
/* === FIN CGV === */

/* === MENTIONS LEGALES ===*/
.mentions-legales {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 30px;
    background-color: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: #333;
}

.mentions-legales h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #0085ff;
    text-align: center;
    border-bottom: 2px solid #0085ff;
    padding-bottom: 10px;
}

.mentions-legales h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #005bb5;
}

.mentions-legales p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
}

.mentions-legales a {
    color: #0085ff;
    text-decoration: none;
}

.mentions-legales a:hover {
    text-decoration: underline;
}

/* === POLITIQUE DE CONFIDENTIALITE === */
.info-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    color: #191717;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(0, 133, 255, 0.3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    max-width: 900px;
    margin: 60px auto;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.7;
}

/* Hover animation */
.info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 20px rgba(0, 133, 255, 0.6);
}

.info-card::before,
.info-card::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.info-card::before {
    top: 0;
    left: 0;
    border-top-color: transparent;
    border-left-color: transparent;
}

.info-card::after {
    bottom: 0;
    right: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.info-card:hover::before {
    border-top-color: #0085ff;
    border-left-color: #0085ff;
    width: 40px;
    height: 40px;
    border-top-left-radius: 10px;
}

.info-card:hover::after {
    border-bottom-color: #0085ff;
    border-right-color: #0085ff;
    width: 40px;
    height: 40px;
    border-bottom-right-radius: 10px;
}

/* Text styling inside */
.info-card h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #0085ff;
    text-align: center;
    border-bottom: 2px solid #0085ff;
    padding-bottom: 10px;
}

.info-card h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #005bb5;
}

.info-card p {
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: justify;
}

.info-card a {
    color: #0085ff;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}
/* === FIN POLITIQUE DE CONFIDENTIALITE === */

/* === IRIS === */
.photo-iris-section {
    padding: 50px 20px;
    background-color: #f9fafe; 
    color: #191717; 
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-iris-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #191717;
}

.photo-iris-section p {
    font-size: 1.15rem;
    line-height: 1.8;            
    margin: 0 auto 24px auto;    
    max-width: 700px;            
    padding: 0 16px;             
    text-align: left;            
    color: #191717;
    font-family: 'Inter', sans-serif;  
    letter-spacing: 0.2px;       
}

.photo-iris-section p small {
    font-size: 1.7rem;
    color: #191717;
}

.photo-iris-section .cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    justify-content: center;
}

/* Cartes IRIS */
.photo-iris-section .card {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center 25%;
}

.photo-iris-section .card img {
    display: none;
}

.photo-iris-section .card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
    border-radius: 0 0 20px 20px;
    z-index: 1;
}

.photo-iris-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 132, 255, 0.3);
}

.photo-iris-section .card-info {
    position: relative;
    z-index: 2;
    padding: 1.5rem 2rem;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.photo-iris-section .card-info .description,
.photo-iris-section .card-info .price,
.photo-iris-section .card-info .details {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.photo-iris-section .card-info .description {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
    color: #00a1ff;
}

.photo-iris-section .card-info .price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.photo-iris-section .card-info .details {
    text-align: left;
    margin: 10px 0 1.3rem;
    color: #fff;
}

.photo-iris-section .card-info .details p {
    margin: 2px 0;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #fff;
}

.photo-iris-section .card-info .details p::before {
    content: "– ";
    margin-right: 5px;
    color: #0085ff;
}

.photo-iris-section .cta-button {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    background-color: #0085ff;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    text-shadow: none;
}

.photo-iris-section .cta-button:hover {
    background-color: #006bbd;
}

.faq-iris {
    margin-top: 60px;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 16px;
    border: 2px solid rgba(0, 133, 255, 0.3);
}

.faq-iris h3 {
    color: #0085ff;
    font-size: 2rem;
    text-align: left;
    margin-bottom: 30px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(0, 133, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 133, 255, 0.6);
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background: none;
    border: none;
    color: #111;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
}

.faq-question:hover {
    background: rgba(0, 133, 255, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
    padding: 0 20px;
}

.faq-answer p {
    color: #333;
    padding: 15px 0;
    margin: 0;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media screen and (min-width: 768px) {
    .photo-iris-section .card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media screen and (min-width: 1024px) {
    .photo-iris-section .card {
        height: 480px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .photo-iris-section .card-info .description {
        font-size: 2.2rem;
    }

    .photo-iris-section .card-info .price {
        font-size: 2rem;
    }

    .photo-iris-section .card-info .details p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 767px) {
    .photo-iris-section .card {
        flex: 1 1 100%;
        height: 400px;
    }

    .photo-iris-section .card-info .description {
        font-size: 1.8rem;
    }

    .photo-iris-section .card-info .price {
        font-size: 1.4rem;
    }

    .photo-iris-section .card-info .details p {
        font-size: 1.1rem;
    }
}

@media screen and (min-width: 1920px) {
    .photo-iris-section .card {
        height: 480px;
    }

    .photo-iris-section .card-info .description {
        font-size: 2.5rem;
    }

    .photo-iris-section .card-info .price {
        font-size: 1.8rem;
    }

    .photo-iris-section .card-info .details p {
        font-size: 1.3rem;
    }
}

@media screen and (min-width: 2560px) {
    .photo-iris-section .card {
        height: 540px;
    }

    .photo-iris-section .card-info .description {
        font-size: 2.8rem;
    }

    .photo-iris-section .card-info .price {
        font-size: 2rem;
    }

    .photo-iris-section .card-info .details p {
        font-size: 1.5rem;
    }
}
/* === FIN IRIS === */

/* === EVENEMENTS === */
.evenement-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.frais-deplacement-container {
  flex: 1;
  min-width: 300px;
}

.frais-deplacement {
  font-size: 1.2rem;
  color: #444;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: left;
}

@media (max-width: 768px) {
  .evenement-section {
    flex-direction: column;
    align-items: center;
  }

  .frais-deplacement {
    text-align: center;
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
    .tarif-supplementaire {
        font-size: 1.5rem;
    }

    .frais-deplacement {
        font-size: 1rem;
    }
}

/* === ACCES CLIENTS === */
.client-access {
    background-color: #f9fafe;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.access-container {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.access-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(20, 159, 234, 0.15);
    padding: 30px 25px;
    max-width: 320px;
    flex: 1 1 280px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.access-card:hover {
    box-shadow: 0 15px 35px rgba(20, 159, 234, 0.3);
    transform: translateY(-6px);
}

.access-title {
    display: inline-block;
    font-weight: 700;
    font-size: 17px;
    color: #149fea;
    border: 2.5px dashed #149fea;
    padding: 8px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    user-select: none;
}

.access-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #555;
}

.access-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    border: 1.8px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    color: #444;
    background-color: #f5f8fc;
    transition: border-color 0.25s ease;
    box-sizing: border-box;
    font-weight: 500;
    outline-offset: 2px;
}

.access-input:focus {
    border-color: #149fea;
    background-color: #eaf6ff;
    outline: none;
}

.password-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
}

#togglePassword {
    position: absolute;
    top: 35%;
    right: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #149fea;
    user-select: none;
    line-height: 0;
}


.access-input.password {
    padding-right: 40px;
}

.access-button {
    background-color: #149fea;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 13px 0;
    width: 100%;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    user-select: none;
}

.access-button:hover,
.access-button:focus {
    background-color: #0d6fc1;
    outline: none;
    box-shadow: 0 0 10px rgba(13, 111, 193, 0.7);
}

/* Responsive pour petits écrans */
@media (max-width: 700px) {
    .access-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .access-card {
        max-width: 100%;
        padding: 25px 20px;
    }
}

/* === TARIFS ET CAROUSEL (sans le carousel) === */
.section-tarifs-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.tarifs-texte {
  flex: 1;
  min-width: 280px;
}

.tarifs-description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  font-style: italic;
  text-align: left;
}

.section-evenement-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.evenement-texte {
  flex: 1;
  min-width: 280px;
}



/* === RESPONSIVE === */
@media (max-width: 768px) {
  .section-tarifs-carousel,
  .section-evenement-carousel {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .tarifs-description{
    text-align: center;
    font-size: 1.1rem;
  }
}

/* === TARIFS SUPPLÉMENTAIRES === */
.tarifs-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
}

.tarif-supplementaire,
.frais-deplacement {
  flex: 1;
  min-width: 250px;
  font-size: 1rem;
  line-height: 1.5;
}

.separator {
  width: 2px;
  height: 80px;
  background-color: #ccc;
}

/* Responsive (mobile/tablette) */
@media screen and (max-width: 768px) {
  .tarifs-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .separator {
    width: 60%;
    height: 2px;
    margin: 20px 0;
  }
}

/* === CAROUSEL SHOOTING ET EVENEMNTS === */
.carousel-section {
  overflow: hidden;
  width: 100%;
  background-color: #f8f8f8;
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
animation: scrollInfinite 40s linear infinite;
  width: max-content;
}

.carousel-track img {
  height: 300px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* === SECTION BON CADEAU 
.gift-section {
  background: #f7f9fc;
  padding: 80px 20px;
}

.gift-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.gift-text {
  flex: 1 1 500px;
}

.gift-text h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.gift-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
}

.gift-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.gift-benefits li {
  font-size: 17px;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
}

.gift-cta {
  display: inline-block;
  background: linear-gradient(135deg, #0a84ff, #0069d9);
  color: #fff;
  padding: 14px 30px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 110, 220, 0.25);
}

.gift-cta:hover {
  background: linear-gradient(135deg, #1591ff, #005fc5);
  box-shadow: 0 6px 18px rgba(0, 110, 220, 0.35);
  transform: translateY(-2px);
}

.gift-image {
  flex: 1 1 450px;
  text-align: center;
}

.gift-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
=== */

/* === SECTION BON CADEAU SPÉCIAL NOËL — ULTRA VENDEUR === */

.gift-xmas-section {
  background: linear-gradient(180deg, #fff8f4, #fdf3f2);
  padding: 100px 20px;
  border-top: 1px solid #e6d7d5;
}

.gift-xmas-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.gift-xmas-text {
  flex: 1 1 520px;
}

.gift-xmas-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #b11111;
  margin-bottom: 18px;
}

.gift-xmas-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.gift-xmas-highlight {
  background: rgba(255, 230, 220, 0.6);
  padding: 12px 18px;
  border-left: 4px solid #b11111;
  border-radius: 6px;
  font-weight: 600;
  color: #b11111;
  margin-bottom: 25px;
}

.gift-xmas-benefits {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

.gift-xmas-benefits li {
  font-size: 17px;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
}

.gift-xmas-closing {
  font-size: 19px;
  font-weight: 600;
  color: #8a0000;
  margin-bottom: 35px;
}

.gift-xmas-cta {
  display: inline-block;
  background: linear-gradient(135deg, #d60000, #8a0000);
  color: #fff;
  padding: 16px 34px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(150, 0, 0, 0.35);
}

.gift-xmas-cta:hover {
  background: linear-gradient(135deg, #e30000, #7a0000);
  box-shadow: 0 8px 22px rgba(150, 0, 0, 0.45);
  transform: translateY(-2px);
}

.gift-xmas-image {
  flex: 1 1 400px;
  text-align: center;
}

.gift-xmas-image img {
  width: 100%;
  max-width: 40\0px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  border: 5px solid #ffffff;
}

/* =========================================================
   SECTION PRINCIPALE CONTACT
   ========================================================= */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(40px, 6vw, 80px) 20px;
    background: #ffffff;
}

.contact-card {
    width: 100%;
    max-width: 1400px;
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ================= IMAGE À GAUCHE ================= */
.contact-image {
    background-image: url("../images/form/background.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100%;
    position: relative;
}

.contact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.15));
}

/* ================= FORMULAIRE ================= */
.contact-form {
    background: #fff;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-form iframe {
    width: 100%;
    height: 100%;
    min-height: 850px;
    border: none;
}

/* =========================================================
   SECTION GOOGLE MAP + HORAIRES
   ========================================================= */
.map-hours-section {
    padding: clamp(40px, 6vw, 60px) 20px;
    background-color: #fafafa;
}

.map-hours-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* CARDS */
.cards-info {
    min-height: 350px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 133, 255, 0.3);
}

.cards-info:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 133, 255, 0.4);
}

/* MAP */
.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 15px;
    border: none;
}

/* HORAIRES */
.hours-card h2 {
    font-size: clamp(1.5em, 2vw, 2em);
    margin-bottom: 15px;
    color: #0085ff; 
}

.hours-card p {
    font-size: clamp(1em, 1.4vw, 1.4em);
    line-height: 1.6;
    margin: 4px 0;
}

.hours-card p span {
    color: #0085ff;
    font-weight: 600;
}

/* =========================================================
   RESPONSIVE TABLETTE
   ========================================================= */
@media (max-width: 1024px) {

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-image {
        min-height: 380px;
    }

    .contact-form iframe {
        min-height: 950px;
    }

    .map-hours-container {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */
@media (max-width: 600px) {

    .contact-section {
        padding: 30px 12px;
    }

    .contact-image {
        min-height: 260px;
    }

    .contact-form iframe {
        min-height: 1050px;
    }

    .cards-info {
        padding: 20px;
    }

    .map-card iframe {
        min-height: 260px;
    }
}
