@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Exo 2",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Press Start 2P",  sans-serif;
  --nav-font: "Press Start 2P",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #0f172a; /* Background color for the entire website, including individual sections */
  --default-color: #f5f5f5; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fafafa; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e5cf51; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1f283d; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #0f172a; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --danger-color-rgb: 129, 30, 24;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #f5f5f5;  /* The default color of the main navmenu links */
  --nav-hover-color: #e5cf51; /* Applied to main navmenu links when they are hovered over or active */
  --nav-background-color: #1c2c50; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1c2c50; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #f5f5f5; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e5cf51; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1c253b;
  --surface-color: #28334b;
}

.dark-background {
  --background-color: #00040d;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0f172a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Email Form Messages
------------------------------*/
.form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.form .sent-message,
.form .success-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: form-loading 1s linear infinite;
}

@keyframes form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background-color: color-mix(in srgb, var(--surface-color), transparent 100%);
  border-radius: 50px;
  padding: 0px 25px;
  transition: all 0.3s ease;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 100px;
  margin-left: 30px;
}

.header .sitename {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
  }

  .header .sitename {
    display: none;
  }
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding-left: 6px;
  display: inline-block;
  transition: 0.3s;
  font-size: 24px;
}

.header .header-social-links a:hover {
  color: var(--accent-color);
}

.header .header-social-links a i {
  line-height: 0px;
}

/*--------------------------------------------------------------
/* Global Header on Scroll
------------------------------*/
.scrolled .header .header-container {
  background-color: color-mix(in srgb, var(--surface-color), transparent 5%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.nav-toggle {
  color: var(--nav-color);
  font-size: 28px;
  line-height: 0;
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.offcanvas {
  margin-bottom: 30px;
  margin-top: 30px;
  margin-left: 20px;
  border-radius: 16px;
  height: 580px;
  background-color: var(--surface-color);
}

@media (max-width: 1200px) {
  .offcanvas {
    margin-right: 200px;
  }
}

.offcanvas ul {
  list-style: none;
}

.menu-item {
  display: flex;
  align-items: center; /* aligne verticalement */
  gap: 20px; /* espace entre logo et texte */
  padding-top: 8px;
  padding-bottom: 8px;
}

.menu-item img {  
  height: 40px;
  width: 40px;
}

.menu-item a {
  font-family: 'Press Start 2P', cursive;
  text-decoration: none;
}

.offcanvas a {
  font-family: var(--nav-font);
  color: white;
}

.offcanvas a:hover {
  color: var(--accent-color);
}

.offcanvas .active {
  color: var(--nav-hover-color);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
  padding: 60px 0 0 0;
  font-size: 15px;
}

.footer .footer-top {
  padding-bottom: 40px;
}

.footer h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-weight: 700;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer a {
  color: var(--default-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);  
}

.footer #footer-contact {
  display: inline-flex;
  align-items: center;
  justify-content: space-around;
  width: 90%;
  margin: auto;
  padding: 16px 16px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 1.3rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 768px) {
  .footer #footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.footer #footer-contact div {
  display: inline-flex;
}

.footer #footer-contact div a {
  color: var(--contrast-color);
  margin-bottom: 0px;
}

.footer #footer-contact div i {
  margin-right: 10px;
}

