/********** Template CSS **********/
:root {
  --primary: #f9b800;
  --light: #f8fff3;
  --dark: #111a24;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semi-bold {
  font-weight: 600 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
}

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(135, 80, 109, 0.6); */
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header-inner {
  background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--light);
}

.booking {
  position: relative;
  margin-top: -100px !important;
  z-index: 1;
}

/*** Footer ***/
.newsletter {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  /* margin-top: -110px;
    padding-top: 180px; */
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}


.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

@media (max-width: 700px) {
  .cookie-wrapper {
    width: 100%;
  }
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  right: 0;
  width: 40%;
  background: #fff;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;

  @media (max-width: 600px) {
    width: 100%;
  }
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #f9b800;
  font-size: 32px;
  text-align: center;
}

header h2 {
  color: #f9b800;
  font-weight: 500;
  text-align: center;
}

.data {
  text-align: center;
}

.data p a {
  color: #f9b800;
  text-decoration: none;
  text-align: center !important;
}

.data p a:hover {
  text-decoration: underline;
}

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #f9b800;
  color: #fff;
  padding: 8px 0;
  background: #f9b800;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.5s ease;
  max-width: 150px;
  border-radius: 0;
}

.buttons #acceptBtn:hover {
  background-color: transparent;
  color: #f9b800;
}

#declineBtn {
  background-color: #fff;
  color: #f9b800;
}

#declineBtn:hover {
  background-color: #f9b800;
  color: #fff;
}



  /* new styles  */

  :root {
    --dark-bg: #8a650d;
    --light-bg: #F8F9FA;
    --accent: #f9b800;
    --accent-hover: #df9a07;
    --auxiliary: #934cbf;
    --light-text: #E1E1E1;
    --dark-text: #3a2b42;
    --white: #FFFFFF;
    --light-gray: #ECECEC;
}

 /* Footer styles */
 .footer {
  padding-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--auxiliary));
}

.footer .brand-link {
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer .brand-link:hover {
  color: var(--accent);
}

.footer .brand-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer .brand-link:hover::after {
  width: 100%;
}

.footer .btn-link {
  display: block;
  text-align: left;
  color: var(--light-text);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer .btn-link::before {
  content: '';
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.footer .btn-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer .btn-link:hover::before {
  width: 20px;
}

.footer .contact-email {
  color: var(--light-text);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer .contact-email:hover {
  color: var(--accent);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  .footer {
      padding-top: 3rem;
  }
  
  .footer .brand-link {
      margin-bottom: 1.5rem;
      display: inline-block;
  }
  
  .footer .contact-info {
      margin-top: 1.5rem;
  }
}

/* new styles  */
/* Styles généraux */
:root {
  --background-color: #f3f3f3;
  --text-color: #3c3c3c;
  --accent-color: #8a650d;
  --light-accent: rgba(138, 101, 13, 0.1);
  --header-height: 80px;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}



h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-color);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  padding: 12px 30px;
}

.btn-accent:hover {
  background-color: #76560b;
  color: white;
  transform: translateY(-2px);
}

/* Styles pour le header */
.site-header {
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: var(--shadow);
  transition: var(--transition);
  padding-top: 10px;
}

.site-header.scrolled {
  height: 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  position: relative;
}

.site-logo span {
  color: var(--accent-color);
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link:focus, .nav-link.active {
  color: var(--accent-color);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover:after, .nav-link:focus:after, .nav-link.active:after {
  width: 30px;
}

/* Styles pour le bloc principal (hero) */
.hero-section {
  background-color: white;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-color: var(--light-accent);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 600px;
}

.hero-title span, .highlight {
  color: var(--accent-color);
  position: relative;
}

.hero-image-container {
  position: relative;
  z-index: 2;
}

.hero-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--light-accent);
  border-radius: 50%;
  top: -30px;
  left: -30px;
  z-index: -1;
}

.hero-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 80px 0;
  }
  
  .hero-section::before {
    width: 100%;
    clip-path: polygon(0 80%, 100% 60%, 100% 100%, 0 100%);
    height: 50%;
    top: auto;
    bottom: 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image-container {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-section {
    padding: 180px 0;
  }
}
/* Styles pour le bloc À propos de nous */
.about-section {
  padding: 100px 0;
  position: relative;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--light-accent);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 70%);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.about-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent-color);
}

