/* ==========================================================================
   NEOWORKING - Styles pour la page Événements - Salon Marcoussis
   Version: 3.0 - Design Premium - Responsive Optimisé
   ========================================================================== */

/* --------------------------------------------------- */
/* ANIMATIONS DE BASE */
/* --------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ces délais seront appliqués via delay-1, delay-2, etc. */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1s;
}

/* --------------------------------------------------- */
/* CORRECTION DU HEADER ET NAVIGATION MOBILE */
/* --------------------------------------------------- */

/* Assurer que le header reste au-dessus de tous les éléments */
.header {
  z-index: 2000;
  position: fixed;
}

.header__container {
  padding: 0 var(--container-padding);
  position: relative;
}

/* Correction du positionnement du burger menu */
.header__burger {
  position: relative;
}

/* S'assurer que le menu mobile apparaît correctement */
.mobile-nav {
  z-index: 1999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  pointer-events: none;
}

.mobile-nav.mobile-nav--open {
  transform: translateY(0);
  pointer-events: auto;
}

/* --------------------------------------------------- */
/* Section HERO - Design immersif optimisé */
/* --------------------------------------------------- */
.event-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-dark);
  overflow: hidden;
  padding-top: 6rem; /* Espace pour le header fixe */
}

.event-hero__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2; /* Au-dessus des décorations */
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.event-hero__content {
  flex: 1;
  max-width: 600px;
  margin-top: 1rem; /* Réduit de 8rem à 1rem pour mieux s'adapter aux petits écrans */
}

.event-hero__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-hero__title-accent {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
  margin-top: 0.5rem;
  color: var(--color-yellow);
}

.event-hero__description {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  max-width: 650px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.event-hero__actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.event-hero__btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-hero__btn:hover,
.event-hero__btn:focus {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.event-hero__capacity {
  margin-top: 2rem;
  max-width: 180px;
  animation: pulse 2s infinite ease-in-out;
}

.event-hero__capacity-icon {
  width: 100%;
  height: auto;
}

/* Partie visuelle du hero avec images flottantes */
.event-hero__visual {
  flex: 1;
  min-width: 350px;
  max-width: 550px;
  position: relative;
  height: 80vh;
  max-height: 800px;
}

.event-hero__images {
  position: relative;
  width: 100%;
  height: 100%;
}

.event-hero__image-wrapper {
  position: absolute;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 1s ease;
}

.event-hero__image-wrapper--1 {
  top: 10%;
  right: 10%;
  width: 70%;
  height: 55%;
  z-index: 3;
  animation: float-1 12s infinite ease-in-out;
}

.event-hero__image-wrapper--2 {
  top: 50%;
  left: 0;
  width: 50%;
  height: 40%;
  z-index: 2;
  animation: float-2 15s infinite ease-in-out;
}

.event-hero__image-wrapper--3 {
  bottom: 5%;
  right: 5%;
  width: 60%;
  height: 40%;
  z-index: 1;
  animation: float-3 18s infinite ease-in-out;
}

.event-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease-in-out;
}

.event-hero__image-wrapper:hover .event-hero__image {
  transform: scale(1.05);
}

/* Éléments décoratifs repositionnés avec z-index basse */
.event-hero__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1; /* En dessous du contenu mais visible */
}

.event-hero__decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0; /* En dessous de tout */
}

.event-hero__decoration--yellow {
  bottom: -100px;
  right: 10%;
  width: 300px;
  height: 300px;
  background-color: var(--color-yellow);
  animation: float 15s ease-in-out infinite;
}

.event-hero__decoration--orange {
  top: 20%;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: var(--color-orange);
  animation: float 12s ease-in-out infinite reverse;
}

.event-hero__decoration--pink {
  bottom: 30%;
  right: 30%;
  width: 150px;
  height: 150px;
  background-color: var(--color-pink);
  animation: float 10s ease-in-out infinite 2s;
}

.event-hero__decoration-line {
  position: absolute;
  height: auto;
  opacity: 0.5;
  z-index: 0; /* En dessous de tout */
}

.event-hero__decoration-line--yellow {
  bottom: 15%;
  right: 5%;
  width: 250px;
  transform: rotate(15deg);
  animation: float-slow 20s ease-in-out infinite;
}

