
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

/* font */

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* fin font */

/* Classe pour bloquer le scroll quand le menu mobile est ouvert */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* Overlay pour le menu mobile */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.header {
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/home-hero.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.logo {
  width: 50px;
  height: 50px;
  margin-left: 40px;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  gap: 80px;
}

.nav {
  display: flex;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.nav.nav-scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-links {
  margin-right: 40px;
  list-style: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  margin-right: 40px;
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger span:nth-child(1) {
  top: 8px;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger span:nth-child(3) {
  bottom: 8px;
}

/* Animation pour transformer en croix */
.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.hamburger.active span:nth-child(3) {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* Responsive styles */
/* Très grands écrans */
@media screen and (min-width: 1200px) {
  .gallery-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 380px;
  }
}

/* Tablettes et écrans moyens */
@media screen and (max-width: 1024px) {
  .title-header {
    font-size: 3.5em !important;
  }

  .sub-title-header {
    font-size: 1.4em !important;
  }

  /* About section responsive */
  .about-section {
    padding: 50px 20px;
  }

  .about-section div p {
    font-size: 1em;
  }

  .title-about {
    font-size: 3em;
  }

  /* Avis section responsive */
  .avis-content {
    width: 420px;
    min-height: 230px;
  }

  /* Salon section responsive */
  .salon-section {
    padding: 50px 3%;
    gap: 50px;
  }

  .salon-content {
    gap: 3%;
  }

  .img-container-salon-content,
  .img-container-salon-content-2 {
    width: 45%;
    height: 55vh;
    min-height: 350px;
    max-height: 500px;
    min-width: 250px;
    border-radius: 12px;
  }

  .text-container-salon-content {
    width: 52%;
    min-height: 350px;
    gap: 18px;
    padding: 15px 0;
  }

  .title-salon-content {
    font-size: 1.8em;
  }

  .google-integration iframe {
    height: 250px;
    width: 100%;
    border-radius: 8px;
  }

  .google-integration {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
  }

  /* Gallery section responsive */
  .gallery-grid {
    gap: 15px;
    max-width: 900px;
    padding: 0 15px;
  }

  .gallery-item {
    flex: 0 0 calc(33.333% - 15px);
    max-width: 280px;
    min-width: 200px;
  }

  /* Baseline section responsive */
  .baseline-title {
    font-size: 2.5em;
  }

  .baseline-subtitle {
    font-size: 1.2em;
  }

  /* Gallery section responsive */
  .gallery-grid {
    gap: 15px;
    max-width: 800px;
  }

  .gallery-item {
    flex: 0 0 calc(33.333% - 10px);
    max-width: 240px;
  }

  /* Tarifs section responsive */
  .tarifs-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .tarifs-card {
    padding: 30px 20px;
  }

  .tarifs-card-title {
    font-size: 1.4em;
  }

  .tarif-item {
    padding: 10px 0;
  }

  .tarif-label {
    font-size: 0.9em;
  }

  .tarif-price {
    font-size: 0.95em;
    margin-left: 15px;
  }

  .tarifs-note {
    margin-top: 40px;
    font-size: 0.9em;
  }

  /* Luxeol section responsive */
  .luxeol-product {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .luxeol-product-image {
    order: 2;
  }

  .luxeol-product-info {
    order: 1;
  }

  .luxeol-image {
    max-height: 400px;
  }

  .luxeol-product-title {
    font-size: 1.8em;
  }

  .luxeol-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Product section responsive */
  .products-container {
    gap: 30px;
  }

  .product-item {
    padding: 30px 20px;
  }

  /* Footer responsive */
  .footer {
    padding: 50px 20px 0;
  }

  .footer-content {
    gap: 45px;
  }

  .footer-logo-img {
    width: 90px;
    height: 90px;
  }

  .footer-salons {
    gap: 70px;
    flex-direction: row !important;
  }

  .footer-salon {
    min-width: 250px;
    max-width: 300px;
  }

  .footer-salon-title {
    font-size: 1.3em;
  }

  .footer-salon p {
    font-size: 0.9em;
  }

  .footer-social-icons {
    gap: 30px;
  }

  .footer-social-icons a {
    width: 45px;
    height: 45px;
  }

  .footer-social-icons svg {
    width: 22px;
    height: 22px;
  }

  .footer-bottom {
    padding: 35px 0 20px;
    margin-top: 45px;
  }

  .footer-bottom p {
    font-size: 0.8em;
  }
}

/* Écrans moyens (900px) */
@media screen and (max-width: 900px) {
  .title-header {
    font-size: 3.2em !important;
  }

  .sub-title-header {
    font-size: 1.35em !important;
  }

  /* Salon section responsive */
  .salon-content {
    gap: 3%;
  }

  .img-container-salon-content,
  .img-container-salon-content-2 {
    width: 45%;
    height: 50vh;
    min-height: 320px;
    max-height: 450px;
    min-width: 220px;
    border-radius: 10px;
  }

  .text-container-salon-content {
    width: 52%;
    min-height: 320px;
    gap: 16px;
    padding: 15px 0;
  }

  .title-salon-content {
    font-size: 1.7em;
  }

  .google-integration iframe {
    height: 220px;
    width: 100%;
    border-radius: 6px;
  }

  .google-integration {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
  }

  .salon-section {
    padding: 45px 3%;
    gap: 45px;
  }
}

/* Tablettes en mode portrait */
@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: right 0.3s ease;
    padding-top: 50px;
    margin-right: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links a {
    font-size: 1.5em;
  }

  .hamburger {
    display: flex;
  }

  .title-header {
    font-size: 3em;
    padding: 0 20px;
  }

  .sub-title-header {
    font-size: 1.3em;
    padding: 0 20px;
  }

  .btn-header {
    font-size: 1em;
    padding: 8px 16px;
  }

  .logo {
    width: 40px;
    height: 40px;
    margin-left: 20px;
  }

  /* About section responsive */
  .about-section {
    padding: 40px 15px;
  }

  .about-section div {
    flex-direction: column;
    gap: 20px;
  }

  .about-section img {
    max-width: 400px;
  }

  .about-section div p {
    max-width: 100%;
    font-size: 1em;
  }

  .title-about {
    font-size: 2.5em;
    margin-bottom: 30px;
  }

  /* Avis section responsive */
  .avis-container {
    flex-direction: column;
    align-items: center;
    gap: 60px !important;
  }

  .avis-content {
    width: 90%;
    max-width: 400px;
  }

  .avis-section {
    padding: 40px 15px;
  }

  /* Salon section responsive */
  .salon-content {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 0 5%;
  }

  .img-container-salon-content,
  .img-container-salon-content-2 {
    width: 90% !important;
    max-width: 600px;
    height: 50vh;
    min-height: 300px;
    max-height: 400px;
    border-radius: 10px;
    margin: 0 auto;
  }

  .text-container-salon-content {
    width: 90% !important;
    max-width: 600px;
    min-height: auto;
    gap: 20px;
    text-align: center;
    padding: 20px 5%;
    margin: 0 auto;
  }

  .title-salon-content {
    font-size: 1.6em;
  }

  .google-integration {
    margin: 15px auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .google-integration iframe {
    height: 250px;
    width: 100%;
    border-radius: 8px;
  }
  }

  .salon-section {
    padding: 40px 5%;
    gap: 50px;
  }

  /* Gallery section responsive */
  .gallery-grid {
    gap: 15px;
    max-width: 700px;
    padding: 0 20px;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 15px);
    max-width: 320px;
    min-width: 180px;
  }

  .galery-section {
    padding: 50px 5%;
  }

  /* Baseline section responsive */
  .baseline-title {
    font-size: 2.2em;
  }

  .baseline-subtitle {
    font-size: 1.1em;
  }

  .baseline-section {
    padding: 60px 15px;
  }

  /* Gallery section responsive */
  .gallery-grid {
    gap: 15px;
    max-width: 700px;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 8px);
    max-width: 300px;
  }

  .galery-section {
    padding: 50px 15px;
  }

  /* Product section responsive */
  .products-container {
    flex-direction: column;
    gap: 30px;
  }

  .product-section {
    padding: 50px 15px;
  }

  /* Tarifs section responsive */
  .tarifs-section {
    padding: 50px 15px;
  }

  .tarifs-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tarifs-card {
    padding: 25px 20px;
  }

  .tarifs-card-title {
    font-size: 1.3em;
  }

  .tarif-label {
    font-size: 0.85em;
  }

  .tarif-price {
    font-size: 0.9em;
    margin-left: 10px;
  }

  .tarifs-note {
    font-size: 0.85em;
  }

  /* Luxeol section responsive */
  .luxeol-section {
    padding: 50px 15px;
  }

  .luxeol-product {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .luxeol-image {
    max-height: 350px;
  }

  .luxeol-product-title {
    font-size: 1.5em;
  }

  .luxeol-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .benefit-item {
    padding: 10px;
  }

  .lato-small {
    font-size: 0.8em;
  }

  /* Footer responsive */
  .footer {
    padding: 45px 15px 0;
  }

  .footer-content {
    gap: 40px;
  }

  .footer-logo-img {
    width: 85px;
    height: 85px;
  }

  .footer-salons {
    gap: 50px;
  }

  .footer-salon {
    min-width: auto;
    max-width: 100%;
  }

  .footer-salon-title {
    font-size: 1.25em;
  }

  .footer-salon p {
    font-size: 0.9em;
  }

  .footer-social-icons {
    gap: 28px;
  }

  .footer-social-icons a {
    width: 42px;
    height: 42px;
  }

  .footer-social-icons svg {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    padding: 32px 0 18px;
    margin-top: 40px;
  }

  .footer-bottom p {
    font-size: 0.78em;
  }

/* Smartphones en mode paysage */
@media screen and (max-width: 640px) {
  .title-header {
    font-size: 2.5em !important;
    padding: 0 20px;
  }

  .sub-title-header {
    font-size: 1.2em !important;
    padding: 0 20px;
  }

  /* About section responsive */
  .title-about {
    font-size: 2.2em !important;
  }

  .about-section div p {
    font-size: 0.95em;
  }

  /* Avis section responsive */
  .avis-container {
    align-items: center;
  }

  .avis-content {
    width: 90%;
    max-width: 350px;
  }

  .content-avis p {
    font-size: 0.95em;
  }

  .mention-avis-anno {
    font-size: 0.85em;
    padding: 0 15px;
  }

  .btn-avis {
    font-size: 0.95em;
    padding: 8px 16px;
  }

  /* Salon section responsive */
  .img-container-salon-content,
  .img-container-salon-content-2 {
    height: 45vh;
    width: 95% !important;
    max-width: 100%;
    min-height: 250px;
    max-height: 350px;
    border-radius: 8px;
  }

  .title-salon-content {
    font-size: 1.5em;
  }

  .text-container-salon-content {
    width: 95%;
    padding: 15px;
  }

  .text-container-salon-content p {
    font-size: 0.95em;
  }

  .google-integration iframe {
    height: 220px;
    width: 100%;
    border-radius: 6px;
  }

  .google-integration {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    width: 100%;
    margin: 15px 0;
  }

  .salon-section {
    padding: 30px 5%;
    gap: 40px;
  }

  /* Gallery section responsive */
  .gallery-grid {
    gap: 12px;
    max-width: 100%;
    padding: 0 20px;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 12px);
    max-width: 250px;
    min-width: 150px;
  }

  .galery-section {
    padding: 40px 5%;
  }

  /* Baseline section responsive */
  .baseline-title {
    font-size: 2em;
  }

  .baseline-subtitle {
    font-size: 1em;
    padding: 0 15px;
  }

  .baseline-section {
    padding: 50px 15px;
  }

  /* Gallery section responsive */
  .gallery-grid {
    gap: 12px;
    max-width: 100%;
  }

  .gallery-item {
    flex: 0 0 calc(50% - 6px);
    max-width: 250px;
  }

  .galery-section {
    padding: 40px 15px;
  }

  .social-links {
    flex-direction: column;
    gap: 15px;
  }

  /* Product section responsive */
  .product-item {
    padding: 25px 15px;
  }

  .product-title {
    font-size: 1.3em;
  }

  .product-description {
    font-size: 0.95em;
  }

  .product-section {
    padding: 40px 15px;
  }

  /* Footer responsive */
  .footer {
    padding: 40px 15px 0;
  }

  .footer-content {
    gap: 38px;
  }

  .footer-logo-img {
    width: 80px;
    height: 80px;
  }

  .footer-salons {
    gap: 45px;
  }

  .footer-salon {
    min-width: auto;
    max-width: 100%;
  }

  .footer-salon-title {
    font-size: 1.2em;
  }

  .footer-salon p {
    font-size: 0.88em;
  }

  .footer-social-icons {
    gap: 26px;
  }

  .footer-social-icons a {
    width: 40px;
    height: 40px;
  }

  .footer-social-icons svg {
    width: 19px;
    height: 19px;
  }

  .footer-bottom {
    padding: 30px 0 17px;
    margin-top: 38px;
  }

  .footer-bottom p {
    font-size: 0.76em;
  }
}

/* Écrans moyens-petits */
@media screen and (max-width: 600px) {
  /* Gallery section responsive */
  .gallery-grid {
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    padding: 0 15px;
  }

  .gallery-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 450px;
    min-width: auto;
  }
}

/* Smartphones en mode portrait */
@media screen and (max-width: 480px) {
  .title-header {
    font-size: 2em !important;
    line-height: 1.2;
  }

  .sub-title-header {
    font-size: 1em !important;
  }

  .btn-header {
    font-size: 0.9em !important;
    padding: 6px 12px;
  }

  .logo {
    width: 35px;
    height: 35px;
    margin-left: 15px;
  }

  .hamburger {
    margin-right: 15px;
  }

  .nav {
    height: 60px;
  }

  .header-content {
    height: calc(100vh - 60px);
    padding: 0 15px;
  }

  .nav-links {
    top: 60px;
    height: calc(100vh - 60px);
  }

  /* About section responsive */
  .about-section {
    padding: 30px 10px;
  }

  .title-about {
    font-size: 1.8em !important;
    margin-bottom: 25px;
  }

  .about-section img {
    max-width: 300px;
  }

  .about-section div p {
    font-size: 0.9em;
    gap: 15px;
  }

  .about-section div {
    gap: 15px;
  }

  /* Avis section responsive */
  .avis-container {
    align-items: center;
    padding: 0 0 70px;
  }

  .avis-content {
    width: 90% !important;
    max-width: 320px;
  }

  .content-avis p {
    font-size: 0.9em;
  }

  .header-avis p {
    font-size: 1.1em;
  }

  .mention-avis-anno {
    font-size: 0.8em;
    padding: 0 10px;
  }

  .btn-avis {
    font-size: 0.9em;
    padding: 6px 14px;
  }

  .avis-section {
    padding: 30px 10px;
  }

  /* Salon section responsive */
  .img-container-salon-content,
  .img-container-salon-content-2 {
    height: 40vh;
    max-width: 100%;
    width: 95%;
    min-height: 200px;
    max-height: 300px;
    border-radius: 8px;
  }

  .title-salon-content {
    font-size: 1.4em;
  }

  .text-container-salon-content {
    width: 95%;
    padding: 10px;
  }

  .text-container-salon-content p {
    font-size: 0.9em;
  }

  .google-integration iframe {
    height: 200px;
    width: 100%;
    border-radius: 6px;
  }

  .google-integration {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin: 15px 0;
  }

  .salon-section {
    padding: 25px 5%;
    gap: 35px;
  }

  .salon-content {
    gap: 30px;
  }

  /* Gallery section responsive */
  .gallery-grid {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }

  .gallery-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
  }

  .galery-section {
    padding: 30px 5%;
  }

  /* Baseline section responsive */
  .baseline-title {
    font-size: 1.8em;
  }

  .baseline-subtitle {
    font-size: 0.95em;
    padding: 0 10px;
  }

  .baseline-section {
    padding: 40px 10px;
  }

  /* Gallery section responsive */
  .gallery-grid {
    flex-direction: column;
    gap: 15px;
  }

  .gallery-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
  }

  .galery-section {
    padding: 30px 10px;
  }

  .social-links {
    flex-direction: column;
    gap: 12px;
  }

  .social-btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }

  /* Product section responsive */
  .product-item {
    padding: 20px 10px;
  }

  .product-title {
    font-size: 1.2em;
  }

  .product-description {
    font-size: 0.9em;
  }

  .product-section {
    padding: 30px 10px;
  }

  /* Footer responsive */
  .footer {
    padding: 35px 10px 0;
  }

  .footer-content {
    gap: 35px;
  }

  .footer-logo-img {
    width: 75px;
    height: 75px;
  }

  .footer-salons {
    gap: 35px;
  }

  .footer-salon {
    min-width: auto;
    max-width: 100%;
  }

  .footer-salon-title {
    font-size: 1.15em;
  }

  .footer-salon p {
    font-size: 0.85em;
  }

  .footer-social-icons {
    gap: 24px;
  }

  .footer-social-icons a {
    width: 38px;
    height: 38px;
  }

  .footer-social-icons svg {
    width: 18px;
    height: 18px;
  }

  .footer-bottom {
    padding: 28px 0 15px;
    margin-top: 35px;
  }

  .footer-bottom p {
    font-size: 0.74em;
  }
}