.footer .footer-info p {
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer .social-links {
  display: flex;
  margin-top: 25px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--background-color);
  background-color: var(--accent-color);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

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

.footer .footer-links li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links li:first-child {
  padding-top: 0;
}

.footer .footer-links li i {
  font-size: 12px;
  color: var(--accent-color);
  margin-right: 8px;
  line-height: 0;
}

.footer .footer-links li a {
  color: var(--default-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer .footer-newsletter p {
  margin-bottom: 15px;
}

.footer .footer-newsletter form {
  position: relative;
  margin-bottom: 30px;
}

.footer .footer-newsletter form input[type=email] {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 10px 15px;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .footer-newsletter form input[type=email]:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 75%);
  outline: none;
}

.footer .footer-newsletter form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.footer .footer-newsletter form button {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 15px;
  height: 44px;
  border-radius: 0 4px 4px 0;
  transition: 0.3s;
}

.footer .footer-newsletter form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-newsletter .opening-hours {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 20px;
}

.footer .footer-newsletter .opening-hours h5 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.footer .footer-newsletter .opening-hours h5 i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 18px;
}

.footer .footer-newsletter .opening-hours p {
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 992px) {

  .footer .footer-info,
  .footer .footer-links,
  .footer .footer-newsletter {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-links li {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-details {
  text-align: center;
  padding-top: 60px;
}

.section-details p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

.action-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .action-area {
    gap: 24px;
  }
}

.action-area .btn-primary-action {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.action-area .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.carousel-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.hero .content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 40px;
}

@media (max-width: 992px) {
  .hero .content-wrapper {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero .content-wrapper {
    padding-top: 80px;
    padding-bottom: 32px;
  }
}

.hero .main-content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .hero .main-content {
    padding-right: 0;
    margin-bottom: 48px;
    text-align: center;
  }
}

.hero .main-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

@media (max-width: 1200px) {
  .hero .main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .hero .main-title {
    font-size: 2.2rem;
  }
}

.hero .main-description {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 32px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 540px;
}

@media (max-width: 992px) {
  .hero .main-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero .main-description {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro {
  position: relative;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.intro .video-block iframe {
  border-radius: 16px;
}

.intro .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 48px;
}

.intro .section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.intro h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--heading-color);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .intro h2 {
    font-size: 1.875rem;
  }
}

.intro .intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.intro .feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.intro .feature-item {
  display: flex;
  gap: 20px;
}

.intro .feature-item .feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), #000000 20%) 100%);
  border-radius: 12px;
}

.intro .feature-item .feature-icon i {
  font-size: 1.375rem;
  color: var(--contrast-color);
}

.intro .feature-item .feature-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 6px 0;
}

.intro .feature-item .feature-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

/*--------------------------------------------------------------
# Formules Section
--------------------------------------------------------------*/
.formules {
  padding: 80px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.formules .formule-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
}

.formules .formule-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}

.formules .formule-card .formule-header {
  padding: 30px 25px 25px;
  text-align: center;
  background: linear-gradient(145deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
}

.formules .formule-card .formule-header .formule-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.formules .formule-card .formule-header .formule-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.formules .formule-card .formule-header .formule-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.formules .formule-card .formule-header .price-section {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.formules .formule-card .formule-header .price-section .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
}

.formules .formule-card .formule-header .price-section .amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
}

.formules .formule-card .formule-header .formule-subtitle {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-style: italic;
}

.formules .formule-card .formule-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 370px;
  padding: 25px;  
}

.formules .formule-card .formule-body .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.formules .formule-card .formule-body .benefits-list li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  font-size: 14px;
}

.formules .menu-item img {  
  object-fit:contain;
}

.formules .formule-card .formule-body .benefits-list li:last-child {
  border-bottom: none;
}

.formules .formule-card .formule-body .benefits-list li i {
  margin-right: 12px;
  font-size: 16px;
  width: 16px;
  text-align: center;
}

.formules .formule-card .formule-body .benefits-list li i.bi-check2 {
  color: #28a745;
}

.formules .formule-card .formule-body .benefits-list li i.bi-x {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.formules .formule-card .formule-body .formule-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  color: var(--contrast-color);
  text-align: center;
  padding: 14px 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
}