.event-hero__decoration-line--orange {
  top: 25%;
  left: 5%;
  width: 200px;
  transform: rotate(-30deg);
  animation: float-slow 15s ease-in-out infinite reverse;
}

.event-hero__decoration-line--pink {
  bottom: 40%;
  left: 15%;
  width: 170px;
  transform: rotate(20deg);
  animation: float-slow 18s ease-in-out infinite 3s;
}

/* --------------------------------------------------- */
/* Section CONCEPT */
/* --------------------------------------------------- */
.event-concept {
  background: linear-gradient(to bottom, var(--color-dark) 0%, var(--color-dark-65) 100%);
  padding: 7rem 0;
  color: var(--color-white);
  position: relative;
}

.event-concept__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.event-concept__content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.event-concept__text-content {
  flex: 1;
  min-width: 300px; /* Réduit pour mieux s'adapter aux mobiles */
}

.event-concept__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.event-concept__title-underline {
  width: 100px;
  height: 4px;
  background-color: var(--color-yellow);
  border-radius: 2px;
  margin-bottom: 2rem;
  position: relative;
}

.event-concept__title-underline::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--color-orange);
  border-radius: 2px;
  right: -60px;
  top: 0;
}

.event-concept__text {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.event-concept__highlight {
  position: relative;
  display: inline;
}

.event-concept__highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: currentColor;
  opacity: 0.15;
  z-index: -1;
}

.event-concept__highlight--yellow {
  color: var(--color-yellow);
}

.event-concept__highlight--orange {
  color: var(--color-orange);
}

.event-concept__highlight--pink {
  color: var(--color-pink);
}

.event-concept__features {
  flex: 1;
  min-width: 300px; /* Réduit pour mieux s'adapter aux mobiles */
  display: grid;
  grid-template-columns: 1fr; /* Par défaut en mobile - une seule colonne */
  gap: 2rem;
}

.event-concept__feature {
  background-color: rgba(30, 30, 30, 0.3);
  border-radius: var(--radius-large);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.event-concept__feature:nth-child(1) {
  border-left: 3px solid var(--color-yellow);
}

.event-concept__feature:nth-child(2) {
  border-left: 3px solid var(--color-orange);
}

.event-concept__feature:nth-child(3) {
  border-left: 3px solid var(--color-pink);
}

.event-concept__feature:nth-child(4) {
  border-left: 3px solid var(--color-blue);
}

.event-concept__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.event-concept__feature-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-concept__feature-icon svg {
  width: 32px;
  height: 32px;
}

.event-concept__feature:nth-child(1) .event-concept__feature-icon svg {
  stroke: var(--color-yellow);
}

.event-concept__feature:nth-child(2) .event-concept__feature-icon svg {
  stroke: var(--color-orange);
}

.event-concept__feature:nth-child(3) .event-concept__feature-icon svg {
  stroke: var(--color-pink);
}

.event-concept__feature:nth-child(4) .event-concept__feature-icon svg {
  stroke: var(--color-blue);
}

.event-concept__feature-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.event-concept__feature:nth-child(1) .event-concept__feature-title {
  color: var(--color-yellow);
}

.event-concept__feature:nth-child(2) .event-concept__feature-title {
  color: var(--color-orange);
}

.event-concept__feature:nth-child(3) .event-concept__feature-title {
  color: var(--color-pink);
}

.event-concept__feature:nth-child(4) .event-concept__feature-title {
  color: var(--color-blue);
}

.event-concept__feature-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-white);
  opacity: 0.9;
}

/* --------------------------------------------------- */
/* Section DETAILS & ÉQUIPEMENTS */
/* --------------------------------------------------- */
.event-details {
  background: linear-gradient(to bottom, var(--color-dark-65) 0%, var(--color-dark-45) 100%);
  padding: 7rem 0;
  color: var(--color-white);
  position: relative;
}

.event-details__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.event-details__content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.event-details__text-wrapper {
  flex: 1;
  min-width: 300px; /* Réduit pour mieux s'adapter aux mobiles */
}

.event-details__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.event-details__title-underline {
  width: 100px;
  height: 4px;
  background-color: var(--color-orange);
  border-radius: 2px;
  margin-bottom: 2rem;
  position: relative;
}

.event-details__title-underline::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--color-pink);
  border-radius: 2px;
  right: -60px;
  top: 0;
}