/* Très petits écrans */
@media screen and (max-width: 360px) {
  .title-header {
    font-size: 1.8em !important;
    line-height: 1.1;
    padding: 0 10px;
  }

  .sub-title-header {
    font-size: 0.9em !important;
    padding: 0 10px;
  }

  .btn-header {
    font-size: 0.8em !important;
    padding: 5px 10px;
  }

  .logo {
    width: 30px;
    height: 30px;
    margin-left: 10px;
  }

  .hamburger {
    margin-right: 10px;
  }

  .bar-deco {
    width: 60px;
  }

  /* About section responsive */
  .about-section {
    padding: 25px 8px;
  }

  .title-about {
    font-size: 1.6em !important;
    margin-bottom: 20px;
  }

  .about-section img {
    max-width: 250px;
  }

  .about-section div p {
    font-size: 0.85em;
    gap: 12px;
  }

  .about-section div {
    gap: 12px;
  }

  /* Avis section responsive */
  .avis-container {
    align-items: center;
  }

  .avis-content {
    width: 90%;
    max-width: 300px;
    min-height: 200px;
  }

  .content-avis {
    padding: 15px;
  }

  .content-avis p {
    font-size: 0.85em;
  }

  .header-avis {
    padding: 15px;
  }

  .header-avis p {
    font-size: 1em;
  }

  .svg-stars svg {
    width: 18px;
  }

  .avis-content img {
    width: 70px;
    height: 70px;
    bottom: -35px;
    right: calc(50% - 35px);
  }

  .mention-avis-anno {
    font-size: 0.75em;
    padding: 0 8px;
    margin-top: 50px;
  }

  .btn-avis {
    font-size: 0.85em;
    padding: 5px 12px;
  }

  .avis-section {
    padding: 25px 8px;
  }

  /* Salon section responsive */
  .img-container-salon-content,
  .img-container-salon-content-2 {
    height: 35vh;
    max-width: 100%;
    width: 95%;
    min-height: 180px;
    max-height: 250px;
    border-radius: 6px;
  }

  .title-salon-content {
    font-size: 1.2em;
  }

  .text-container-salon-content {
    width: 95%;
    padding: 8px;
  }

  .text-container-salon-content p {
    font-size: 0.85em;
  }

  .text-container-salon-content {
    gap: 15px;
  }

  .google-integration iframe {
    height: 180px;
    width: 100%;
    border-radius: 6px;
  }

  .google-integration {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 100%;
    margin: 10px 0;
  }

  .salon-section {
    padding: 20px 4%;
    gap: 30px;
  }

  .salon-content {
    gap: 25px;
  }

  /* Gallery section responsive */
  .gallery-grid {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    padding: 0 8px;
  }

  .gallery-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
  }

  .galery-section {
    padding: 25px 4%;
  }

  /* Baseline section responsive */
  .baseline-title {
    font-size: 1.6em;
    padding: 0 8px;
  }

  .baseline-subtitle {
    font-size: 0.9em;
    padding: 0 8px;
  }

  .baseline-section {
    padding: 35px 8px;
  }

  /* Gallery section responsive */
  .gallery-grid {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }

  .gallery-item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
  }

  .galery-section {
    padding: 25px 8px;
  }

  .social-links {
    flex-direction: column;
    gap: 10px;
  }

  .social-btn {
    font-size: 0.85em;
    padding: 8px 16px;
  }

  /* Product section responsive */
  .product-item {
    padding: 15px 8px;
  }

  .product-title {
    font-size: 1.1em;
  }

  .product-description {
    font-size: 0.85em;
  }

  .product-section {
    padding: 25px 8px;
  }

  /* Footer responsive */
  .footer {
    padding: 30px 8px 0;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-logo-img {
    width: 65px;
    height: 65px;
  }

  .footer-salons {
    gap: 30px;
  }

  .footer-salon {
    min-width: auto;
    max-width: 100%;
  }

  .footer-salon-title {
    font-size: 1.05em;
  }

  .footer-salon p {
    font-size: 0.8em;
  }

  .footer-social-icons {
    gap: 20px;
  }

  .footer-social-icons a {
    width: 35px;
    height: 35px;
  }

  .footer-social-icons svg {
    width: 16px;
    height: 16px;
  }

  .footer-bottom {
    padding: 25px 0 12px;
    margin-top: 30px;
  }

  .footer-bottom p {
    font-size: 0.7em;
  }
}

