/* Brittany Signature Font */
@font-face {
  font-family: 'Brittany Signature';
  src: url('/assets/BrittanySignature-Regular.woff2') format('woff2'),
       url('/assets/BrittanySignature-Regular.woff') format('woff'),
       url('/assets/BrittanySignature-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* The Seasons Font */
@font-face {
  font-family: 'The Seasons';
  src: url('/assets/TheSeasons-Regular.woff2') format('woff2'),
       url('/assets/TheSeasons-Regular.woff') format('woff'),
       url('/assets/TheSeasons-Regular.ttf') format('truetype'),
       url('/assets/TheSeasons-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Helper class to use The Seasons where needed */
.seasons-text {
  font-family: 'The Seasons', serif;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* All headings use Brittany Signature */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Brittany Signature', 'Brittany Signature', cursive;
}

/* Typography Helpers */
.logo-main {
  font-family: 'Brittany Signature', 'Brittany Signature', cursive;
  font-size: 2.5rem;
  font-weight: 700;
}

.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Variables */
:root {
  --primary-pink: #D81B60;
  --light-pink: #F8BBD0;
  --pale-pink: #FCE4EC;
  --white: #FFFFFF;
  --gray: #666666;
  --dark-gray: #333333;
  --accent-gray: #9E9E9E;
  --accent-pink: #F48FB1;
}

body.theme-events {
  --primary-pink: #7B7579;
  --light-pink: #A8A3A7;
  --pale-pink: #E7E6E7;
  --accent-gray: #9F9CA0;
  --accent-pink: #F0486D;
  background: #F5F4F5;
  color: var(--dark-gray);
}

body.theme-events .navbar {
  background: #E4E3E4;
  backdrop-filter: blur(8px);
}

body.theme-events .navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(123, 117, 121, 0.15);
}

body.theme-events .nav-link {
  color: #3F3A3D;
}

body.theme-events .nav-link:hover {
  color: #7B7579;
}

body.theme-events .contact-btn {
  background: #7B7579;
}

body.theme-events .contact-btn:hover {
  background: #9A9498;
}

body.theme-events .bar {
  background: #7B7579;
}

body.theme-events .formules {
  background: linear-gradient(135deg, #F2F1F2, #FFFFFF);
  padding: 8rem 0 6rem;
}

body.theme-events .section-title {
  color: var(--accent-pink);
}

body.theme-events .title-decoration {
  color: var(--accent-pink);
}

body.theme-events .formule-card {
  box-shadow: 0 12px 35px rgba(123, 117, 121, 0.12);
  border: 1px solid rgba(123, 117, 121, 0.05);
}

body.theme-events .formule-card:hover {
  box-shadow: 0 20px 45px rgba(123, 117, 121, 0.18);
}

body.theme-events .formule-card.featured {
  border-color: #7B7579;
}

body.theme-events .formule-card.featured::before {
  background: var(--accent-pink);
}

body.theme-events .card-header {
  background: linear-gradient(135deg, rgba(209, 140, 166, 0.2), rgba(123, 117, 121, 0.9));
}

body.theme-events .card-header h3 {
  color: #1F1B1D;
}

body.theme-events .card-icon {
  color: var(--accent-pink);
}

body.theme-events .result-text {
  color: #615B5F;
}

body.theme-events .reviews,
body.theme-events .gallery {
  background: #F5F4F5;
}

body.theme-events .events-formules-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

body.theme-events .formule-card.horizontal-card {
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
  max-width: 100%;
}

body.theme-events .formule-card.horizontal-card .card-header {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  border-right: 1px solid rgba(123, 117, 121, 0.08);
  align-items: center;
}

body.theme-events .formule-card.horizontal-card .card-header .card-icon {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

body.theme-events .formule-card.horizontal-card .card-content {
  flex: 1;
  padding: 2.5rem 3rem;
}

body.theme-events .review-quote,
body.theme-events .review-author {
  color: var(--accent-pink);
}

body.theme-events .review-dot.active {
  background: var(--accent-pink);
}

body.theme-events .review-dot {
  background: rgba(209, 140, 166, 0.35);
}

body.theme-events .gallery-track img:hover {
  box-shadow: 0 18px 40px rgba(209, 140, 166, 0.25);
}

body.theme-events .formule-price .price,
body.theme-events .option-intro-text {
  color: #1F1B1D;
}

body.theme-events .formule-price .price-note {
  color: #7B7579;
}

body.theme-events .feature-list i,
body.theme-events .option-features-list i {
  color: var(--accent-pink);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #F6CFD7;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1.2rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  overflow: visible;
}

.nav-logo img {
  height: 135px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo img {
  height: 135px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-pink);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-pink);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.contact-btn {
  background: var(--primary-pink);
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact-btn::after {
  display: none;
}

.contact-btn:hover {
  background: #F8BBD0;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--primary-pink);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 187, 208, 0.8), rgba(248, 187, 208, 0.6));
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 36rem;
}

.hero-logo {
  margin-bottom: 2rem;
}

.main-logo {
  font-family: 'Brittany Signature', 'Brittany Signature', cursive;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-subtitle {
  font-size: 1.2rem;
  letter-spacing: 3px;
  font-weight: 300;
  opacity: 0.9;
}

.decorative-elements {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1rem 0;
  font-size: 1.5rem;
  opacity: 0.8;
}

.hero-slogan {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  font-style: italic;
}

.quote-mark {
  font-size: 3rem;
  color: var(--light-pink);
  vertical-align: -10px;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-contact {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-info {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.contact-info:hover {
  transform: scale(1.05);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.cta-button:hover {
  background: white;
  color: var(--primary-pink);
  transform: translateY(-3px);
}

.hero-cta-button {
  background: var(--primary-pink);
  color: white;
  border-color: var(--primary-pink);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1.1rem 2.8rem;
  box-shadow: 0 12px 30px rgba(216, 27, 96, 0.35);
}

.hero-cta-button:hover {
  background: #F8BBD0;
  color: var(--primary-pink);
  border-color: #F8BBD0;
  box-shadow: 0 16px 40px rgba(248, 187, 208, 0.45);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Brittany Signature', 'Brittany Signature', cursive;
  font-size: 3rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

/* Use The Seasons for the Presentation section title */
.presentation .section-title {
  font-family: 'Brittany Signature', serif;
}

.title-decoration {
  font-size: 2rem;
  color: var(--light-pink);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.reviews {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--pale-pink), var(--white));
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(216, 27, 96, 0.1);
  background: white;
}

.reviews-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s ease;
}

.review-card {
  min-width: 100%;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.review-quote {
  font-size: 4rem;
  color: var(--primary-pink);
  line-height: 0.5;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1.2rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.7;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin: 1.5rem 0 1rem;
}

.review-stars i {
  color: var(--primary-pink);
  font-size: 1.2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.review-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(216, 27, 96, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.review-dot.active {
  background: var(--primary-pink);
  transform: scale(1.2);
}

.review-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-pink);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
}

.review-nav:hover {
  background: var(--accent-pink);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(216, 27, 96, 0.4);
}

.review-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.review-nav i {
  font-size: 1.2rem;
}

.review-nav-prev {
  left: 15px;
}

.review-nav-next {
  right: 15px;
}

@media (max-width: 768px) {
  .review-nav {
    width: 40px;
    height: 40px;
  }
  
  .review-nav i {
    font-size: 1rem;
  }
  
  .review-nav-prev {
    left: 10px;
  }
  
  .review-nav-next {
    right: 10px;
  }
}

.gallery {
  padding: 6rem 0 8rem;
  background: var(--white);
}

.gallery-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  background: white;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem;
  animation: galleryScroll 40s linear infinite;
  width: max-content;
  pointer-events: none;
}

.gallery-track img {
  width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  flex-shrink: 0;
}

.gallery-track img:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(216, 27, 96, 0.2);
}

.gallery-wrapper:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background: var(--primary-pink);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(216, 27, 96, 0.3);
}

.gallery-link-btn:hover {
  background: #F8BBD0;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(216, 27, 96, 0.4);
}

.gallery-link-btn i {
  transition: transform 0.3s ease;
}

.gallery-link-btn:hover i {
  transform: translateX(5px);
}

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

/* Full Gallery Page */
.full-gallery {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--pale-pink), var(--white));
  min-height: 100vh;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item img {
  cursor: zoom-in;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(216, 27, 96, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  display: none; /* Masquer la description */
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  user-select: none;
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Presentation Section */
.presentation {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--pale-pink), var(--white));
}

.presentation-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.profile-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(248, 187, 208, 0.2);
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.02);
}

.presentation-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.intro-text {
  margin-bottom: 2rem;
}

.commitments {
  margin-top: 2rem;
}

.commitments h3 {
  color: var(--primary-pink);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: 'The Seasons', serif;
}

.commitment-list {
  display: grid;
  gap: 1rem;
}

.commitment-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(248, 187, 208, 0.2);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.commitment-item:hover {
  transform: translateX(10px);
}

.commitment-item i {
  color: var(--primary-pink);
  font-size: 1.2rem;
  width: 20px;
}

.testimonial {
  background: rgba(248, 187, 208, 0.1);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  border-left: 5px solid var(--primary-pink);
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark-gray);
  position: relative;
  padding: 0 2rem;
}

.quote-large {
  font-size: 4rem;
  color: var(--light-pink);
  position: absolute;
}

.quote-large:first-child {
  top: -20px;
  left: -10px;
}

.quote-large:last-child {
  bottom: -40px;
  right: -10px;
}

.testimonial-date {
  margin-top: 1rem;
  color: var(--primary-pink);
  font-weight: 600;
}

/* Formules Section */
.formules {
  padding: 8rem 0 6rem;
  background: var(--white);
}

.formules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  justify-content: center;
}

@media (min-width: 1100px) {
  .formules-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.formules-grid > .formule-card {
  max-width: 360px;
  margin: 0 auto;
}

/* Options Table */
.options-table-container {
  max-width: 1000px;
  margin: 4rem auto 0;
  text-align: center;
}

.options-table-title {
  font-family: 'Brittany Signature', 'Brittany Signature', cursive;
  font-size: 2.5rem;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
}

.options-table-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.options-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(248, 187, 208, 0.15);
  margin: 0 auto;
}

.options-table thead {
  background: linear-gradient(135deg, #FCDEE8, #F8BBD0);
  color: white;
}

.options-table th {
  padding: 1.5rem 2rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.options-table tbody tr {
  border-bottom: 1px solid var(--pale-pink);
  transition: background-color 0.3s ease;
}

.options-table tbody tr:last-child {
  border-bottom: none;
}

.options-table tbody tr:hover {
  background-color: rgba(248, 187, 208, 0.1);
}

.options-table td {
  padding: 2rem;
  vertical-align: top;
}

.option-name {
  width: 30%;
  font-size: 1.1rem;
  color: var(--primary-pink);
  font-weight: 600;
  text-align: center;
}

.option-name i {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--light-pink);
}

.option-description {
  width: 70%;
  color: var(--dark-gray);
  line-height: 1.8;
}

.option-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.option-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.option-features-list i {
  color: var(--light-pink);
  margin-top: 3px;
  flex-shrink: 0;
}

.option-intro-text {
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--gray);
}

.formule-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.formule-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(248, 187, 208, 0.15);
}

.formule-card.horizontal {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin: 4rem auto 0;
  max-width: 960px;
}

.formule-card.horizontal .card-image {
  flex: 0 0 42%;
  height: auto;
}

.formule-card.horizontal .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.formule-card.horizontal .horizontal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.formule-card.horizontal .card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(248, 187, 208, 0.4);
}

.formule-card.horizontal .card-content {
  flex: 1;
}

/* Events horizontal cards */
.events-formules-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.formule-card.horizontal-card {
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
  max-width: 100%;
}

.formule-card.horizontal-card .card-header {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2.5rem;
  border-right: 1px solid rgba(248, 187, 208, 0.3);
  align-items: center;
}

.formule-card.horizontal-card .card-header .card-icon {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
}

.formule-card.horizontal-card .card-image {
  flex: 0 0 24%;
  height: auto;
  overflow: hidden;
}

.formule-card.horizontal-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.formule-card.horizontal-card .card-content {
  flex: 1;
  padding: 2.5rem 3rem;
}

.formule-card.featured {
  border-color: var(--primary-pink);
  position: relative;
}

.formule-card.featured::before {
  content: 'Recommandée';
  position: absolute;
  top: 22px;
  right: -20px;
  background: var(--primary-pink);
  color: white;
  padding: 6px 28px;
  transform: rotate(45deg);
  transform-origin: center;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.card-header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--pale-pink), var(--light-pink));
  position: relative;
}

