:root {
  --rose-fuchsia: #FF3EB5;
  --rouge-passion: #E30049;
  --noir-profond: #0B0B0B;
  --gris-perle: #B6B6B6;
  --blanc-pur: #FFFFFF;
}

/* ========================================
   SECTION PR�SENTATION
   ======================================== */
.presentation-section {
  padding: 120px var(--page-side-padding) 80px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  background: transparent;
}

.presentation-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.presentation-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  line-height: 1.2;
}

.presentation-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gris-perle);
  margin-bottom: 20px;
  text-align: justify;
}

.presentation-text p.highlight {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--blanc-pur);
  margin-top: 40px;
  padding: 30px 35px;
  background: linear-gradient(135deg, rgba(255, 62, 181, 0.15), rgba(227, 0, 73, 0.15));
  border-left: 5px solid var(--rose-fuchsia);
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 30px rgba(255, 62, 181, 0.2);
  position: relative;
  overflow: hidden;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.presentation-text p.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 62, 181, 0.05), transparent);
  pointer-events: none;
}

.presentation-image {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.presentation-image img,
.presentation-image video {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 62, 181, 0.3);
  transition: transform 0.4s ease;
}

.presentation-image:hover img,
.presentation-image:hover video {
  transform: scale(1.05);
}

/* Taille spécifique pour l'image 1 */
.presentation-image-1 {
  max-width: 400px;
  max-height: 530px;
  aspect-ratio: 3/4;
}

.presentation-image-1 img,
.presentation-image-1 video {
  height: 100%;
  object-fit: cover;
}

/* Taille spécifique pour l'image 2 */
.presentation-image-2 {
  max-width: 500px;
}

/* Ajustement pour desktop */
@media (min-width: 993px) {
  .presentation-image-1 {
    max-width: 400px;
    max-height: 530px;
  }

  .presentation-image-2 {
    max-width: 500px;
  }
}

@media (max-width: 992px) {
  .presentation-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .presentation-image {
    order: 2;
    width: 100%;
    max-width: 100%;
  }

  .presentation-text {
    order: 1;
  }

  .presentation-text h2 {
    font-size: 2rem;
  }

  .presentation-text p {
    font-size: 1.05rem;
  }

  .presentation-section {
    padding: 100px 30px 60px;
  }
}

@media (max-width: 768px) {
  .presentation-text h2 {
    font-size: 1.75rem;
  }

  .presentation-text p {
    font-size: 1rem;
    text-align: left;
  }

  .presentation-text p.highlight {
    font-size: 1.1rem;
  }

  .presentation-section {
    padding: 80px 20px 40px;
  }
}

/* ========================================
   SECTION PR�SENTATION ALTERNATIVE
   ======================================== */
.presentation-section-alt {
  padding: 80px var(--page-side-padding);
}

.presentation-section-alt .presentation-container {
  grid-template-columns: 1fr 1fr;
}

.presentation-section-alt .presentation-text h2 {
  background: linear-gradient(135deg, var(--rouge-passion), var(--rose-fuchsia));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop only: image on left */
@media (min-width: 993px) {
  .presentation-section-alt .presentation-image {
    order: -1;
  }
}

@media (max-width: 992px) {
  .presentation-section-alt {
    padding: 60px 30px;
  }

  .presentation-section-alt .presentation-image {
    order: 2;
  }
}

@media (max-width: 768px) {
  .presentation-section-alt {
    padding: 40px 20px;
  }
}

/* ========================================
   SECTION COMMUNAUTÉ
   ======================================== */
.community-section {
  padding: 100px var(--page-side-padding);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.community-container h2 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-fuchsia), var(--rouge-passion));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 35px;
  line-height: 1.3;
}

.community-container p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--gris-perle);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .community-section {
    padding: 80px 30px;
  }

  .community-container h2 {
    font-size: 1.9rem;
  }

  .community-container p {
    font-size: 1.08rem;
  }
}

@media (max-width: 768px) {
  .community-section {
    padding: 60px 20px;
  }

  .community-container h2 {
    font-size: 1.65rem;
  }

  .community-container p {
    font-size: 1rem;
  }
}

/* MOBILE – forcer texte puis image */
@media (max-width: 768px) {
  .presentation-container {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }

  .presentation-text {
    order: 1 !important;
  }

  .presentation-image {
    order: 2 !important;
    margin-top: 20px;
  }

  .presentation-section-alt .presentation-text {
    order: 1 !important;
  }

  .presentation-section-alt .presentation-image {
    order: 2 !important;
  }
}