/* Très petits écrans jusqu'à 320px */
@media screen and (max-width: 320px) {
  /* Avis section responsive pour très petits écrans */
  .avis-container {
    align-items: center;
    gap: 40px !important;
    padding: 0 10px 50px;
  }

  .avis-content {
    width: 90%;
    max-width: 280px;
    min-height: 180px;
  }

  .content-avis {
    padding: 12px;
  }

  .content-avis p {
    font-size: 0.8em;
    line-height: 1.4;
  }

  .header-avis {
    padding: 12px;
  }

  .header-avis p {
    font-size: 0.95em;
  }

  .svg-stars svg {
    width: 16px;
  }

  .avis-content img {
    width: 60px;
    height: 60px;
    bottom: -30px;
    right: calc(50% - 30px);
  }

  .mention-avis-anno {
    font-size: 0.7em;
    padding: 0 5px;
    margin-top: 40px;
  }

  .avis-section {
    padding: 20px 5px;
  }
}

.nav-links a:hover {
  color: #f0f0f0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
} 

.header-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.title-header {
  color: white;
  font-family: 'Playfair', serif;
  font-size: 4em;
  text-align: center;
  margin-bottom: 20px;
}

.bar-deco {
  display: block;
  width: 80px;
  height: 2px;
  background-color: white;
  margin: 20px 0;
}

