  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    
    
  }


  html, body {
    font-family: sans-serif;
    background-color: #F2D7B6;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
  }

  *, *::before, *::after {
    box-sizing: inherit;
    max-width: 100%;
  }


  .hero {
    background-color: #fdfaf7;
    padding: 60px 32px;
  }

  .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
  }

  .hero-text {
    flex: 1;
    min-width: 300px;
  }

  .hero-text h1 {
    font-size: 42px;
    color: #6a3a18;
    margin-bottom: 24px;
    font-weight: 700;
  }

  .hero-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
    max-width: 500px;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-primary {
    background-color: #401201;
    color: #fff;
  }

  .btn-primary:hover {
    background-color: #92683e;
  }

  .btn-secondary {
    background-color: #f4ede4;
    color: #6a3a18;
  }

  .btn-secondary:hover {
    background-color: #e9e0d3;
  }

  .hero-image {
    flex: 1;
    position: relative;
    min-width: 300px;
  }

  .hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }


  .floating-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background-color: white;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14;
  }

  .features {
    background-color:#F2D7B6;
    padding: 80px 32px;
  }

  .features-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .features-header h2 {
    font-size: 28px;
    color: #6a3a18;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .features-header p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-4px);
  }

  .feature-card .icon {
    font-size: 28px;
    color: #a87847;
    margin-bottom: 16px;
  }

  .feature-card h3 {
    font-size: 18px;
    color: #6a3a18;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .feature-card p {
    font-size: 14px;
    color: #555;
  }
  .spaces {
    padding: 80px 32px;
    background-color: #F2D7B6;
    text-align: center;
  }

  .spaces-header h2 {
    font-size: 28px;
    color: #6a3a18;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .spaces-header p {
    font-size: 16px;
    color: #555;
    margin-bottom: 48px;
  }

  .space-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 48px;
  }

  .space-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }

  .space-card:hover {
    transform: translateY(-6px);
  }

  .space-img {
    position: relative;
    overflow: hidden;
    height: 180px;
  }

  .space-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .space-card:hover .space-img img {
    transform: scale(1.05);
  }

  .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #401201;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .space-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .space-info h3 {
    font-size: 18px;
    color: #6a3a18;
    margin-bottom: 4px;
  }

  .space-info .location,
  .space-info .availability {
    font-size: 14px;
    color: #555;
  }

  .space-info .details {
    font-size: 14px;
    color: #4a2d16;
    font-weight: 500;
    margin-top: 6px;
  }

  .inline-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
  }

  .btn-reserve {
    margin-top: 12px;
    align-self: flex-start;
    background-color: #a87847;
    color: white;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(168, 120, 71, 0.15);
  }

  .btn-reserve:hover {
    background-color: #92683e;
    box-shadow: 0 6px 18px rgba(168, 120, 71, 0.25);
  }

  .spaces-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
  }

  .spaces-footer .btn-secondary {
    background-color: #f4ede4;
    color: #6a3a18;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .spaces-footer .btn-secondary:hover {
    background-color: #e9dcc6;
  }

  .footer-help {
    font-size: 14px;
    color: #6a3a18;
    text-align: center;
  }

  .footer-help a {
    color: #401201;
    font-weight: 500;
    text-decoration: underline;
  }

  .footer-help a:hover {
    text-decoration: none;
  }
  /* ---- Section container ---- */
  .cta-location-light {
    background: linear-gradient(135deg, #fffdf9, #fdf3ea);
    padding: 60px 20px;
    margin: 80px auto;
    border-radius: 20px;
    text-align: center;
    max-width: 1000px;

    /* ✅ Cadre et ombre douce */
    border: 1px solid #eadcd0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
  }

  .cta-location-container h2 {
    font-size: 24px;
    color: #5a341c;
    font-weight: 700;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
  }

  .cta-light-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #401201;
    color: #faeee1;
    border: 1px solid #a87847;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }


  .cta-light-button:hover {
    transform: translateY(-2px);
  }

  .icon-btn {
    width: 18px;
    height: 18px;
    display: inline-block;
  }

  @media (max-width: 768px) {
    .cta-location-light {
      background: linear-gradient(135deg, #fffdf9, #fdf3ea);
      padding: 40px 16px;
      margin: 40px auto;
      border-radius: 20px;
      text-align: center;
      width: 90%;
      max-width: 100%;
    
      border: 1px solid #eadcd0;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
      transition: box-shadow 0.3s ease;
    }
  }


  /* Animation d'apparition */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .faq {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
    background:none;
  }

  .faq-title {
    font-size: 28px;
    color: #6a3a18;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .faq-item {
    border: 1px solid #e5d7c5;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background-color: white;
  }

  .faq-item.open {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  }

  .faq-question {
    width: 100%;
    text-align: left;
    background-color: #FDFAF6;
    border: none;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #5a341c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .faq-question::after {
    content: "+";
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .faq-item.open .faq-question::after {
    transform: rotate(45deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 15px;
    color: #444;
  }

  .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
  }
  .faq-footer-link {
    text-align: center;
    margin-top: 32px;
    margin-bottom: 3%;
  }

  .faq-footer-link .btn-secondary {
    background-color: #f4ede4;
    color: #6a3a18;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }

  .faq-footer-link .btn-secondary:hover {
    background-color: #e9dcc6;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }




  .avis-section {
    padding: 50px 20px;
    text-align: center;
  }

  .avis-section h2 {
    font-size: 1.6rem;
    color: #6a3a18;
    font-weight: 600;
    margin-bottom: 30px;
  }

  .avis-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .avis-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }

  .avis-card {
    min-width: 100%;
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    text-align: left;
    font-size: 1rem;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }

  .avis-card p {
    font-style: italic;
    margin-bottom: 12px;
  }

  .avis-card strong {
    color: #a87847;
    font-weight: 600;
  }

  /* Flèches */
  .carousel-prev,
  .carousel-next {
    background: none;
    border: none;
    font-size: 2rem;
    color: #a87847;
    cursor: pointer;
    padding: 12px;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  .carousel-prev:hover,
  .carousel-next:hover {
    transform: scale(1.1);
    color: #6a3a18;
  }

  .carousel-prev {
    position: absolute;
    left: -10px;
  }

  .carousel-next {
    position: absolute;
    right: -10px;
  }



