/* ============================================
   VARIABLES CSS - Palette Élégance Moderne
   ============================================ */
   :root {
    --primary-color: #8B7355;
    /* or cuivré, pour boutons et accents luxe */
    --secondary-color: #2C2C2C;
    /* noir profond, pour textes et headers */
    --accent-color: #D4B896;
    /* beige rosé doux, pour backgrounds subtils */
    --bg-color: #FAF8F5;
    /* crème très clair, fond général */
    --surface-color: #FFFFFF;
    /* blanc pur, cartes et sections */
    --text-color: #2C2C2C;
    /* texte principal */
    --text-muted: #6B6B6B;
    /* textes secondaires */
    --border-color: #E8E0D8;
    /* séparateurs élégants */
  }
  
  /* ============================================
     RESET & BASE
     ============================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-color);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
  }
  
  ul {
    list-style: none;
  }
  
  /* ============================================
     UTILITIES
     ============================================ */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--surface-color);
    border-color: var(--primary-color);
  }
  
  .btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--surface-color);
    transform: translateY(-2px);
  }
  
  .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
  
  /* ============================================
     NAVBAR
     ============================================ */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--surface-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  .navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
  }
  
  .nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
  
  .nav-link {
    color: var(--text-color);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after,
  .nav-link.active::after {
    width: 100%;
  }
  
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
  }
  
  /* ============================================
     HERO
     ============================================ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(232, 213, 196, 0.2) 100%),
                url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=1600') center/cover no-repeat;
    z-index: -1;
  }
  
  .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(250, 248, 246, 0.95) 0%, rgba(250, 248, 246, 0.7) 60%, transparent 100%);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  
  .hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
  }
  
  .hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.25rem;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateX(-50%) translateY(0);
    }
    40% {
      transform: translateX(-50%) translateY(-10px);
    }
    60% {
      transform: translateX(-50%) translateY(-5px);
    }
  }
  
  /* ============================================
     ABOUT
     ============================================ */
  .about {
    padding: 6rem 0;
    background-color: var(--surface-color);
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-image {
    position: relative;
  }
  
  .about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  
  .about-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary-color);
    color: var(--surface-color);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
  }
  
  .badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
  }
  
  .badge-text {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .about-content {
    padding-left: 2rem;
  }
  
  .about-text {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
  }
  
  .about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }
  
  .feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
  }
  
  .feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
  
  .feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  
  /* ============================================
     SERVICES
     ============================================ */
  .services {
    padding: 6rem 0;
    background-color: var(--bg-color);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .service-card {
    background-color: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--surface-color);
  }
  
  .service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
  }
  
  .service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 75px;
  }
  
  .service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  /* ============================================
     GALLERY
     ============================================ */
  .gallery {
    padding: 6rem 0;
    background-color: var(--surface-color);
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.9), rgba(232, 213, 196, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .gallery-overlay i {
    color: var(--surface-color);
    font-size: 2.5rem;
  }
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
  
  /* ============================================
     TEAM
     ============================================ */
  .team {
    padding: 6rem 0;
    background-color: var(--bg-color);
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  
  .team-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  }
  
  .team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
  }
  
  .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .team-card:hover .team-image img {
    transform: scale(1.05);
  }
  
  .team-content {
    padding: 2rem;
    text-align: center;
  }
  
  .team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
  }
  
  .team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  
  .team-bio {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  /* ============================================
     TESTIMONIALS
     ============================================ */
  .testimonials {
    padding: 6rem 0;
    background-color: var(--surface-color);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .testimonial-card {
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }
  
  .testimonial-rating {
    margin-bottom: 1.5rem;
  }
  
  .testimonial-rating i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-right: 0.25rem;
  }
  
  .testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .testimonial-author strong {
    color: var(--secondary-color);
    font-weight: 600;
  }
  
  .testimonial-author span {
    color: var(--text-muted);
    font-size: 0.875rem;
  }
  
  /* ============================================
     HORAIRES
     ============================================ */
  .horaires {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--bg-color) 100%);
  }
  
  .horaires-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--surface-color);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .horaires-list {
    margin: 2.5rem 0;
  }
  
  .horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-color);
  }
  
  .horaire-item:last-child {
    border-bottom: none;
  }
  
  .horaire-item .day {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 1.125rem;
  }
  
  .horaire-item .time {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .horaire-item.closed .time {
    color: var(--text-muted);
    font-style: italic;
  }
  
  .horaires-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: 10px;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-color);
  }
  
  .info-item i {
    color: var(--primary-color);
    font-size: 1.125rem;
  }
  
  /* ============================================
     FOOTER
     ============================================ */
  .footer {
    background-color: var(--secondary-color);
    color: var(--surface-color);
    padding: 4rem 0 2rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-logo i {
    color: var(--primary-color);
    font-size: 1.5rem;
  }
  
  .footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--surface-color);
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--surface-color);
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-contact i {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
  }
  
  .footer-legal a:hover {
    color: var(--primary-color);
  }
  
  /* ============================================
     SCROLL TO TOP
     ============================================ */
  .scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--surface-color);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
  }
  
  .scroll-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .scroll-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
  }
  
  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 1024px) {
    .section-title {
      font-size: 2rem;
    }
  
    .about-grid,
    .team-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .about-content {
      padding-left: 0;
    }
  
    .services-grid,
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .nav-menu {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 80px);
      background-color: var(--surface-color);
      flex-direction: column;
      align-items: flex-start;
      padding: 2rem;
      gap: 1.5rem;
      transition: left 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-toggle {
      display: flex;
    }
  
    .nav-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }
  
    .nav-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
  
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.25rem;
    }
  
    .hero-buttons {
      flex-direction: column;
    }
  
    .services-grid,
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
  
    .horaires-wrapper {
      padding: 2rem 1.5rem;
    }
  
    .horaire-item {
      padding: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
  
    .section-title {
      font-size: 1.75rem;
    }
  
    .btn {
      padding: 0.75rem 1.5rem;
      font-size: 0.95rem;
    }
  
    .about-image img {
      height: 400px;
    }
  
    .about-badge {
      bottom: 1rem;
      right: 1rem;
      padding: 1.5rem;
    }
  
    .badge-number {
      font-size: 2rem;
    }
  }