.formules .formule-card .formule-body .formule-btn:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 768px) {
  .formules .formule-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# reviews Section
--------------------------------------------------------------*/
.reviews {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.reviews .reviews-slider-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 50px 0;
}

.reviews-slider-wrapper .swiper-wrapper {
  transition-timing-function: linear !important;  
  align-items: flex-start !important;
  padding: 0 50px;       /* espace horizontal pour hover */
  margin: 0 -50px;       /* compense le padding */
}

.reviews-slider-wrapper .swiper-slide {
  width: 350px;
  height: auto;
  display: block;
}

.reviews .review-card,
.admin-reviews .review-card {
  height: auto;
  display: flex;
  flex-direction: column;
  background: var(--surface-color);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.reviews .review-card:hover,
.admin-reviews .review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.review-card.paused {
  border-color: var(--accent-color);
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.reviews .rating,
.admin-reviews .rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.reviews .rating i,
.admin-reviews .rating i {
  color: #ffc107;
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px color-mix(in srgb, #ffc107, transparent 60%));
}

.reviews blockquote,
.admin-reviews blockquote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--default-color);
  margin: 0 0 2rem 0;
  position: relative;
  font-style: italic;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.reviews blockquote::before,
.admin-reviews blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 4rem;
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  font-family: Georgia, serif;
  line-height: 1;
}

.reviews .user-profile,
.admin-reviews .user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.reviews .user-info,
.admin-reviews .user-info {
  flex: 1;
}

.reviews .user-info h4,
.admin-reviews .user-info h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
}

@media (max-width: 1199.98px) {
  .reviews .review-card,
  .admin-reviews .review-card {
    padding: 2rem;
  }

  .reviews .review-card.featured,
  .admin-reviews .review-card.featured {
    transform: scale(1.02);
  }

  .reviews blockquote,
  .admin-reviews blockquote {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .reviews .review-card,
  .admin-reviews .review-card {
    padding: 1.5rem;
  }

  .reviews .review-card:hover,
  .admin-reviews .review-card:hover {
    transform: translateY(-8px);
  }

  .reviews blockquote,
  .admin-reviews blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .reviews blockquote::before,
  .admin-reviews blockquote::before {
    font-size: 3rem;
    top: -0.75rem;
  }

  .reviews .user-info h4,
  .admin-reviews .user-info h4 {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery .gallery-card {
  position: relative;
}

.gallery .gallery-card.featured {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery .gallery-card.featured {
    grid-row: span 1;
  }
}

.gallery .gallery-card.featured .gallery-figure {
  height: 100%;
}

.gallery .gallery-card.featured .gallery-figure img {
  height: 100%;
  object-fit: cover;
}

.gallery .gallery-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 90%);
}

.gallery .gallery-figure img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

@media (max-width: 576px) {
  .gallery .gallery-figure img {
    height: 280px;
  }
}

.gallery .gallery-figure:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.gallery .gallery-figure:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery .gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.4s ease;
}

.gallery .gallery-number {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
  opacity: 0;
  transform: translateX(-16px);
  transition: all 0.4s ease 0.1s;
  text-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 50%);
}

@media (max-width: 576px) {
  .gallery .gallery-number {
    font-size: 36px;
  }
}

.gallery .gallery-actions {
  display: flex;
  gap: 8px;
}

.gallery .action-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.gallery .action-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  color: var(--contrast-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 576px) {
  .gallery .action-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.glightbox-clean .gslide-description {
  background: color-mix(in srgb, var(--default-color), transparent 10%);
}

.glightbox-clean .gslide-title {
  color: var(--contrast-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container .form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Autre Section
--------------------------------------------------------------*/
.all-page .hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background-color: white;
}

.all-page .hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.all-page .hero .content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 60vh;
  padding-top: 80px;
  padding-bottom: 40px;
}

.all-page .header .header-container {
  background-color: color-mix(in srgb, var(--surface-color), transparent 100%);
  transition: all 0.3s ease;
}

.scrolled.all-page .header .header-container  {
  background-color: color-mix(in srgb, var(--surface-color), transparent 5%) !important;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Nos Formules Section
--------------------------------------------------------------*/
.nos-formules {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.nos-formules .offer-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nos-formules .offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 86%);
}

.nos-formules .offer-card:hover .offer-image img {
  transform: scale(1.05);
}


.nos-formules .offer-card:hover .view-offer-link {
  color: var(--accent-color);
}

.nos-formules .offer-card:hover .view-offer-link i {
  transform: translateX(4px);
}

.nos-formules .offer-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.nos-formules .offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nos-formules .offer-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nos-formules .offer-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.nos-formules .offer-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color) 75%, transparent);
  margin-bottom: 16px;
  flex-grow: 1;
}