.sub-title-header {
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 30px;
}

.btn-header {
  background-color: transparent;
  color: white;
  padding: 10px 20px;
  border: 2px solid white;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1.2em;
  margin-top: 20px;
}

.btn-header:hover {
  background-color: white;
  color: black;
}

/* about-section */
.about-section {
  padding: 70px 20px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-about {
  color: #333;
  margin-bottom: 50px;
}

.about-section img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

.about-section div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.about-section div p {
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  color: #555;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.avis-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px 70px;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}


.avis-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 20px;
  background-color: #F2F2F2;
  height: auto;
}

.avis-content {
  background-color: white;
  width: 90%;
  max-width: 450px;
  min-height: 310px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin-bottom: 30px;
}

.avis-content img {
  position: absolute;
  bottom: -40px;
  right: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.header-avis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.header-avis p {
  font-size: 1.2em;
  color: #333;
}

.svg-stars svg {
  width: 20px;
}

.content-avis {
  padding: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  color: #333;
  padding-bottom: 50px;
}

.mention-avis-anno {
  font-family: 'Lato', sans-serif;
  font-size: 0.9em;
  color: #777;
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
}

.btn-avis {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  margin-top: 20px;
  text-decoration: none;
}

/* salon-section */

.salon-section {
  padding: 70px 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  gap: 70px;
}

.salon-content {
  display: flex;
  align-items: center;
  gap: 4%;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
}

.img-container-salon-content {
  width: 45%;
  max-width: 500px;
  min-width: 280px;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  background-image: url('./assets/photo-atelier-1.webp');
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border-radius: 12px;
}

.img-container-salon-content-2 {
  width: 45%;
  max-width: 500px;
  min-width: 280px;
  height: 60vh;
  min-height: 400px;
  max-height: 600px;
  background-image: url('./assets/photo-atelier-2.webp');
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border-radius: 12px;
}



.title-salon-content {
  font-family: 'Playfair', serif;
  font-size: 2em;
  color: #333;
}

.google-integration {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 200px;
  margin: 15px 0;
}

.google-integration iframe {
  height: 200px;
  width: 100%;
  border-radius: 8px;
  border: 0;
}

.text-container-salon-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 400px;
  padding: 20px 0;
  width: 50%;
  flex: 1;
}

/* baseline-section */
.baseline-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./assets/baseline.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.baseline-content {
  max-width: 800px;
  margin: 0 auto;
}

.baseline-title {
  font-family: 'Playfair', serif;
  font-size: 3em;
  color: white;
  margin-bottom: 20px;
  font-style: italic;
}

.baseline-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.3em;
  color: #ccc;
  font-weight: 300;
}