.event-details__text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.event-details__amenities {
  flex: 1;
  min-width: 300px; /* Réduit pour mieux s'adapter aux mobiles */
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.event-details__amenities-column {
  flex: 1;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-large);
  padding: 2.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.event-details__amenities-column:hover {
  transform: translateY(-5px);
}

.event-details__amenities-column:first-child {
  border-top: 3px solid var(--color-yellow);
}

.event-details__amenities-column:last-child {
  border-top: 3px solid var(--color-orange);
}

.event-details__amenities-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.event-details__amenities-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.event-details__amenity {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.event-details__amenity svg {
  min-width: 20px;
  margin-top: 0.25rem;
  stroke: var(--color-yellow);
}

.event-details__amenities-column:last-child .event-details__amenity svg {
  stroke: var(--color-orange);
}

.event-details__amenity span {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* --------------------------------------------------- */
/* Section PARTENARIAT TRAITEUR */
/* --------------------------------------------------- */
.event-catering {
  background: linear-gradient(to bottom, var(--color-dark-45) 0%, var(--color-dark-30) 100%);
  padding: 7rem 0;
  color: var(--color-white);
  position: relative;
}

.event-catering__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.event-catering__content {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  align-items: center;
}

.event-catering__text-content {
  flex: 1;
  min-width: 300px; /* Réduit pour mieux s'adapter aux mobiles */
}

.event-catering__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.event-catering__title-underline {
  width: 100px;
  height: 4px;
  background-color: var(--color-yellow);
  border-radius: 2px;
  margin-bottom: 2rem;
  position: relative;
}

.event-catering__title-underline::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--color-blue);
  border-radius: 2px;
  right: -60px;
  top: 0;
}

.event-catering__logo {
  display: inline-block;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  background-color: var(--color-dark);
  border-left: 3px solid var(--color-yellow);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.event-catering__logo-text {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--color-yellow);
}

.event-catering__text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.event-catering__offerings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.event-catering__offering {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: var(--radius-large);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-catering__offering:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.event-catering__offering:nth-child(1) {
  border-bottom: 3px solid var(--color-yellow);
}

.event-catering__offering:nth-child(2) {
  border-bottom: 3px solid var(--color-orange);
}

.event-catering__offering:nth-child(3) {
  border-bottom: 3px solid var(--color-pink);
}

.event-catering__offering-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.event-catering__offering:nth-child(1) .event-catering__offering-title {
  color: var(--color-yellow);
}

.event-catering__offering:nth-child(2) .event-catering__offering-title {
  color: var(--color-orange);
}

.event-catering__offering:nth-child(3) .event-catering__offering-title {
  color: var(--color-pink);
}

.event-catering__offering-text {
  font-size: 1rem;
  line-height: 1.5;
}

.event-catering__image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.event-catering__image:hover {
  transform: rotate(0);
}

.event-catering__img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.event-catering__image:hover .event-catering__img {
  transform: scale(1.05);
}

/* --------------------------------------------------- */
/* Section CONFIGURATIONS */
/* --------------------------------------------------- */
.event-configurations {
  background: linear-gradient(to bottom, var(--color-dark-30) 0%, var(--color-dark-15) 100%);
  padding: 7rem 0;
  color: var(--color-white);
  position: relative;
}

.event-configurations__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.event-configurations__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.event-configurations__title-underline {
  width: 100px;
  height: 4px;
  background-color: var(--color-pink);
  border-radius: 2px;
  margin: 0 auto 4rem;
  position: relative;
}

.event-configurations__title-underline::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--color-yellow);
  border-radius: 2px;
  left: -60px;
  top: 0;
}

.event-configurations__title-underline::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--color-orange);
  border-radius: 2px;
  right: -60px;
  top: 0;
}

.event-configurations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.event-configuration {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-configuration:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.event-configuration__image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.event-configuration__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-configuration:hover .event-configuration__image {
  transform: scale(1.1);
}

.event-configuration__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-configuration__capacity {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-white);
}

.event-configuration__content {
  padding: 2rem;
}

.event-configuration__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.event-configuration:nth-child(1) .event-configuration__name {
  color: var(--color-yellow);
}

.event-configuration:nth-child(2) .event-configuration__name {
  color: var(--color-orange);
}