.card-header .popular-badge {
  display: inline-block !important;
  position: absolute !important;
  top: 15px !important;
  right: 15px !important;
  background: var(--primary-pink);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  left: auto !important;
  z-index: 5;
}

.card-icon {
  font-size: 3rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
  width: 3rem;
  height: 3rem;
  display: inline-block;
  vertical-align: middle;
}

.card-header h3 {
  font-family: 'Brittany Signature', 'Brittany Signature', cursive;
  font-size: 2rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.card-subtitle {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.formule-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem;
}

.formule-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--pale-pink);
}

.formule-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-pink);
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.formule-price .price-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.formule-price .popular-badge {
  display: inline-block !important;
  position: static !important;
  background: var(--primary-pink);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
}

.card-content h4 {
  color: var(--primary-pink);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-family: 'The Seasons', serif;
}

.feature-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list i {
  color: var(--light-pink);
  margin-top: 3px;
  flex-shrink: 0;
}

.result-text {
  font-style: italic;
  color: var(--dark-gray);
  font-weight: 500;
  margin-top: 1rem;
}

.note {
  font-size: 0.9rem;
  color: var(--accent-gray);
  margin-top: 1rem;
}

/* Tarifs Section */
.tarifs {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-pink), #F8BBD0);
  color: white;
}