/* galery-section */
.galery-section {
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8f8f8;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 50px 0;
  padding: 0 10px;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 20px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  min-width: 250px;
  height: 600px;
}

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

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

.gallery-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 1.1em;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
  max-width: 800px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-btn {
  background-color: transparent;
  color: #333;
  padding: 12px 24px;
  border: 2px solid #333;
  text-decoration: none;
  font-size: 1em;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background-color: #333;
  color: white;
}

/* luxeol-section */
.luxeol-section {
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fafaf8;
}

.luxeol-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.luxeol-subtitle {
  text-align: center;
  color: #888;
  font-size: 1.1em;
  margin-bottom: 50px;
}

.luxeol-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.luxeol-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  align-items: center;
  width: 100%;
}

.luxeol-product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}

.luxeol-image {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.luxeol-image-placeholder {
  width: 280px;
  height: 400px;
  background: linear-gradient(135deg, #2a2a2a 0%, #404040 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.luxeol-image-placeholder p {
  margin: 5px 0;
}

.luxeol-image-placeholder p:first-child {
  font-size: 2em;
  letter-spacing: 2px;
}

.luxeol-image-placeholder p:last-child {
  font-size: 0.95em;
  color: #ccc;
}

.luxeol-product-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  order: 1;
}

.luxeol-product-title {
  font-family: 'Playfair', serif;
  font-size: 2.2em;
  color: #333;
  margin: 0;
}

.luxeol-benefit {
  background-color: white;
  padding: 20px;
  border-left: 4px solid #8B3A3A;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-label {
  color: #333;
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  margin: 0;
  line-height: 1.5;
}

.luxeol-stats {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stats-text {
  color: #333;
  font-family: 'Lato', sans-serif;
  font-size: 1.1em;
  margin: 0;
}

.luxeol-formula {
  background-color: #f0f0f0;
  padding: 18px;
  border-radius: 6px;
  text-align: center;
}

.formula-title {
  font-family: 'Lato', sans-serif;
  color: #333;
  font-size: 0.95em;
  margin: 0;
}

.luxeol-complement {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  border-top: 3px solid #8B3A3A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
}

.complement-title {
  font-family: 'Playfair', serif;
  font-size: 1.3em;
  color: #333;
  margin: 0 0 5px 0;
}

.complement-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.9em;
  color: #888;
  margin: 0 0 10px 0;
}

.complement-indicators {
  font-family: 'Lato', sans-serif;
  font-size: 0.95em;
  color: #666;
  margin: 8px 0;
}

.complement-duration {
  font-family: 'Lato', sans-serif;
  font-size: 0.95em;
  color: #333;
  margin: 8px 0 0 0;
}

.luxeol-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  background-color: #f8f8f8;
  border-radius: 8px;
}