.event-configuration:nth-child(3) .event-configuration__name {
  color: var(--color-pink);
}

.event-configuration:nth-child(4) .event-configuration__name {
  color: var(--color-blue);
}

.event-configuration__description {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* --------------------------------------------------- */
/* Section GALERIE */
/* --------------------------------------------------- */
.event-gallery {
  background: linear-gradient(to bottom, var(--color-dark-15) 0%, var(--color-dark) 100%);
  padding: 7rem 0;
  color: var(--color-white);
  position: relative;
}

.event-gallery__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.event-gallery__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.event-gallery__title-underline {
  width: 100px;
  height: 4px;
  background-color: var(--color-blue);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.event-gallery__description {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

.event-gallery__description p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.event-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}

.event-gallery__item {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-gallery__item--large {
  grid-column: span 2;
}

.event-gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.event-gallery__image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.event-gallery__image-static {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.event-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-gallery__image-wrapper:hover .event-gallery__image,
.event-gallery__image-static:hover .event-gallery__image {
  transform: scale(1.05);
}

.event-gallery__hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-gallery__image-wrapper:hover .event-gallery__hover {
  opacity: 1;
}

.event-gallery__zoom {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.event-gallery__zoom:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.event-gallery__zoom svg {
  stroke: var(--color-white);
}

/* Lightbox pour la galerie */
.event-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000; /* Au-dessus de tout */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.event-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.event-lightbox__container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-lightbox__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-lightbox__image {
  max-width: 100%;
  max-height: 90%;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.event-lightbox__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.event-lightbox__close svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
  transition: transform 0.3s ease;
}

.event-lightbox__close:hover svg {
  transform: rotate(90deg);
}

.event-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.event-lightbox__arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.event-lightbox__arrow--prev {
  left: -80px;
}

.event-lightbox__arrow--next {
  right: -80px;
}

.event-lightbox__arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-white);
}

/* --------------------------------------------------- */
/* Section TÉMOIGNAGES */
/* --------------------------------------------------- */
.event-testimonials {
  background-color: var(--color-dark);
  padding: 7rem 0;
  color: var(--color-white);
  position: relative;
}

.event-testimonials__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.event-testimonials__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.event-testimonials__title-underline {
  width: 100px;
  height: 4px;
  background-color: var(--color-yellow);
  border-radius: 2px;
  margin: 0 auto 4rem;
  position: relative;
}

.event-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.event-testimonial {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-large);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.event-testimonial__content {
  padding: 3rem;
  position: relative;
}

.event-testimonial__quote {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  opacity: 0.1;
}

.event-testimonial__quote svg {
  width: 40px;
  height: 40px;
  fill: var(--color-yellow);
}

.event-testimonial:nth-child(2) .event-testimonial__quote svg {
  fill: var(--color-orange);
}

.event-testimonial:nth-child(3) .event-testimonial__quote svg {
  fill: var(--color-pink);
}

.event-testimonial__text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.event-testimonial__author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.event-testimonial__author-info {
  display: flex;
  flex-direction: column;
}

.event-testimonial__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--color-yellow);
}

.event-testimonial:nth-child(2) .event-testimonial__name {
  color: var(--color-orange);
}

.event-testimonial:nth-child(3) .event-testimonial__name {
  color: var(--color-pink);
}

.event-testimonial__position {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* --------------------------------------------------- */
/* Section DEMANDE DE DEVIS */
/* --------------------------------------------------- */
.event-quote {
  background-color: var(--color-blue);
  padding: 7rem 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.event-quote__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.event-quote__content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.event-quote__text-content {
  flex: 1;
  min-width: 300px; /* Réduit pour mieux s'adapter aux mobiles */
}

.event-quote__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.event-quote__title-underline {
  width: 100px;
  height: 4px;
  background-color: var(--color-yellow);
  border-radius: 2px;
  margin-bottom: 2rem;
  position: relative;
}

.event-quote__title-underline::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background-color: var(--color-orange);
  border-radius: 2px;
  right: -60px;
  top: 0;
}

.event-quote__text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.event-quote__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-quote__phone,
.event-quote__email {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.event-quote__phone:hover,
.event-quote__email:hover {
  transform: translateX(10px);
}

.event-quote__phone-icon,
.event-quote__email-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-quote__phone-icon svg,
.event-quote__email-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-yellow);
}

.event-quote__email-icon svg {
  stroke: var(--color-orange);
}

.event-quote__phone-number {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--color-yellow);
}

