/* Mise en page complémentaire reprenant l'identité visuelle existante du site. */
:root {
    --primary: #afc59f;
    --primary-dark: #7d966d;
    --accent: #D4A373;
    --bg-light: #F9F7F2;
    --text-main: #2C3E50;
    --text-light: #555;
    --white: #ffffff;
    --radius: 15px;
    --shadow: 0 12px 35px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; background-color: var(--bg-light); color: var(--text-main); line-height: 1.8; margin: 0; padding: 0 0 90px; overflow-x: hidden; }
header { background: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
.container { max-width: 1150px; margin: 0 auto; padding: 0 20px; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 0; }
.logo img { max-height: 280px; width: auto; padding: 5px 0; display: block; }
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text-main); font-weight: 600; }
.nav-links a:hover { color: var(--primary-dark); }
.btn-rdv { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; box-shadow: 0 5px 15px rgba(125,150,109,0.3); }
.wrapper-content { background: white; margin-top: 50px; padding: 50px; border-radius: 20px; box-shadow: var(--shadow); }
.breadcrumb { font-size: 0.85rem; color: #777; margin-bottom: 20px; }
.breadcrumb a { color: var(--primary-dark); }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: 2.7rem; color: var(--primary-dark); line-height: 1.2; margin-bottom: 30px; }
h2 { font-family: Georgia, 'Times New Roman', serif; color: var(--primary-dark); font-size: 2rem; margin: 38px 0 18px; line-height: 1.25; }
h3 { color: var(--primary-dark); font-size: 1.25rem; margin: 24px 0 10px; }
p { margin-bottom: 17px; }
ul { margin: 0 0 24px 24px; }
li { margin-bottom: 8px; }
a { color: var(--primary-dark); }
.highlight-box { background: #eef5e9; border-left: 5px solid var(--primary); padding: 25px; margin: 30px 0; border-radius: 0 12px 12px 0; }
.local-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin: 25px 0; }
.local-card { background: var(--bg-light); border: 1px solid #e1e9dc; border-radius: 15px; padding: 22px; }
.local-card h2, .local-card h3 { margin-top: 0; }
.cta-section { text-align: center; background: #f7f2eb; padding: 35px; border-radius: 15px; margin-top: 35px; }
.hamburger-icon { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger-icon span { width: 28px; height: 3px; background: var(--primary-dark); border-radius: 3px; }
.mobile-side-menu { position: fixed; top: 0; right: 0; height: 100vh; width: 280px; background: white; box-shadow: -5px 0 20px rgba(0,0,0,0.1); transform: translateX(100%); transition: transform 0.3s ease-in-out; z-index: 2000; padding-top: 80px; display: flex; flex-direction: column; }
.mobile-side-menu.active { transform: translateX(0); }
.mobile-side-link { padding: 15px 25px; color: var(--text-main); text-decoration: none; font-weight: 600; border-bottom: 1px solid #eee; }
.mobile-side-cta { padding: 25px; }
.menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 1500; }
.menu-overlay.active { display: block; }
.mobile-bottom-nav { display: none; }
footer { background: #1a2a21; color: white; padding: 40px 20px; text-align: center; margin-top: 50px; }
footer a { color: white; }

@media (max-width: 900px) {
    .nav-links, nav > .btn-rdv { display: none; }
    .hamburger-icon { display: flex; }
    .logo img { max-height: 90px; }
    .wrapper-content { margin-top: 25px; padding: 28px 22px; border-radius: 12px; }
    h1 { font-size: 2.05rem; }
    h2 { font-size: 1.65rem; }
    .mobile-bottom-nav { position: fixed; display: flex; bottom: 0; left: 0; right: 0; background: white; box-shadow: 0 -5px 20px rgba(0,0,0,0.05); z-index: 1000; padding: 10px 15px 25px; justify-content: space-around; align-items: flex-end; }
    .mobile-nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-light); font-size: 0.75rem; font-weight: 600; flex: 1; }
    .mobile-nav-item svg { width: 24px; height: 24px; margin-bottom: 4px; fill: currentColor; }
    .mobile-nav-item.highlight { color: white; background: var(--primary); width: 55px; height: 55px; border-radius: 50%; justify-content: center; margin-bottom: 5px; box-shadow: 0 5px 15px rgba(175,197,159,0.5); flex: none; }
    .mobile-nav-item.highlight svg { width: 28px; height: 28px; margin: 0; }
}