.nos-formules .offer-content .view-offer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.nos-formules .offer-content .view-offer-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.nos-formules .offer-content .view-offer-link:hover {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .nos-formules .offer-image {
    height: 220px;
  }

  .nos-formules .offer-content {
    padding: 20px;
  }

  .nos-formules .offer-content h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .nos-formules .offer-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .nos-formules .offer-image {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .nos-formules .offer-image {
    height: 180px;
  }

  .nos-formules .offer-content {
    padding: 18px;
  }

  .nos-formules .offer-content h4 {
    font-size: 17px;
  }

  .nos-formules .offer-content p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Détails Formule / Event / Blog, Ambiances et Qui suis-je Sections
--------------------------------------------------------------*/
.offer-details,
.atmosphere,
.about,
.details-event,
.details-blog-post {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.gallery-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 92%);
}

.prestation-swiper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.offer-details .content-section,
.atmosphere .content-section,
.about .content-section,
.details-event .content-section,
.details-blog-post .content-section {
  margin-bottom: 2.5rem;
}

.offer-details .content-section .section-title-bar,
.atmosphere .content-section .section-title-bar,
.details-event .content-section .section-title-bar,
.details-blog-post .content-section .section-title-bar {
  background: var(--accent-color);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.details-blog-post .section-title {
  padding-top: 40px;
  padding-bottom: 40px;
}

.offer-details .content-section .section-title-bar h3,
.atmosphere .content-section .section-title-bar h3,
.details-event .content-section .section-title-bar h3,
.details-blog-post .content-section .section-title-bar h3 {
  font-size: 1.5rem;
  color: var(--contrast-color);
  margin: 0;
}

.offer-details .content-section .section-body p,
.atmosphere .content-section .section-body p,
.about .content-section .section-body p ,
.details-event .content-section .section-body p,
.details-blog-post .content-section .section-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .content-section .section-body img {
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.offer-details ul,
.atmosphere ul,
.about ul,
.details-event ul,
.details-blog-post ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-details li,
.atmosphere li,
.about li,
.details-event li,
.details-blog-post li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.offer-details li:first-child,
.atmosphere li:first-child,
.about li:first-child,
.details-event li:first-child,
.details-blog-post li:first-child {
  padding-top: 0;
}

.offer-details li i,
.atmosphere li i,
.about li i,
.details-event li i,
.details-blog-post li i {
  font-size: 12px;
  color: var(--accent-color);
  margin-right: 8px;
  line-height: 0;
}

.offer-details li,
.atmosphere li,
.about li,
.details-event li,
.details-blog-post li {
  color: var(--default-color);
}

.faq-container {
  margin-top: 15px;
}

.faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 8px;
}

.faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-container .faq-item h3 {
  font-family: "Exo 2";
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-container .faq-item .faq-content p,
.faq-container .faq-item .faq-content ul {
  margin-bottom: 0;
  overflow: hidden;
}

.faq-container .faq-item .faq-content ul i {
  color: var(--contrast-color);
}

.faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq-container .faq-active h3,
.faq-container .faq-active h3:hover,
.faq-container .faq-active p,
.faq-container .faq-active li,
.faq-container .faq-active .faq-toggle,
.faq-container .faq-active .faq-icon,
.faq-container .faq-active .faq-content {
  color: var(--contrast-color) !important;
}

.faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

.details-event .content-section img,
.details-blog-post .content-section img {
  max-width: 500px;
  margin: auto;
  border-radius: 8px;
}

.details-event #cover-image,
.details-blog-post #cover-image {
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 16px;
}

.details-event .glightbox img,
.details-blog-post .glightbox img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.details-event .glightbox img:hover,
.details-blog-post .glightbox img:hover {
  transform: scale(1.03);
}

/*--------------------------------------------------------------
# Nos Ambiances Section
--------------------------------------------------------------*/
.atmosphere-swiper img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 16px;
}

/*--------------------------------------------------------------
# Évènements Sections
--------------------------------------------------------------*/
.events {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

/*--------------------------------------------------------------
# Blog Sections
--------------------------------------------------------------*/
.blog-posts {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.blog-posts {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.blog-posts .card {
  background-color: var(--surface-color);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-posts .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.blog-posts .card img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.blog-posts .card .section-body {
  padding: 16px 32px;
}

.blog-posts .card .section-body p {
  color: white;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Formulaires Section
--------------------------------------------------------------*/
.reservation,
.new-event,
.modify-event,
.new-blog-post,
.modify-blog-post,
.new-review,
.modify-review {
  background-color: color-mix(in srgb, var(--background-color), var(--surface-color) 5%);
}

.form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.reservation .event-info,
.new-event .new-event-title,
.modify-event .modify-event-title,
.new-blog-post .new-blog-post-title,
.modify-blog-post .modify-blog-post-title,
.new-review .new-review-title,
.modify-review .modify-review-title {
  text-align: center;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  padding-bottom: 30px;
}

.reservation .event-info h3,
.new-event .new-event-title h3,
.modify-event .modify-event-title h3,
.new-blog-post .new-blog-post-title h3,
.modify-post .modify-blog-post-title h3,
.new-review .new-review-title h3,
.modify-review .modify-review-title h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.new-event #cover-picture,
.modify-event #cover-picture,
.new-event #cover-picture,
.new-blog-post #cover-picture,
.modify-blog-post #cover-picture {
  border-radius: 16px;
}

.reservation .prestation-types {
  margin-bottom: 40px;
}

.reservation .prestation-types h4 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 600;
}

.reservation .prestation-types .prestation-option {
  margin-bottom: 20px;
}

.reservation .prestation-types .prestation-option input[type=radio] {
  display: none;
}

.reservation .prestation-types .prestation-option .prestation-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--surface-color);
}

.reservation .prestation-types .prestation-option .prestation-label:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.reservation .prestation-types .prestation-option input[type=radio]:checked+.prestation-label {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  box-shadow: 0 5px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.reservation .prestation-types .prestation-option .prestation-info {
  flex: 1;
}

.reservation .prestation-types .prestation-option .prestation-info .prestation-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.reservation .prestation-types .prestation-option .prestation-info .prestation-description {
  color: var(--default-color);
  font-size: 14px;
  margin-bottom: 12px;
}

.reservation .prestation-types .prestation-option .prestation-info .prestation-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reservation .prestation-types .prestation-option .prestation-info .prestation-benefits span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 4px 8px;
  border-radius: 4px;
}

.reservation .prestation-types .prestation-option .prestation-price {
  text-align: right;
}

.reservation .prestation-types .prestation-option .prestation-price .from-text {
  margin-right: 10px;
}

.reservation .prestation-types .prestation-option .prestation-price .original-price {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: line-through;
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}

.reservation .prestation-types .prestation-option .prestation-price .current-price {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .reservation .prestation-types .prestation-option .prestation-label {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .reservation .prestation-types .prestation-option .prestation-benefits {
    justify-content: center;
  }
}

.form .form-group{
  margin-bottom: 25px;
}

.form .form-group label {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.form .form-group .form-text {
  color: var(--default-color)
}

.form .form-group input[type=text],
.form .form-group input[type=number],
.form .form-group input[type=email],
.form .form-group input[type=tel],
.form .form-group input[type=datetime-local],
.form .form-group select,
.form .form-group textarea {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);  
  font-size: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 12px 16px;
  width: 100%;
  transition: all 0.3s ease;
}

.form .form-group input[type=text]:focus,
.form .form-group input[type=number]:focus,
.form .form-group input[type=email]:focus,
.form .form-group input[type=tel]:focus,
.form .form-group input[type=datetime-local]:focus,
.form .form-group select:focus,
.form .form-group textarea:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.form .form-group input[type=text]::placeholder,
.form .form-group input[type=number]::placeholder,
.form .form-group input[type=email]::placeholder,
.form .form-group input[type=tel]::placeholder,
.form .form-group input[type=datetime-local]::placeholder,
.form .form-group select::placeholder,
.form .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit .btn-submit {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
}

.form-submit .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.form-submit .btn-submit:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 25px 20px;
  }
}

.btn-action {
  display: inline-flex;
  align-items: center;
  margin: auto;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color) !important;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.btn-action:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.editor-zone {
  position: relative;
  padding-left: 56px;
  overflow: visible !important;
}

.ce-toolbar__actions {
  right: calc(100% + 10px) !important;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.editor-zone .codex-editor__redactor {
  max-width: 100%;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  background-color: var(--surface-color);  
}

.editor-zone .ce-toolbar__content {
  max-width: 100%;
}

.editor-zone .tc-popover {
  color: black;
}

.editor-zone .image-tool__image-picture {
  max-width: 400px;
  max-height: 400px;
  margin: auto;
}

.tc-popover {
  position: absolute !important;
  z-index: 99999 !important;
  background: white !important;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.ce-popover,
.ce-inline-toolbar {
  z-index: 99999 !important;
  overflow: visible !important;
}

.codex-editor,
.codex-editor__redactor,
.ce-block,
.ce-block__content {
  overflow: visible !important;
}

/*--------------------------------------------------------------
# Modification Page - Admin Section
--------------------------------------------------------------*/
.form-submit .btn-danger {
  padding: 16px 40px;
  background-color: rgb(var(--danger-color-rgb));
  color: var(--default-color);
  text-decoration: none;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(var(--danger-color-rgb), 0.4);
  min-width: 250px;
}

.form-submit .btn-danger:hover {
  background-color: rgba(var(--danger-color-rgb), 0.85);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(var(--danger-color-rgb), 0.6);
}

.delete-confirmation {
  margin-top: 20px;
  padding: 20px;
}

/*--------------------------------------------------------------
# Auth Section
--------------------------------------------------------------*/
#auth-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

#auth-section .card {
  background-color: var(--surface-color);
}

#auth-section .card label {
  color: var(--default-color);
}

#auth-section .card .btn-primary-action {
  display: inline-flex;
  align-items: center;
  width: 200px;
  padding: 16px 32px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

#auth-section .card .btn-primary-action:hover {
  background: color-mix(in srgb, var(--accent-color), #000000 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color), transparent 50%);
}

/*--------------------------------------------------------------
# Admin Section
--------------------------------------------------------------*/
.admin .content-section {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border-radius: 16px;
}

.admin .content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.admin-events,
.admin-blog-posts,
.admin-reviews {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, var(--background-color) 100%);
}

.admin-events .card,
.admin-blog-posts .card,
.admin-reviews .card {
  background-color: var(--surface-color);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-events .card:hover,
.admin-blog-posts .card:hover,
.admin-reviews .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.admin-events .card img,
.admin-blog-posts .card img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.admin-events .card .section-body,
.admin-blog-posts .card .section-body,
.admin-reviews .card .section-body {
  padding: 16px 32px;
}

.admin-blog-posts .card .section-body p,
.admin-reviews .card .section-body p {
  color: white;
  font-size: 18px;
}