.event-quote__email-address {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--color-orange);
}

.event-quote__form-container {
  flex: 1.5;
  min-width: 300px; /* Réduit pour mieux s'adapter aux mobiles */
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-large);
  padding: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.event-quote__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-quote__form-row {
  display: flex;
  gap: 1.5rem;
}

.event-quote__form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-quote__label {
  font-size: 0.9rem;
  font-weight: 600;
}

.event-quote__input,
.event-quote__select,
.event-quote__textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-small);
  color: var(--color-white);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.event-quote__input:focus,
.event-quote__select:focus,
.event-quote__textarea:focus {
  border-color: var(--color-yellow);
  background-color: rgba(255, 255, 255, 0.12);
  outline: none;
}

.event-quote__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.event-quote__textarea {
  resize: vertical;
  min-height: 150px;
}

.event-quote__checkbox-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}

.event-quote__checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--color-yellow);
}

.event-quote__checkbox-label {
  font-size: 1rem;
}

.event-quote__form-actions {
  margin-top: 1.5rem;
}

.event-quote__submit {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-quote__submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.event-quote__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.event-quote__decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.event-quote__decoration--yellow {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background-color: var(--color-yellow);
}

.event-quote__decoration--orange {
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-color: var(--color-orange);
}

/* Styles pour le message de succès du formulaire */
.event-quote__success-message {
  text-align: center;
  padding: 2rem;
}

.event-quote__success-message svg {
  width: 60px;
  height: 60px;
  stroke: var(--color-yellow);
  margin: 0 auto 1.5rem;
  display: block;
}

.event-quote__success-message h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.event-quote__success-message p {
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* --------------------------------------------------- */
/* Section CTA - Ajustement de l'image */
/* --------------------------------------------------- */
.event-cta {
  background: linear-gradient(to bottom, var(--color-blue) 0%, var(--color-dark) 100%);
  padding: 5rem 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.event-cta__container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  position: relative;
}

.event-cta__content {
  flex: 1;
  max-width: 600px;
}

.event-cta__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.event-cta__text {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.event-cta__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.event-cta__btn {
  font-size: 1rem;
  padding: 1rem 2rem;
}

.event-cta__phone {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.event-cta__phone:hover {
  transform: translateY(-3px);
}

.event-cta__phone-icon {
  width: 36px;
  height: 36px;
}

.event-cta__phone-icon img {
  width: 100%;
  height: 100%;
}

.event-cta__phone-number {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--color-yellow);
}

.event-cta__image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.event-cta__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-large);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------- */
/* KEYFRAMES ET ANIMATIONS */
/* --------------------------------------------------- */

@keyframes float-1 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float-2 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(-2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float-3 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes float-slow {
  0% {
    transform: translate(0, 0) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translate(15px, -15px) rotate(calc(var(--rotate, 0deg) + 5deg));
  }
  100% {
    transform: translate(0, 0) rotate(var(--rotate, 0deg));
  }
}

/* --------------------------------------------------- */
/* MEDIA QUERIES */
/* --------------------------------------------------- */

/* Force l'affichage mobile pour event-concept jusqu'à 1024px */
@media (max-width: 1024px) {
  .event-concept__features {
    grid-template-columns: 1fr !important; /* Force une seule colonne */
    max-width: 100%;
  }

  .event-concept__feature {
    max-width: 100%;
  }
}

/* TABLETTE (769px à 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  /* Header corrections */
  .header__container {
    padding: 0 1.5rem;
  }

  .header__burger {
    right: 0;
    position: relative;
  }

  /* Hero */
  .event-hero {
    padding-top: 5rem;
  }

  .event-hero__title {
    font-size: 3.5rem;
  }

  .event-hero__title-accent {
    font-size: 2rem;
  }

  .event-hero__description {
    font-size: 1.4rem;
  }

  .event-hero__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .event-hero__content {
    max-width: 100%;
  }

  .event-hero__visual {
    height: 60vh;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }

  .event-hero__image-wrapper--1 {
    width: 80%;
  }

  /* Concepts */
  .event-concept__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-concept__title,
  .event-details__title,
  .event-catering__title,
  .event-configurations__title,
  .event-gallery__title,
  .event-testimonials__title,
  .event-quote__title {
    font-size: 2.7rem;
  }

  /* Gallery */
  .event-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Lightbox */
  .event-lightbox__arrow--prev {
    left: 20px;
  }

  .event-lightbox__arrow--next {
    right: 20px;
  }

  /* CTA */
  .event-cta__container {
    flex-direction: column;
    align-items: center;
  }

  .event-cta__content,
  .event-cta__image {
    max-width: 100%;
  }

  .event-cta__actions {
    justify-content: center;
  }
}

/* MOBILE (360px à 768px) - Étendu pour inclure iPad mini */
@media (max-width: 768px) {
  /* Header */
  .header__container {
    padding: 0 1rem;
  }

  /* Section hero */
  .event-hero {
    padding-top: 4rem;
  }

  .event-hero__title {
    font-size: 3rem;
  }

  .event-hero__title-accent {
    font-size: 1.8rem;
  }

  .event-hero__description {
    font-size: 1.2rem;
  }

  .event-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .event-hero__btn {
    width: 100%;
  }

  .event-hero__visual {
    height: 50vh;
  }

  .event-hero__image-wrapper--1 {
    width: 80%;
    height: 50%;
  }

  .event-hero__image-wrapper--2,
  .event-hero__image-wrapper--3 {
    width: 60%;
    height: 35%;
  }

  /* Section concept */
  .event-concept__title,
  .event-details__title,
  .event-catering__title,
  .event-configurations__title,
  .event-gallery__title,
  .event-testimonials__title,
  .event-quote__title,
  .event-cta__title {
    font-size: 2.2rem;
  }

  .event-concept__features {
    grid-template-columns: 1fr;
  }

  .event-concept__text,
  .event-details__text,
  .event-catering__text {
    font-size: 1.1rem;
  }

  /* Section restauration */
  .event-catering__logo-text {
    font-size: 1.5rem;
  }

  .event-catering__offerings {
    grid-template-columns: 1fr;
  }

  /* Section configuration */
  .event-configurations__grid {
    grid-template-columns: 1fr;
  }

  /* Section galerie */
  .event-gallery__grid {
    grid-template-columns: 1fr;
  }

  .event-gallery__item--large {
    grid-column: auto;
  }

  /* Section témoignages */
  .event-testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Section devis */
  .event-quote__form-row {
    flex-direction: column;
  }

  .event-quote__form-container {
    min-width: 100%;
    padding: 1.5rem;
  }

  /* Section CTA */
  .event-cta__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .event-cta__btn {
    width: 100%;
  }
}

/* Styles spécifiques pour iPad Mini et autres tablettes en mode portrait */
@media (min-width: 540px) and (max-width: 768px) {
  /* Ajustements de galerie */
  .event-gallery__grid {
    grid-template-columns: 1fr; /* Une seule colonne pour éviter les problèmes */
  }

  /* Amélioration des formulaires */
  .event-quote__form-row {
    flex-direction: column; /* Empile les champs sur iPad Mini */
  }

  /* Boutons et CTA */
  .event-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .event-hero__btn {
    width: 100%;
  }
}

/* TRÈS PETIT MOBILE (moins de 360px) */
@media (max-width: 359px) {
  /* Header */
  .header__container {
    padding: 0 0.75rem;
  }

  /* Section hero */
  .event-hero__title {
    font-size: 2.5rem;
  }

  .event-hero__title-accent {
    font-size: 1.5rem;
  }

  .event-hero__description {
    font-size: 1rem;
  }

  .event-hero__visual {
    height: 40vh;
  }

  /* Titres de sections */
  .event-concept__title,
  .event-details__title,
  .event-catering__title,
  .event-configurations__title,
  .event-gallery__title,
  .event-testimonials__title,
  .event-quote__title,
  .event-cta__title {
    font-size: 1.8rem;
  }

  /* Contenu divers */
  .event-catering__logo-text {
    font-size: 1.3rem;
  }

  .event-configuration__name {
    font-size: 1.4rem;
  }

  .event-quote__phone-number,
  .event-cta__phone-number {
    font-size: 1.3rem;
  }

  .event-quote__email-address {
    font-size: 1.1rem;
  }
}