.about-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
}

.about-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--accent-color);
  opacity: 0.15;
  font-size: 3rem;
}

/* Styles pour le bloc Nos programmes */
.programs-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.programs-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.programs-section::after {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 100px;
  height: 100px;
  background-color: var(--light-accent);
  border-radius: 50%;
  z-index: 1;
}

.program-card {
  border-radius: 8px;
  background-color: var(--background-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.program-card-header {
  background-color: var(--accent-color);
  color: white;
  padding: 20px;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.program-card-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}

.program-card-body {
  padding: 25px;
}

.program-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.program-feature-icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 1.25rem;
}

.program-feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.program-feature-text p {
  margin: 0;
  font-size: 0.95rem;
}

.program-number {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

.program-cta {
  margin-top: 20px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .about-section, .programs-section {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-card {
    margin-bottom: 30px;
  }
  
  .program-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .about-card-title {
    font-size: 1.3rem;
  }
  
  .program-card-header h3 {
    font-size: 1.3rem;
  }
}

/* Styles pour le bloc Nos formules d'abonnement */
.pricing-section {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: 0;
  left: 0;
  height: 100px;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
}

.pricing-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  position: relative;
  z-index: 2;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  padding: 30px 25px;
  text-align: center;
  position: relative;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.pricing-subtitle {
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.pricing-img-container {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.pricing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.pricing-card:hover .pricing-img {
  transform: scale(1.05);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 25px 0 15px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-features {
  padding: 30px 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pricing-feature:last-child {
  margin-bottom: 0;
}

.pricing-feature-icon {
  color: var(--accent-color);
  margin-right: 15px;
  flex-shrink: 0;
}

.pricing-cta {
  padding: 0 25px 30px;
  text-align: center;
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--accent-color);
  color: white;
  font-size: 0.8rem;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 500;
  z-index: 2;
}

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(138, 101, 13, 0.2), transparent);
}

.testimonial-card {
  background-color: var(--background-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .pricing-section, .testimonials-section {
    padding: 70px 0;
  }
  
  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }
  
  .pricing-title {
    font-size: 1.3rem;
  }
  
  .testimonial-card {
    margin-bottom: 30px;
  }
}

/* Styles pour le bloc Avantages */
.advantages-section {
  padding: 100px 0;
  position: relative;
  background-color: white;
}

.advantages-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: var(--light-accent);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.advantages-content {
  position: relative;
  z-index: 2;
}

.advantages-image-container {
  position: relative;
  margin-bottom: 30px;
}

.advantages-image {
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
}

.advantage-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: var(--light-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.advantage-icon span {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.advantage-text h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.advantage-text p {
  margin: 0;
  line-height: 1.6;
}

/* Styles pour le bloc Appel à l'action */
.cta-section {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-image-container {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-text {
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}

.cta-section.image-right .cta-text {
  margin-right: -50px;
}

.cta-section.image-left .cta-text {
  margin-left: -50px;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-description {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* Styles pour le bloc Contacts */
.contact-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background-color: var(--light-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.contact-icon span {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-details p, .contact-details a {
  margin: 0;
  line-height: 1.6;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--light-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: var(--transition);
  color: var(--accent-color);
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
}

/* Styles pour le formulaire */
.form-section {
  padding: 0 0 100px;
  background-color: white;
}

.form-container {
  background-color: var(--background-color);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-title {
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
}

.form-floating {
  margin-bottom: 20px;
}

.form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 15px;
  height: auto;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(138, 101, 13, 0.25);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #76560b;
  border-color: #76560b;
  transform: translateY(-2px);
}

/* Media queries */
@media (max-width: 991.98px) {
  .advantages-section, .cta-section, .contact-section, .form-section {
    padding: 70px 0;
  }
  
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .cta-section.image-right .cta-text,
  .cta-section.image-left .cta-text {
    margin-right: 0;
    margin-left: 0;
    margin-top: 30px;
  }
  
  .cta-image-container {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .cta-title {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
}
:root {
  --primary: #1d3557;
  --secondary: #457b9d;
  --accent: #e63946;
  --background: #f1faee;
  --surface: #ffffff;
  --text-base: #2e2e2e;
  --text-light: #6e6e6e;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --font-family: "Helvetica Neue", Arial, sans-serif;
}

/* global reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
  color: var(--text-base);
}

body {
  background-color: var(--background);
  line-height: 1.6;
}

/* buttons */
.btn-accent {
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.btn-accent:hover {
  background-color: #cb2f3b;
  transform: translateY(-2px);
}

/* header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--surface);
  box-shadow: var(--shadow);
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  z-index: 1000;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-link {
  margin-left: 2rem;
  color: var(--text-base);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* hero */
.hero-section {
  background: var(--surface);
  padding: 140px 2rem 80px;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* about */
.about-section {
  background: var(--surface);
  padding: 80px 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.5rem;
}

.about-card {
  background: var(--background);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-5px);
}

/* programs */
.programs-section {
  background: var(--background);
  padding: 80px 2rem;
}

.program-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.program-card-header {
  background: var(--primary);
  color: #fff;
  padding: 1rem;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.program-card-body {
  padding: 1.5rem;
}

.program-card:hover {
  transform: translateY(-5px);
}

/* pricing */
.pricing-section {
  background: var(--surface);
  padding: 80px 2rem;
}

.pricing-card {
  background: var(--background);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

/* testimonials */
.testimonials-section {
  background: var(--background);
  padding: 80px 2rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

/* advantages */
.advantages-section {
  background: var(--surface);
  padding: 80px 2rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.advantage-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-right: 1rem;
}

/* cta */
.cta-section {
  background: var(--accent);
  color: #fff;
  padding: 80px 2rem;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* contact */
.contact-section {
  background: var(--surface);
  padding: 80px 2rem;
}

.contact-method {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-right: 1rem;
}

/* footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 4rem 2rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.footer .brand-link {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer .btn-link {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer .btn-link:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer .contact-email {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.footer .social-link {
  display: inline-block;
  margin-right: 1rem;
  color: #fff;
  font-size: 1.25rem;
  transition: var(--transition);
}

.footer .social-link:hover {
  color: var(--accent);
  transform: translateY(-3px);
}

.footer .copyright {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

/* responsiveness */
@media (max-width: 768px) {
  .site-header { padding: 0 1rem; }
  .hero-title { font-size: 2.5rem; }
  .programs-section,
  .about-section,
  .pricing-section,
  .testimonials-section,
  .advantages-section,
  .contact-section {
    padding: 60px 1rem;
  }
}
/* Styles personnalisés pour le bloc CTA */
#cta {
  background: var(--surface);
  padding: 80px 2rem;
}
.cta-wrapper {
}
.cta-figure {
  text-align: center;
}
.cta-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.cta-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}
.cta-text {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.cta-actions .btn-accent {
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
}
@media (max-width: 767.98px) {
  .cta-wrapper {
    flex-direction: column-reverse;
  }
  .cta-title {
    text-align: center;
  }
  .cta-actions {
    text-align: center;
  }
}
/* Ajout d’un fond coloré pour le bloc CTA */
#cta {
  background-color: var(--secondary);
  padding: 80px 2rem;
  color: #fff;
}

.cta-wrapper,
.cta-figure,
.cta-body {
  color: inherit;
}

.cta-title {
  color: #fff;
}

.cta-text,
.cta-list li {
  color: rgba(255, 255, 255, 0.85);
}

.cta-list li::marker {
  color: var(--accent);
}

.cta-actions .btn-accent {
  background-color: var(--accent);
  color: #fff;
}

.cta-actions .btn-accent:hover {
  background-color: #d85735;
}
#programs {
  background: var(--background);
  padding: 80px 2rem;
}
.programs-section .section-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.programs-section .lead {
  color: var(--text-light);
  font-size: 1.1rem;
}
.program-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
}
.program-card:hover {
  transform: translateY(-5px);
}
.program-card.featured {
  border: 2px solid var(--accent);
}
.card-header {
  background: var(--primary);
  color: #fff;
  padding: 1.5rem;
  position: relative;
}
.program-step {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.card-header h3 {
  margin: 0;
  font-size: 1.25rem;
}
.features-list {
  list-style: none;
  padding: 1.5rem;
}
.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-base);
}
.features-list li:last-child {
  margin-bottom: 0;
}
.features-list .material-icons {
  margin-right: 0.75rem;
  color: var(--accent);
}
.btn-accent.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1rem;
}
@media (max-width: 767.98px) {
  #programs {
    padding: 60px 1rem;
  }
}
/* Styles personnalisés pour Bloc 4 : offres d'abonnement */
#plans {
  background: var(--background);
  padding: 80px 2rem;
}
#plans .section-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
#plans .lead {
  color: var(--text-light);
  font-size: 1.1rem;
}
.pricing-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-card.featured {
  border: 2px solid var(--accent);
}
.pricing-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 0.75rem;
  font-size: 0.85rem;
  border-radius: var(--border-radius);
  text-transform: uppercase;
}
.pricing-card .card-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pricing-card .card-header h3 {
  margin: 0 0 0.25rem;
  color: var(--primary);
  font-size: 1.25rem;
}
.pricing-card .card-subtitle {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}
.pricing-card .price-tag {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 1rem 0;
}
.pricing-card .price-tag span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}
.pricing-card .feature-list {
  list-style: none;
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-card .feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-base);
}
.pricing-card .feature-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.pricing-card .card-footer {
  text-align: center;
  padding: 1rem 1.5rem 1.5rem;
}
.pricing-card .btn-plan {
  background: var(--surface);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.6rem 1.2rem;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.pricing-card .btn-plan:hover {
  background: var(--primary);
  color: #fff;
}
.pricing-card.featured .btn-plan {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pricing-card.featured .btn-plan:hover {
  background: #d85735;
}

/* Responsive */
@media (max-width: 767.98px) {
  #plans {
    padding: 60px 1rem;
  }
  .pricing-card .feature-list li {
    font-size: 0.95rem;
  }
}
:root {
  --font-base: 18px;
  --font-lead: 1.125rem;    /* ~20px */
  --font-h2: 2.5rem;        /* ~45px */
  --font-h3: 1.75rem;       /* ~31px */
  --font-price: 2.25rem;    /* ~40px */
}

/* Base font */
body {
  font-size: var(--font-base);
}

/* Section titles */
#plans .section-title {
  font-size: var(--font-h2);
}

/* Lead paragraph */
#plans .lead {
  font-size: var(--font-lead);
}

/* Card subtitles and list items */
.pricing-card .card-subtitle,
.pricing-card .feature-list li {
  font-size: 1rem; /* ~18px */
}

/* Card headers */
.pricing-card .card-header h3 {
  font-size: var(--font-h3);
}

/* Price tag */
.pricing-card .price-tag {
  font-size: var(--font-price);
}

/* Buttons */
.pricing-card .btn-plan {
  font-size: 1rem; /* ~18px */
  padding: 0.75rem 1.5rem;
}
/* Styles personnalisés pour Bloc 5 : Témoignages */
#reviews {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: #fff;
  padding: 80px 2rem;
}

.testimonials-section .section-title,
.testimonials-section .lead {
  color: #fff;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.testimonial-quote {
  font-size: 3rem;
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #fff;
}

.testimonial-rating .rating-star {
  color: var(--accent);
}

.testimonial-text {
  margin: 1.5rem 0;
  font-style: italic;
  line-height: 1.6;
  color: #f0f0f0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.testimonial-author-name,
.testimonial-author-title {
  color: #fff;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.9;
}
/* Styles personnalisés : vantanges en grille pleine largeur */
.advantages-section {
  background: var(--surface);
  padding: 80px 2rem;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.advantage-item {
  background: var(--background);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.advantage-icon .material-icons {
  color: #fff;
  font-size: 24px;
}

.advantage-text h4 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.advantage-text p {
  margin: 0;
  color: var(--text-base);
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .advantages-section {
    padding: 60px 1rem;
  }
}
/* Styles personnalisés : Bloc Contacts */
.contact-section {
  background: var(--surface);
  padding: 80px 2rem;
}
.contact-section .section-title {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.contact-section .lead {
  color: var(--text-light);
  font-size: 1.125rem;
}
.contact-info .contact-method {
  align-items: start;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.contact-icon .material-icons {
  color: #fff;
  font-size: 24px;
}
.contact-details h4 {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  color: var(--primary);
}
.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--text-base);
  text-decoration: none;
}
.contact-details a:hover {
  color: var(--accent);
}
.form-container {
  background: var(--background);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.form-title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}
.form-control {
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 1rem;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(230,111,81,0.25);
}
.form-error {
  color: #e63946;
  font-size: 0.875rem;
  height: 1em;
}
.btn-accent.w-100 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 991.98px) {
  .contact-section {
    padding: 60px 1rem;
  }
}
/* Styles personnalisés pour le Footer */
.footer {
  background-color: #111a24; /* Fond sombre */
  color: #e1e1e1;
  padding: 3rem 2rem 1rem;
}

.footer .brand-link {
  color: #ffffff;
}

.footer .btn-link {
  color: #e1e1e1;
}

.footer .btn-link:hover {
  color: var(--accent);
}

.footer .contact-email {
  color: #e1e1e1;
}

.footer .contact-email .material-icons {
  color: var(--accent);
}

.footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer .copyright p {
  color: #6e6e6e;
}
/* Styles personnalisés pour la bannière de cookies */
.cookie-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 350px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-wrapper.show {
  transform: translateY(0);
  transition: transform 0.3s ease-in;
}

.cookie-wrapper h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0;
}

.cookie-wrapper .data p {
  font-size: 0.9rem;
  color: var(--text-base);
  line-height: 1.4;
}

.cookie-wrapper .data a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-wrapper .buttons {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cookie-button {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
}

#declineBtn {
  background: var(--surface);
  color: var(--primary);
}

.cookie-button:hover {
  opacity: 0.9;
}

#declineBtn:hover {
  background: var(--primary);
  color: #fff;
}
/* Ajout de fond pour le bloc Hero */
.hero-section {
  position: relative;
  padding: 140px 2rem 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  overflow: hidden;
}

.hero-section .hero-content,
.hero-section .hero-subtitle,
.hero-section .btn-accent {
  color: #fff;
}

.hero-section .btn-accent {
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--primary);
  transition: background-color 0.3s ease;
}

.hero-section .btn-accent:hover {
  background-color: #fff;
}

.hero-pattern {
  display: none; /* Masquer le pattern s'il entre en conflit avec le gradient */
}

.hero-image-container .hero-image {
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
}

/* Option pour afficher une image de fond sous le gradient :
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}
.hero-section > .container {
  position: relative;
  z-index: 1;
}
*/
/* Assurer la couleur blanche des textes dans la Hero */
.hero-section,
.hero-section .hero-content,
.hero-section .hero-title,
.hero-section .hero-title span,
.hero-section .hero-subtitle {
  color: #fff !important;
}

.hero-section .btn-accent {
  background-color: #fff;
  color: var(--primary);
}

.hero-section .btn-accent:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.hero-section .btn-accent {
  background-color: var(--accent) !important;
  color: #fff !important;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section .btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}
