*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary: #A8CFA5;
      --secondary: #CFE6CC;
      --tertiary: #DCEFDA;
      --black: #000;
      --title_icons: #614E47;
      --text: #3C302B;
      --white: #FEFEFE;
      --background-item: rgba(255,255,255,0.55);
      --nav-h: 60px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lohit Bengali', sans-serif;
      background-color: var(--primary);
      color: var(--text);
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-h);
      background-color: rgba(254, 254, 254, 0.04);
      backdrop-filter: blur(106px);
      display: flex;
      align-items: center;
      z-index: 1000;
    }

    .nav-logo {
      width: 120px;
      min-width: 120px;
      padding: 0 18px;
    }

    .nav-logo img {
      width: 70%;
      display: block;
    }

    .nav-links {
      flex: 1;
      display: flex;
      justify-content: center;
      gap: 12rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 0.88rem;
      letter-spacing: 0.05em;
      color: var(--brown);
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--green-dark); }

    .nav-cta {
      margin-right: 2rem;
      padding: 0.9rem 2rem;
      background-color: var(--secondary);
      border: 2px solid var(--primary);
      border-radius: 1.2rem;
      font-size: 0.83rem;
      letter-spacing: 0.04em;
      color: var(--brown);
      cursor: pointer;
      white-space: nowrap;
      text-decoration: none;
    }

    /* hamburger */
    /* .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0 18px; margin-left: auto; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: all 0.3s; } */

    /* ── HERO ── */
    #hero {
      position: relative;
      height: 480px;
      overflow: hidden;
    }

    .hero-img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(232,242,220,0.85) 45%, transparent 75%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 8%;
    }

    .hero-title {
      font-family: 'Dancing Script', cursive;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      color: var(--title_icons);
      line-height: 1.1;
    }

    .hero-divider {
      width: 200px;
      height: 1px;
      background: var(--title_icons);
      margin: 18px 0;
    }

    .hero-sub {
      font-size: clamp(0.9rem, 1.5vw, 1.05rem);
      font-weight: 300;
      color: var(--brown);
      max-width: 380px;
      line-height: 1.7;
    }

    /* ── SECTIONS WRAPPER ── */
    .content-wrap {
      padding: 60px 5%;
    }

    .content-background {
      background: var(--tertiary);
      border-radius: 10px;
      padding: 60px 5%;
    }

    .section-title {
      font-family: 'Dancing Script', cursive;
      font-size: clamp(1.9rem, 3.5vw, 2.8rem);
      color: var(--title_icons);
      text-align: center;
      margin-bottom: 40px;
    }

    .section-divider {
      width: 70%;
      max-width: 900px;
      margin: 60px auto;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--title_icons), transparent);
    }

    /* ── PRÉSENTATION ── */
   #presentation .pres-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
      max-width: 1100px;
      margin: 0 auto;
    }

    .pres-text p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
    .pres-text .highlight { color: var(--green-dark); font-weight: 700; }

    .pres-text .info-block { margin-top: 28px; }
    .pres-text .info-block p { font-size: 0.92rem; margin-bottom: 8px; }

    .map-container {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 24px rgba(106,79,58,0.15);
      height: 380px;
    }

    .map-container iframe { width: 100%; height: 100%; border: none; }

    /* ── PHOTOS & TRAVAUX ── */
    .photos-text {
      text-align:center;
      font-size:.92rem;
      max-width:800px
      ;margin:0 auto 36px;
      line-height:1.75;
      color:var(--text);
    }
    
    .tabs {
      display: flex;
      max-width: 1100px;
      margin: 0 auto 0;
      border-radius: 10px 10px 0 0;
    }

    .tab-btn {
      flex: 1;
      padding: 16px;
      background: var(--secondary);
      border: none;
      font-family: 'Dancing Script', cursive;
      font-size: 1.6rem;
      color: var(--text);
      cursor: pointer;
      border-radius: 5px 5px 0 0;
      z-index: 10;
    }

    .tab-btn.active { 
      background: var(--primary);
      box-shadow: 0 10px 15px var(--black); 
    }

    .tab-btn:hover:not(.active) { 
      background: var(--primary); 
    }

    .tab-panel {
      display: none;
      max-width: 1100px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--primary);
      border-radius: 0 0 10px 10px;
      overflow: hidden;
      position: relative;
      min-height: 600px;
    }

    .tab-panel.active { display: block; }

    .carousel {
      position: relative;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .carousel-track img {
      min-width: 100%;
      height: 600px;
      object-fit: fill;
      display: block;
    }

    .carousel-btn {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.8);
      border: none;
      width: 46px; height: 46px;
      border-radius: 50%;
      font-size: 1.4rem;
      cursor: pointer;
      color: var(--text);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
      /* z-index: 10; */
    }

    .carousel-btn:hover { background: rgba(255,255,255,1); }
    .carousel-btn.prev { left: 18px; }
    .carousel-btn.next { right: 18px; }

    /* ── TARIFS ── */
    .tarifs-list { max-width: 1100px; margin: 0 auto; }

    .tarif-title {
      display: flex;
      height: 100px;
      justify-content: center;
      align-items: center;
      background: var(--background-item);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 32px;
      box-shadow: 0 4px 20px rgba(106,79,58,0.1);
      font-family: 'Dancing Script', cursive;
      font-size: 1.9rem;
    }

    .tarif-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      align-items: stretch;
      background: var(--background-item);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 32px;
      box-shadow: 0 4px 20px rgba(106,79,58,0.1);
    }

    .tarif-item.reverse { direction: rtl; }
    .tarif-item.reverse > * { direction: ltr; }

    .tarif-item-table {
      display: flex;
      justify-content: center;
      align-items: stretch;
      background: var(--background-item);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 32px;
      box-shadow: 0 4px 20px rgba(106,79,58,0.1);
    }

    .tarif-item-table .tarif-info {
      width: 100%;
      flex-direction: row;
    }

    .tarif-table .sep {
      border-left: 2px solid var(--primary);
    }

    .tarif-img { height: 100%; overflow: hidden; }
    .tarif-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
    .tarif-item:hover .tarif-img img { transform: scale(1.04); }

    .tarif-info {
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .tarif-info h3 {
      font-family: 'Dancing Script', cursive;
      font-size: 1.9rem;
      margin-bottom: 12px;
      color: var(--brown);
    }

    .tarif-info p {
      font-size: 0.92rem;
      line-height: 1.75;
      color: var(--brown-light);
      margin-bottom: 18px;
    }

    .tarif-price {
      display: inline-block;
      padding: 8px 22px;
      background: var(--green-mid);
      border-radius: 30px;
      font-weight: 700;
      font-size: 1rem;
      color: var(--brown);
      align-self: flex-start;
    }

    .tarif-table {
      width: 100%;
      max-width: 900px;
      border-collapse: collapse;
      background: #f8f8f8;
      border-radius: 10px;
      overflow: hidden;
    }

    .tarif-table thead {
      background: var(--secondary);
    }

    .tarif-table th {
      padding: 15px;
      text-align: center;
      font-weight: 600;
      font-size: 16px;
    }

    .tarif-table thead tr:last-child th {
      font-size: 14px;
      color: var(--text);
    }

    .tarif-table td {
      padding: 12px 15px;
      text-align: center;
      font-size: 15px;
    }

    .tarif-table td:first-child {
      text-align: left;
      font-weight: 500;
      color: var(--text);
    }

    .tarif-table tbody tr:nth-child(even) {
      background: var(--white);
    }

    .tarif-table tbody tr:hover {
      background: var(--tertiary);
      transition: 0.2s;
    }

    /* ── BANDEAU ── */
    .bandeau {
      position: sticky;
      bottom: 120px; 
      width: 30%;
      margin: 0 40px 24px auto;
      background: var(--secondary);
      border: 1px solid var(--black);
      color: var(--text);
      padding: 16px 32px;
      border-radius: 12px;
      font-size: 1.4rem;
      text-align: center;
      z-index: 999;
    }

    /* MENTIONS LÉGALES */
    .mentions-content {
      display: flex;
      flex-direction: column;
      padding: 2rem;
      gap: 1rem;
    }

    .mentions-content ul {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .mentions-content ul li {
      list-style: none;
    }

    .mentions-content ul li::before {
      content: '- ';
    }

    .back {
      display: flex;
      gap: 1rem;
    }

    /* ── FOOTER ── */
    footer {
      position: sticky;
      bottom: 0;
      background: rgba(168, 200, 150, 0.97);
      backdrop-filter: blur(8px);
      border-top: 1px solid rgba(122,158,110,0.3);
      padding: 22px 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      z-index: 999;
    }

    .footer-left {
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 0.82rem;
      color: var(--brown);
    }

    .footer-left span { display: block; }
    .footer-left .copy { font-weight: 700; font-size: 0.78rem; }

    .footer-mid {
      font-size: 1rem;
      color: var(--brown);
      text-decoration: none;
      border-bottom: 1px solid var(--brown-light);
      padding-bottom: 1px;
      transition: opacity 0.2s;
    }

    .footer-mid:hover { opacity: 0.7; }

    .footer-socials { display: flex; gap: 14px; align-items: center; }

    .social-icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s, opacity 0.2s;
      overflow: hidden;
      text-decoration: none;
    }

    .social-icon i {
      font-size: 28px;
      color: var(--text);
      transition: opacity 0.2s;
    }

    .social-icon:hover i { transform: scale(1.1); opacity: 0.85; }

    /* ── RESPONSIVE ── */

.nav-links a i { display: none; }

@media (max-width: 900px) {
  .nav-links { gap: 1.5rem; }
}

@media (min-width: 768px) and (max-width: 1024px) {
  body {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }

  .content-wrap {
    flex: 1;
  }

  .mentions-content {
    padding: 2rem 4rem;
  }

  footer {
    position: sticky;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: var(--text);
    text-decoration: none;
  }

  .nav-links a i {
    display: block;
    font-size: 1.3rem;
    color: var(--title_icons);
  }

  .nav-cta {
    margin-right: 1rem;
    padding: 0.9rem;
  }

  /* présentation */
  #presentation .pres-grid { grid-template-columns: 1fr; }
  .map-container { height: 280px; }

  /* tarifs */
  .tarif-item,
  .tarif-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .tarif-img { height: 200px; }

  .tarif-info {
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 78%;
  }

  /* carousel : hauteur réduite */
  .carousel-track img { height: 220px; }
  .tab-panel { min-height: 222px; }

  /* bandeau */
  .bandeau {
    width: 90%;
    margin: 0 16px 16px;
    font-size: 1rem;
    bottom: 200px;
  }

  /* tableau tarifs */
  .tarif-table {
    font-size: 11px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .tarif-table th,
  .tarif-table td {
    padding: 8px 6px;
    font-size: 11px;
  }

  /* footer */
  footer { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  #hero { height: 360px; }
  .hero-overlay { padding: 0 6%; }
}