/**
* Template Name: Folio
* Template URL: https://bootstrapmade.com/folio-bootstrap-portfolio-template/
* Updated: Aug 08 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Raleway",  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: #ffffff00; /* Background color for the entire website, including individual sections */
  --default-color: #898989; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #777777; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #D6AF70; /* 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: #ffffff; /* 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: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* 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: rgb(255, 255, 255);  /* The default color of the main navmenu links */
  --nav-hover-color: #D6AF70; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #89898900; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #b8a07e; /* 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: #f3f1f0;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #85848400;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #9e9e9e;
  --contrast-color: #ffffff;
}

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

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

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);
}

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

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

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

.php-email-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: php-email-form-loading 1s linear infinite;
}

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

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

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

.logo-wrapper {
  position: relative;
  display: inline-block;
}

.logo-wrapper img {
  height: clamp(35px, 5vw, 70px);
  width: auto;
  display: block;
}

/* On superpose le logo hover au-dessus */
.logo-wrapper .logo-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Le logo normal est visible */
.logo-wrapper .logo-normal {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Au hover : on inverse */
.logo-wrapper:hover .logo-hover {
  opacity: 1;
}

.logo-wrapper:hover .logo-normal {
  opacity: 0;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(50, 50, 50, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 20px;
    font-family: var(--nav-font);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

 .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer h4{
  text-align: right;
}

.footer ul{
  padding-left: 0;   /* supprime le décalage par défaut */
  margin-top: 8px;
}

.footer ul li{
  text-align: right; /* aligne les liens sous le titre */
}

.footer ul li a{
  display: inline-block;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  text-decoration: none;
}

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

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: fixed;      /* clé */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

.hero {
  overflow: hidden;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 80%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 90px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 50px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

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

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About/voice spec Section
--------------------------------------------------------------*/
.about .profile-img {
  border: 10px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  padding: 0;
}

.about .profile-img img {
  margin-top: -60px;
  margin-left: 60px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

#about {
  margin-top: -50px;
  padding-top: 120px;
  position: relative;
  z-index: 4;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background: var(--background-color);
}



.specs-vocales-box ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  text-align: center;
}

.specs-vocales-box ul li {
  padding: 6px 0;
  opacity: 0.95;
}

/*--------------------------------------------------------------
# About accordion — broadcast card design
--------------------------------------------------------------*/

/* ── Keyframes for the pulsing soundwave bars ── */
@keyframes bar-pulse {
  0%, 100% { transform: scaleY(0.35); }
  50%       { transform: scaleY(1);    }
}

/* ── Box ── */
.acc-box {
  position: relative;
  margin-bottom: 14px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  overflow: hidden;
  /* Diagonal gradient: dark top-left → subtle gold hint bottom-right */
  background:
    linear-gradient(
      135deg,
      #0d0d0d 0%,
      #111008 55%,
      color-mix(in srgb, var(--accent-color), #0d0d0d17 82%) 100%
    );
  box-shadow: 0 8px 28px rgba(0,0,0,0.30);
  transition:
    transform    0.40s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow   0.40s ease,
    border-color 0.40s ease;
  font-family: 'Arial', serif;
}

/* Lift on hover */
.acc-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.45),
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 60%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* Right edge glow strip — hidden by default, revealed on hover */
.acc-box::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 64px;
  background: linear-gradient(
    to left,
    color-mix(in srgb, var(--accent-color), transparent 30%) 0%,
    color-mix(in srgb, var(--accent-color), transparent 72%) 40%,
    transparent 100%
  );
  border-radius: 0 16px 16px 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.acc-box:hover::after {
  opacity: 1;
}

/* Left accent bar — visible when open */
.acc-box::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent-color);
  border-radius: 16px 0 0 16px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.acc-box.active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 45%);
  box-shadow:
    0 16px 44px rgba(0,0,0,0.40),
    0 0 0 1px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.acc-box.active::before { opacity: 1; }

iframe { border-radius: 10px; }

/* ── Button ── */
.acc-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  background: none;
  border: 0;
  color: #cbc7c7;
  /* Extra right padding to leave room for the soundwave zone */
  padding: 38px 88px 38px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.10em;
  cursor: pointer;
  transition: color 0.30s ease;
}