.benefit-icon {
  font-size: 1.5em;
  margin-bottom: 8px;
}

.lato-small {
  font-family: 'Lato', sans-serif;
  font-size: 0.85em;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.luxeol-note {
  text-align: center;
  margin-top: 40px;
  color: #888;
  font-size: 0.95em;
}

/* tarifs-section */
.tarifs-section {
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

.tarifs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin-top: 50px;
  width: 100%;
}

.tarifs-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tarifs-card-title {
  font-family: 'Playfair', serif;
  font-size: 1.6em;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.4;
}

.tarifs-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-family: 'Lato', sans-serif;
}

.tarif-item:last-child {
  border-bottom: none;
}

.tarif-label {
  color: #555;
  font-size: 0.95em;
  flex: 1;
}

.tarif-price {
  color: #333;
  font-weight: 700;
  font-size: 1em;
  margin-left: 20px;
  white-space: nowrap;
}

.tarif-item.highlight .tarif-label {
  color: #777;
  font-style: italic;
  font-size: 0.9em;
}

.tarif-item.highlight .tarif-price {
  color: #999;
  font-weight: 600;
  font-size: 0.9em;
}

.tarif-item.small-text .tarif-label {
  font-size: 0.9em;
  color: #666;
}

.tarif-item.small-text .tarif-price {
  font-size: 0.9em;
}