.tarifs .section-title {
  color: white;
}

.tarifs .title-decoration {
  color: rgba(255, 255, 255, 0.7);
}

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

.tarif-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.tarif-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.tarif-card.featured {
  border-color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.tarif-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.tarif-card h3 {
  font-family: 'Brittany Signature', 'Brittany Signature', cursive;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.9rem;
  opacity: 0.8;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--primary-pink);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Options Section */
.options {
  padding: 6rem 0;
  background: var(--pale-pink);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.option-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
}

.option-header {
  background: var(--primary-pink);
  color: white;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.option-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.option-price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.2rem;
}

.option-image {
  height: 250px;
  overflow: hidden;
}

.option-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.option-card:hover .option-image img {
  transform: scale(1.05);
}

.option-content {
  padding: 2rem;
}

.option-intro {
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--primary-pink);
}

.option-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.option-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.option-features i {
  color: var(--light-pink);
  margin-top: 3px;
}

/* Coaching Section */
.coaching {
  padding: 6rem 0;
  background: var(--white);
}

.coaching-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.coaching-questions {
  margin-bottom: 2rem;
}

.coaching-questions p {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--dark-gray);
}

.coaching-intro {
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--pale-pink);
  border-radius: 15px;
  border-left: 4px solid var(--primary-pink);
}

