/* ==============================
   GLOBAL STYLES
   ============================== */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #FFFAF0;
    color: #333;
    line-height: 1.7;
}

/* ==============================
   CONTAINER & STRUCTURE
   ============================== */
.container {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

/* ==============================
   HEADER
   ============================== */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
    max-width: 150px;
    height: auto;
}

/* ==============================
   NAVIGATION
   ============================== */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #FFF;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: all 0.3s ease-in-out;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #CF4A39;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

nav a:hover::after,
nav a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* ==============================
   SECTIONS & TEXT STYLING
   ============================== */
section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #CF4A39;
    text-align: center;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ==============================
   BURGER MENU
   ============================== */
.burger {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
    background: #CF4A39;
    border: none;
    cursor: pointer;
    display: none;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.burger span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background: #fff;
}

/* ==============================
   SIDEBAR MENU
   ============================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    transition: left 0.3s ease-in-out;
    z-index: 1003;
}

.sidebar.active {
    left: 0;
}

.sidebar a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    font-size: 18px;
    display: block;
}

.burger.close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #CF4A39;
    padding: 8px;
    border-radius: 5px;
}

.burger.close span {
    background: #fff;
}

/* ==============================
   FOOTER
   ============================== */
footer {
    background-color: #86563B;
    color: white;
    text-align: center;
    padding-top: 1px
}

footer a {
    color: #CF4A39;
    text-decoration: none;
    font-weight: bold;
}
footer p:not(.avis-google p) {
  line-height: 1.3;
  margin: 11px 0;
}
/* ==============================
   AVIS GOOGLE FOOTER
   ============================== */
.avis-google {
      padding: 1px;
      background: transparent;
      text-align: center;
    max-width: 100%;
    }

    .note-globale {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .carousel-container {
      position: relative;
      max-width: 100%;
      overflow: hidden;
    }

    .liste-avis {
      display: flex;
      flex-direction: row;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
      justify-content: center;
    }

    .carte-avis {
      flex: 0 0 300px;
      max-width: 300px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      padding: 7px;
      text-align: left;
      font-size: 0.9rem;
      box-sizing: border-box;
        
    }

    .profil {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      margin-bottom: -13px;
    }

    .profil img {
      border-radius: 50%;
      width: 75px;
      height: 75px;
    }

    .infos-profil {
      text-align: center;
    }

    .nom {
      font-weight: bold;
      margin: 0;
      text-align: center;
        color: #000;
    }

    .badge-google {
      display: inline-block;
      margin:  auto 0 auto;
      padding: 1px 10px;
      background: #4285f4;
      color: white;
      font-size: 0.75rem;
      border-radius: 20px;
      font-weight: bold;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    .date {
      font-size: 0.75rem;
      color: #888;
      margin: 4px 0;
      text-align: center;
    }

    .etoiles {
      text-align: center;
      color: #f7b500;
      margin: 2px 0;
      font-size: 1.2rem;
    }

    .commentaire {
      color: #333;
      margin-bottom: 1px;
      text-align: center;
    }

    .lire-suite {
      font-size: 0.8rem;
      color: #cf4a39;
      cursor: pointer;
      text-decoration: underline;
      display: block;
      text-align: center;
      margin-top: 6px;
    }

    .popup {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup.show {
      display: flex;
    }

    .popup-overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .popup-content {
      position: relative;
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      max-width: 400px;
      z-index: 2;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  	color: #000;
    }

    .popup .close {
      position: absolute;
      right: 12px;
      top: 8px;
      cursor: pointer;
      font-size: 24px;
      color: #cf4a39;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #cf4a39;
      border: none;
      color: white;
      font-size: 2rem;
      padding: 0 10px;
      cursor: pointer;
      z-index: 1;
      border-radius: 8px;
    }

    .carousel-btn.left {
      left: 10px;
    }

    .carousel-btn.right {
      right: 10px;
    }

    .btn-avis-google {
      display: inline-block;
      margin: 20px;
      background: #cf4a39;
      color: white;
      padding: 12px 24px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .btn-avis-google:hover {
      background: #a73628;
    }



/* ==============================
   PRICE TABLE
   ============================== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
}

.price-table thead {
    background-color: #CF4A39;
    color: white;
}

.price-table th, .price-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* ==============================
   MAP STYLING
   ============================== */
.map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    margin-top: 20px;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .burger {
        display: block;
    }
    .sidebar {
        z-index: 1004;
    }
	h1 {
        font-size: 1.4rem; /* ou ajuste à ton goût */
        text-align: center;
        padding: 10px;
    }

    header {
        flex-direction: column;
        align-items: center;
    }

    header img {
        max-width: 100px;
        margin-bottom: 10px;
    }
  .liste-avis {
    justify-content: flex-start
    }