.tarif-item .brand {
  font-weight: 700;
  color: #333;
  text-align: center;
  width: 100%;
  font-size: 0.9em;
}

.tarifs-note {
  max-width: 600px;
  text-align: center;
  margin-top: 50px;
  color: #888;
  font-size: 0.95em;
  line-height: 1.6;
}

.tarifs-note p {
  margin: 8px 0;
}

/* product-section */
.product-section {
  padding: 70px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

.products-container {
  display: flex;
  gap: 50px;
  max-width: 1000px;
  margin-top: 50px;
}

.product-item {
  flex: 1;
  text-align: center;
  padding: 40px 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.product-logo {
  margin-bottom: 30px;
}

.product-logo img {
  max-width: 200px;
  height: auto;
}

.product-title {
  font-family: 'Playfair', serif;
  font-size: 1.5em;
  color: #333;
  margin-bottom: 20px;
}

.product-description {
  font-family: 'Lato', sans-serif;
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

/* footer */
.footer {
  background-color: #222;
  color: white;
  padding: 60px 20px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 50px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.footer-salons {
  display: flex;
  gap: 100px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.footer-salon {
  font-family: 'Lato', sans-serif;
  text-align: center;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.footer-salon-title {
  font-family: 'Playfair', serif;
  font-size: 1.4em;
  margin-bottom: 20px;
  color: white;
  font-weight: 500;
}

.footer-salon p {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-social-icons {
  display: flex;
  gap: 35px;
  justify-content: center;
  align-items: center;
}

.footer-social-icons a {
  color: #ccc;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-social-icons a:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.footer-social-icons svg {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  text-align: center;
  padding: 40px 0 25px;
  border-top: 1px solid #444;
  margin-top: 50px;
  width: 100%;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.8em;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ccc;
  text-decoration: underline;
}

.footer-links .separator {
  color: #666;
}

.footer-bottom p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85em;
  color: #999;
  font-weight: 300;
}

.footer-bottom a {
  text-decoration: none;
  color: #999;
  font-weight: bold;
}

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

/* ===== ANIMATIONS AU SCROLL ===== */

/* Classes d'état initial (invisible) */
.scroll-fade-in,
.scroll-slide-up,
.scroll-slide-left,
.scroll-slide-right,
.scroll-scale-in {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Fade in */
.scroll-fade-in {
  transform: translateY(30px);
}

.scroll-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide up */
.scroll-slide-up {
  transform: translateY(50px);
}

.scroll-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide from left */
.scroll-slide-left {
  transform: translateX(-50px);
}

.scroll-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.scroll-slide-right {
  transform: translateX(50px);
}

.scroll-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scroll-scale-in {
  transform: scale(0.9);
}

.scroll-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Délais pour créer un effet de cascade */
.gallery-item:nth-child(1) { transition-delay: 0.1s; }
.gallery-item:nth-child(2) { transition-delay: 0.2s; }
.gallery-item:nth-child(3) { transition-delay: 0.3s; }
.gallery-item:nth-child(4) { transition-delay: 0.4s; }
.gallery-item:nth-child(5) { transition-delay: 0.5s; }
.gallery-item:nth-child(6) { transition-delay: 0.6s; }
.gallery-item:nth-child(7) { transition-delay: 0.7s; }
.gallery-item:nth-child(8) { transition-delay: 0.8s; }
.gallery-item:nth-child(9) { transition-delay: 0.9s; }

.avis-content:nth-child(1) { transition-delay: 0.1s; }
.avis-content:nth-child(2) { transition-delay: 0.3s; }
.avis-content:nth-child(3) { transition-delay: 0.5s; }
.avis-content:nth-child(4) { transition-delay: 0.7s; }

.tarifs-card:nth-child(1) { transition-delay: 0.2s; }
.tarifs-card:nth-child(2) { transition-delay: 0.4s; }
.tarifs-card:nth-child(3) { transition-delay: 0.6s; }

.product-item:nth-child(1) { transition-delay: 0.2s; }
.product-item:nth-child(2) { transition-delay: 0.4s; }

/* ===== PAGES LEGALES ===== */

/* Header minimal pour pages légales */
.header-minimal {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-minimal .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  max-width: 100%;
}

.header-minimal .logo {
  height: 60px;
  width: auto;
  cursor: pointer;
}

.header-minimal .nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

.header-minimal .nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 0.95em;
  transition: color 0.3s ease;
}

.header-minimal .nav-links a:hover {
  color: #8B3A3A;
}

/* Section légale */
.legal-section {
  min-height: calc(100vh - 200px);
  padding: 80px 50px;
  background-color: #fafafa;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.legal-title {
  font-family: "Playfair", serif;
  font-size: 2.5em;
  color: #333;
  margin-bottom: 50px;
  font-weight: 600;
  text-align: center;
  border-bottom: 3px solid #8B3A3A;
  padding-bottom: 20px;
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block h2 {
  font-family: "Playfair", serif;
  font-size: 1.5em;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  border-left: 4px solid #8B3A3A;
  padding-left: 15px;
}

.legal-block p {
  font-family: "Lato", sans-serif;
  font-size: 0.95em;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.legal-block ul {
  font-family: "Lato", sans-serif;
  font-size: 0.95em;
  line-height: 1.8;
  color: #555;
  margin-left: 30px;
  margin-bottom: 15px;
}

.legal-block ul li {
  margin-bottom: 10px;
}

.legal-block a {
  color: #8B3A3A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-block a:hover {
  color: #a94d4d;
  text-decoration: underline;
}

.legal-block strong {
  color: #333;
  font-weight: 600;
}

/* Responsive pour les pages légales */
@media (max-width: 1024px) {
  .header-minimal .nav {
    padding: 15px 30px;
  }

  .header-minimal .nav-links {
    gap: 25px;
  }

  .legal-section {
    padding: 60px 30px;
  }

  .legal-content {
    padding: 40px;
  }

  .legal-title {
    font-size: 2em;
  }

  .legal-block h2 {
    font-size: 1.3em;
  }
}

@media (max-width: 600px) {
  .header-minimal .nav {
    padding: 15px 20px;
  }

  .header-minimal .nav-links {
    display: none;
  }

  .header-minimal .hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .header-minimal .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header-minimal .menu-overlay {
    display: none;
  }

  .header-minimal .menu-overlay.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
  }

  .header-minimal .menu-overlay.active .nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
  }

  .legal-section {
    padding: 40px 20px;
  }

  .legal-content {
    padding: 25px;
  }

  .legal-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }

  .legal-block h2 {
    font-size: 1.1em;
  }

  .legal-block p,
  .legal-block ul {
    font-size: 0.9em;
  }
}