.coaching-services h3 {
  color: var(--primary-pink);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: 'The Seasons', serif;
}

.coaching-list {
  list-style: none;
  margin-bottom: 2rem;
}

.coaching-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.coaching-list i {
  color: var(--light-pink);
  margin-top: 3px;
}

.coaching-flexibility {
  margin-bottom: 2rem;
  font-style: italic;
}

.coaching-quote {
  background: linear-gradient(135deg, #FCDEE8, #F8BBD0);
  color: var(--dark-gray);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
}

.coaching-pricing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.coaching-price-card {
  text-align: center;
}

.coaching-price-card.featured {
  transform: scale(1.1);
}

.price-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-pink), #F8BBD0);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(248, 187, 208, 0.3);
  transition: transform 0.3s ease;
}

.price-circle:hover {
  transform: scale(1.05);
}

.price-circle .price {
  font-size: 2rem;
  font-weight: 700;
}

.price-circle .unit {
  font-size: 0.9rem;
  opacity: 0.9;
}

.coaching-price-card.featured .price-circle {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #F8BBD0, var(--primary-pink));
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--pale-pink), var(--light-pink));
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: #FDE7EF;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  width: 100%;
  box-sizing: border-box;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card i {
  font-size: 2rem;
  color: var(--primary-pink);
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card .zone-info {
  color: #DD3774;
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background: #FDE7EF;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  background: transparent;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 3px rgba(248, 187, 208, 0.1);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--gray);
  pointer-events: none;
  transition: all 0.3s ease;
  background: #FDE7EF;
  padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.5rem;
  font-size: 0.8rem;
  color: var(--primary-pink);
}

.submit-btn {
  width: 100%;
  background: var(--primary-pink);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  background: #F8BBD0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(248, 187, 208, 0.4);
}

/* Footer */
.footer {
  background: #7B7579;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo .logo-main {
  color: var(--primary-pink);
  font-size: 2rem;
}

.footer-logo .logo-sub {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--primary-pink);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

.footer-social a {
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  color: var(--primary-pink);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-slogan {
  color: var(--light-pink);
  font-style: italic;
  margin-top: 0.5rem;
}

.footer-credits {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-style: italic;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-pink);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(248, 187, 208, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #F8BBD0;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-contact {
    flex-direction: column;
    gap: 1rem;
  }
  
  .presentation-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .coaching-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  body.theme-events .formule-card.horizontal-card {
    flex-direction: column;
  }

  body.theme-events .formule-card.horizontal-card .card-header {
    flex: none;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid rgba(123, 117, 121, 0.08);
  }

  body.theme-events .formule-card.horizontal-card .card-content {
    padding: 2.5rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 60px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 110px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .main-logo {
    font-size: 3rem;
  }
  
  .hero-slogan {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .formules-grid {
    grid-template-columns: 1fr;
  }
  
  .formule-card.horizontal {
    flex-direction: column;
    max-width: 520px;
    margin: 3rem auto 0;
  }

  .formule-card.horizontal .card-image {
    flex: none;
    height: 260px;
  }

  .formule-card.horizontal .card-header {
    text-align: center;
  }

  .formule-card.horizontal-card {
    flex-direction: column;
  }

  .formule-card.horizontal-card .card-header {
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(248, 187, 208, 0.3);
    text-align: center;
    padding: 2rem;
  }

  .formule-card.horizontal-card .card-image {
    flex: none;
    height: 260px;
    order: 2;
  }

  .formule-card.horizontal-card .card-content {
    padding: 2rem;
    order: 3;
  }

  .options-table-container {
    margin: 2rem auto 0;
    padding: 0 20px;
  }
  
  .options-table-title {
    font-size: 2rem;
  }
  
  .options-table {
    display: block;
    overflow-x: auto;
  }
  
  .options-table thead {
    display: none;
  }
  
  .options-table tbody {
    display: block;
  }
  
  body.theme-events .formule-card.horizontal-card .card-header {
    padding: 2rem;
  }

  body.theme-events .formule-card.horizontal-card .card-content {
    padding: 2rem;
  }
  
  .options-table tbody tr {
    display: block;
    margin-bottom: 2rem;
    border: 1px solid var(--pale-pink);
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(248, 187, 208, 0.1);
  }
  
  .options-table td {
    display: block;
    width: 100% !important;
    padding: 1.5rem;
  }
  
  .option-name {
    background: linear-gradient(135deg, var(--primary-pink), #F8BBD0);
    color: white;
    padding: 1.5rem !important;
    margin-bottom: 0;
  }
  
  .option-name i {
    color: white;
  }
  
  .option-name strong {
    color: white;
  }
  
  .option-description {
    padding: 1.5rem !important;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .tarifs-grid {
    grid-template-columns: 1fr;
  }
  
  .coaching-pricing {
    flex-direction: row;
    justify-content: center;
  }

  .review-card {
    padding: 2.5rem 2rem;
  }

  .review-text {
    font-size: 1.05rem;
  }

  .gallery-track {
    gap: 1.5rem;
  }

  .gallery-track img {
    width: 220px;
    height: 150px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .main-logo {
    font-size: 2.5rem;
  }
  
  .hero-slogan {
    font-size: 1.2rem;
  }
  
  .hero-contact {
    gap: 0.5rem;
  }
  
  .contact-info a,
  .contact-info {
    font-size: 0.9rem;
  }
  
  .formule-card,
  .option-card {
    margin: 0 10px;
  }
  
  .coaching-pricing {
    flex-direction: column;
  }
  
  .price-circle {
    width: 120px;
    height: 120px;
  }
  
  .coaching-price-card.featured .price-circle {
    width: 140px;
    height: 140px;
  }

  .review-card {
    padding: 2rem 1.5rem;
  }

  .review-text {
    font-size: 1rem;
  }

  .gallery-track img {
    width: 180px;
    height: 130px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-link-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }

  .lightbox-prev {
    left: 1rem;
  }

  .lightbox-next {
    right: 1rem;
  }

  .lightbox-content img {
    max-height: 75vh;
  }

  .lightbox-caption {
    display: none; /* Masquer la description */
  }

  .footer-social {
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .footer-social a {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--primary-pink);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .navbar,
  .back-to-top {
    display: none;
  }
  
  .hero {
    height: auto;
    padding: 2rem 0;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
}