/* Text slides left on hover */
.acc-btn span:first-child {
  display: block;
  width: 100%;
  transition: transform 0.40s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.acc-box:hover .acc-btn span:first-child {
  transform: translateX(-12px);
}

.acc-btn:hover,
.acc-box:hover .acc-btn {
  color: var(--accent-color);
}

.acc-box.active .acc-btn { color: var(--accent-color); }

/* ── Soundwave focal zone (replaces chevron circle) ── */
.acc-icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 2;
  /* No border, no circle — the bars ARE the icon */
  border: none;
  background: none;
  border-radius: 0;
  transform: none;
  transition: none;
}

/* Soundwave bars — 5 bars of varying heights */
.acc-icon::before,
.acc-icon::after {
  display: none; /* disable old chevron pseudo-elements */
}

/* We build the bars via a data-attr span, but since we can't add HTML easily,
   we use a CSS-only approach with box-shadow stacking on a single element.
   The bars are generated via JS (see script below in HTML section note).
   For now: style the .acc-wave-bar elements injected by JS */
.acc-wave-bar {
  display: inline-block;
  width: 3px;
  border-radius: 3px;
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: background 0.35s ease;
  /* Default state: animation paused at low scale */
  animation: bar-pulse 1.4s ease-in-out infinite;
  animation-play-state: paused;
  transform: scaleY(0.35);
  transform-origin: center;
}

/* Stagger each bar height and animation delay */
.acc-wave-bar:nth-child(1) { height: 10px; animation-delay: 0.00s; }
.acc-wave-bar:nth-child(2) { height: 18px; animation-delay: 0.15s; }
.acc-wave-bar:nth-child(3) { height: 26px; animation-delay: 0.05s; }
.acc-wave-bar:nth-child(4) { height: 20px; animation-delay: 0.25s; }
.acc-wave-bar:nth-child(5) { height: 12px; animation-delay: 0.10s; }

/* On hover: bars pulse and glow gold */
.acc-box:hover .acc-wave-bar {
  background: var(--accent-color);
  animation-play-state: running;
  box-shadow: 0 0 6px color-mix(in srgb, var(--accent-color), transparent 40%);
}

/* When open: bars stay gold but static */
.acc-box.active .acc-wave-bar {
  background: var(--accent-color);
  animation-play-state: paused;
  transform: scaleY(0.7);
}

.acc-box.active .acc-icon {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

/* ── Content wrapper — grid trick for fluid animation ── */
.acc-content-outer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.acc-box.active .acc-content-outer {
  grid-template-rows: 1fr;
}

.acc-content-inner { overflow: hidden; }

/* Actual content — fade + slide in */
.acc-content {
  padding: 0 24px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity   0.35s ease 0.08s,
    transform 0.35s ease 0.08s,
    padding   0.45s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--surface-color);
}

.acc-box.active .acc-content {
  padding: 0 24px 24px;
  opacity: 1;
  transform: translateY(0);
}

.acc-content ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  text-align: center;
}

.acc-content ul li {
  padding: 6px 0;
  opacity: 0.95;
}



/*--------------------------------------------------------------
# Voice démos
--------------------------------------------------------------*/

.voice-demos {
  margin-top: -110px;
  padding: 18px 18px;
  border-radius: 14px;
  background: color-mix(in srgb, #000000d0, #ffffff 4%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  position: relative;   /* <-- IMPORTANT */
  z-index: 2;           /* <-- pour gérer le ::before */
  overflow: visible;    /* <-- pour voir le décalage */
}

/* Cadre décalé derrière */
/*.voice-demos::before {
/*  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  transform: translate(40px, -70px);
  border: 10px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 14px;
  z-index: -1;
  pointer-events: none;
} */



.voice-demos-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.voice-demos-header h4 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  color: rgb(173, 171, 171);
}

.voice-demos-note {
  font-size: 0.85rem;
  opacity: 0.75;
}

.voice-demos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.voice-demo {
  padding: 14px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--background-color), #ffffff 2%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.voice-demo-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.voice-demo-top strong {
  font-weight: 650;
}

.voice-demo-top small {
  opacity: 0.7;
}

/* audio full width */
.voice-demo audio {
  width: 100%;
}

/* 2 colonnes sur grand écran (style sarasecora-ish) */
@media (min-width: 992px) {
  .voice-demos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-section {
  height: 100%;
}

.contact .contact-info-section .info-header {
  margin-bottom: 40px;
}

.contact .contact-info-section .info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--surface-color);
  position: relative;
  display: inline-block;
}

.contact .contact-info-section .info-header h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.contact .contact-info-section .info-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--surface-color);
  margin-bottom: 0;
}

.contact .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact .contact-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #101010d8;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-info-section .info-item:hover .info-icon {
  background-color: var(--accent-color);
}

.contact .contact-info-section .info-item:hover .info-icon i {
  color: var(--contrast-color);
}

.contact .contact-info-section .info-item .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-content {
  flex: 1;
}

.contact .contact-info-section .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--surface-color);
}

.contact .contact-info-section .info-item .info-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-info-section .social-contact {
  padding: 30px;
  background: var(--background-color);
  border-radius: 20px;
  text-align: center;
}

.contact .contact-info-section .social-contact h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact .contact-info-section .social-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact .contact-info-section .social-contact .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--background-color);
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-info-section .social-contact .social-icons .social-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper {
  background: #101010d8;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border: 1px solid #d6af705a;
}

.contact .contact-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 35px;
}

.contact .contact-form-wrapper .form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact .contact-form-wrapper .form-header p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-wrapper .php-email-form .form-label {
  font-weight: 600;
  color: var(--surface-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact .contact-form-wrapper .php-email-form .form-control {
  height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: #252525b4;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  z-index: 1;
}

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

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

.contact .contact-form-wrapper .php-email-form .message-textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact .contact-form-wrapper .php-email-form .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  border: none;
  padding: 18px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
  transition: left 0.5s ease;
}

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

.contact .contact-form-wrapper .php-email-form .submit-btn:hover:before {
  left: 100%;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(5px);
}

.contact .contact-form-wrapper .php-email-form .submit-btn span {
  position: relative;
  z-index: 1;
}

.contact .contact-form-wrapper .php-email-form .submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .contact .contact-info-section {
    margin-bottom: 40px;
  }

  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact .contact-info-section .info-item {
    padding: 20px;
  }

  .contact .contact-info-section .info-item:hover {
    transform: translateY(-5px);
  }

  .contact .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact .contact-form-wrapper .form-header h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #0000009a;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  background-color: color-mix(in srgb, #00000077, white 5%);
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--surface-color);
  font-family: var(--heading-font);
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: var(--surface-color)
}

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

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

.footer .footer-links {
  margin-bottom: 30px;
  margin-top: 30px;
  padding-left: -10px;
  
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

.footer .footer-contact p {
  margin-bottom: 5px;
  margin-top: -5px;
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  text-decoration: none;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/* Réduit la largeur max + padding des containers Bootstrap */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl,
.container-fluid {
  max-width: 100% !important;
  padding-left: 90px !important;
  padding-right: 90px !important;
  padding-top: 5px !important;
  padding-bottom: 10px !important;
}

.hero .container,
.hero .container-fluid {
  max-width: 100% !important;
  padding-left: 80px !important;
  padding-top: 90px !important;
  padding-right: 160px !important;
}

/* About panel overlaps the hero (subtle) */
/*#about.about.section {
  margin-top: -60px;              /* overlap */
/*  padding-top: 100px;             /* compensate */
/*  position: relative;
  z-index: 4;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background: #0e1412;            /* adapte si besoin à ton thème */
/*  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

/*--------------------------------------------------------------
# Nav bar
--------------------------------------------------------------*/

#scroll-progress{
  position: fixed;
  right: 30px;
  top: 120px;      /* distance fixe du haut */
  bottom: 80px;   /* distance fixe du bas */
  width: 12px;
  z-index: 9999;
  opacity: 0.55;
  pointer-events: none;
  transition: all 0.4s;
}

#scroll-progress .sp-line{
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;     /* prend toute la hauteur dispo */
  width: 1px;
  transform: translateX(-50%);
  background: color-mix(in srgb, var(--default-color), transparent 35%);
}

#scroll-progress .sp-dot{
  position: absolute;
  left: 50%;
  top: 0;        /* le JS le déplacera */
  width: 7px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent-color);
}

@media (max-width: 768px){
  #scroll-progress{ display:none; }
}


/* Très grands écrans: un peu plus d'air */
@media (min-width: 1400px){
  #scroll-progress{ opacity: 0.45; }
}


/* Hide scrollbar globally */

/* Chrome / Edge / Safari */
body::-webkit-scrollbar {
  width: 0;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE legacy */
body {
  -ms-overflow-style: none;
}

.acc-box.active .acc-btn,
.acc-box.active .acc-btn span{
  color: var(--accent-color) !important;
}