:root {
    --brown: #6B3E2E;
    --brown-dark: #4A2A1C;
    --beige: #C4A882;
    --beige-light: #DFC9A8;
    --cream: #F5F0E8;
    --cream-dark: #EDE4D4;
    --white: #FFFFFF;
    --text: #3A2A1A;
    --text-light: #7A6A5A;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --shadow: 0 4px 24px rgba(107,62,46,0.12);
    --shadow-lg: 0 12px 48px rgba(107,62,46,0.18);
    --radius: 12px;
    --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; color: var(--brown-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; }
p { color: var(--text-light); }

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 0.5rem;
    display: block;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary { background: var(--brown); color: var(--white); }
.btn-primary:hover { background: var(--brown-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-secondary:hover { background: var(--brown); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* NAVBAR */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 20px 0;
    transition: all var(--transition);
}
#navbar.scrolled {
    background: rgba(245,240,232,0.97);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(107,62,46,0.1);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-serif); font-size: 1.05rem;
    color: var(--white); transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--brown-dark); }
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--beige); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.9); transition: color var(--transition);
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active { color: var(--beige) !important; }
.nav-cta {
    background: var(--brown) !important;
    color: var(--white) !important;
    padding: 10px 22px; border-radius: 50px;
}
.nav-cta:hover { background: var(--brown-dark) !important; }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
    position: relative; z-index: 1001;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all var(--transition); }
#navbar.scrolled .nav-toggle span { background: var(--brown); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--brown); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--brown); }

/* HERO */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(74,42,28,0.45) 0%, rgba(74,42,28,0.25) 50%, rgba(74,42,28,0.65) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    text-align: center; color: var(--white);
    padding: 0 24px; max-width: 820px;
}
.hero-badge {
    display: inline-block; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--beige-light); margin-bottom: 1.5rem;
    padding: 6px 20px; border: 1px solid rgba(196,168,130,0.5); border-radius: 50px;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-content h1 em { color: var(--beige-light); font-style: italic; }
.hero-subtitle { font-size: 1.08rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2.5rem; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%); color: rgba(255,255,255,0.6);
    font-size: 1.4rem; animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* PAGE HERO (sous-pages) */
.page-hero {
    padding: 160px 24px 80px;
    text-align: center; position: relative; overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.35);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; margin: 1rem auto 0; }

/* INTRO */
.intro { padding: 100px 0; background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { margin-bottom: 2rem; font-size: 1.02rem; line-height: 1.85; }
.intro-image { position: relative; }
.intro-image img { border-radius: 20px; height: 500px; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.intro-badge {
    position: absolute; bottom: -20px; left: -20px;
    background: var(--white); border-radius: var(--radius);
    padding: 14px 22px; display: flex; align-items: center;
    gap: 10px; box-shadow: var(--shadow);
    font-family: var(--font-serif); font-size: 0.9rem; color: var(--brown);
}
.badge-icon { font-size: 1.4rem; }

/* ACTIVITIES HOME */
.activities-home { padding: 100px 0; background: var(--white); }
.activities-home h2 { margin-bottom: 3rem; }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.activity-card {
    border-radius: 20px; overflow: hidden;
    background: var(--cream); box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition); display: block;
}
.activity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.activity-img { position: relative; height: 240px; overflow: hidden; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.activity-card:hover .activity-img img { transform: scale(1.06); }
.activity-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(74,42,28,0.4), transparent); }
.activity-info { padding: 26px; }
.activity-info h3 { color: var(--brown-dark); margin-bottom: 0.6rem; font-size: 1.2rem; }
.activity-info p { font-size: 0.88rem; margin-bottom: 1rem; }
.activity-link { color: var(--brown); font-weight: 700; font-size: 0.88rem; }

/* GALLERY STRIP */
.gallery-strip { overflow: hidden; }
.gallery-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    height: 240px;
}
.gallery-strip-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-strip-grid img:hover { transform: scale(1.06); }

/* CTA */
.cta-section { padding: 100px 0; position: relative; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.3); }
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section > .container > p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.02rem; }
.cta-contacts { display: flex; justify-content: center; gap: 40px; margin-bottom: 2.5rem; flex-wrap: wrap; }
.cta-contact {
    display: flex; align-items: center; gap: 10px;
    color: var(--beige-light); font-size: 1.05rem;
    font-family: var(--font-serif); transition: color var(--transition);
}
.cta-contact:hover { color: var(--white); }

/* ACTIVITES PAGE */
.activites-page { padding: 80px 0; background: var(--cream); }
.activite-card-big {
    display: grid; grid-template-columns: 1fr 1fr;
    border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-lg); margin-bottom: 48px; background: var(--white);
}
.activite-card-big.reverse { direction: rtl; }
.activite-card-big.reverse > * { direction: ltr; }
.activite-card-big img { width: 100%; height: 380px; object-fit: cover; }
.activite-card-content { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.activite-card-content h2 { margin-bottom: 1rem; }
.activite-card-content p { margin-bottom: 1.5rem; }

/* ACTIVITY PAGE */
.activity-page { padding: 80px 0; background: var(--cream); }
.activity-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.activity-intro img { border-radius: 20px; height: 460px; object-fit: cover; box-shadow: var(--shadow-lg); }
.activity-intro-text h2 { margin-bottom: 1.5rem; }
.activity-intro-text p { margin-bottom: 1rem; font-size: 1.02rem; }

/* OFFERS */
.offers-section { padding: 60px 0; background: var(--white); }
.offers-section h2 { text-align: center; margin-bottom: 3rem; }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.offer-card {
    background: var(--cream); border-radius: var(--radius);
    padding: 32px; box-shadow: var(--shadow); border-top: 4px solid var(--beige);
}
.offer-card h3 { color: var(--brown); margin-bottom: 0.75rem; }
.offer-card p { font-size: 0.88rem; margin-bottom: 1rem; }
.offer-list { display: flex; flex-direction: column; gap: 6px; }
.offer-list li {
    display: flex; justify-content: space-between;
    font-size: 0.88rem; color: var(--text-light);
    padding: 6px 0; border-bottom: 1px dotted var(--beige-light);
}
.offer-list li span { color: var(--brown); font-weight: 700; }
.offer-note { font-size: 0.8rem; color: var(--text-light); font-style: italic; margin-top: 1rem; }

/* PHOTO GRID */
.photo-section { padding: 60px 0; background: var(--cream); }
.photo-section h2 { text-align: center; margin-bottom: 2.5rem; }
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.photo-grid img { border-radius: var(--radius); height: 220px; width: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-grid img:hover { transform: scale(1.02); }

/* INFOS & TARIFS */
.infos-page { padding: 80px 0; background: var(--cream); }
.infos-intro { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.infos-intro h2 { margin-bottom: 1rem; }
.tarifs-sections { display: flex; flex-direction: column; gap: 40px; }
.tarif-block { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.tarif-block h3 { color: var(--brown); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--cream-dark); font-size: 1.3rem; }
.tarif-sub { font-size: 0.85rem; color: var(--beige); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin: 1.5rem 0 0.75rem; }
.tarif-list { display: flex; flex-direction: column; gap: 4px; }
.tarif-item {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 8px 0; border-bottom: 1px dotted var(--beige-light);
}
.tarif-item span:first-child { color: var(--text); font-size: 0.92rem; flex: 1; }
.tarif-item span:last-child { color: var(--brown); font-weight: 700; font-family: var(--font-serif); white-space: nowrap; margin-left: 16px; }
.tarif-note { font-size: 0.82rem; color: var(--text-light); font-style: italic; margin-top: 1rem; }
.info-banner { background: var(--brown); color: var(--white); border-radius: 20px; padding: 40px; margin-top: 40px; }
.info-banner h3 { color: var(--beige-light); margin-bottom: 1.5rem; }
.info-banner p { color: rgba(255,255,255,0.85); margin-bottom: 0.75rem; }
.info-banner strong { color: var(--beige-light); }

/* PLANNING */
.planning-section { padding: 60px 0; background: var(--white); }
.planning-section h2 { text-align: center; margin-bottom: 2.5rem; }
.planning-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.planning-card { background: var(--cream); border-radius: var(--radius); padding: 24px; text-align: center; border-top: 4px solid var(--beige); }
.planning-card h4 { color: var(--brown); margin-bottom: 0.5rem; }
.planning-card p { font-size: 0.88rem; }

/* À PROPOS */
.apropos-page { padding: 80px 0; background: var(--cream); }
.apropos-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.apropos-img { position: relative; }
.apropos-img img { border-radius: 20px; width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.apropos-img::after {
    content: ''; position: absolute;
    top: 20px; left: 20px; right: -20px; bottom: -20px;
    border: 3px solid var(--beige); border-radius: 20px; z-index: -1;
}
.apropos-text h2 { margin-bottom: 1.5rem; }
.apropos-text p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.9; }
.specialites { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.spec-tag {
    background: var(--cream-dark); color: var(--brown);
    padding: 6px 16px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 700;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px; text-align: center; box-shadow: var(--shadow); }
.value-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h4 { color: var(--brown); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; }

/* CONTACT */
.contact-page { padding: 80px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info h2 { margin-bottom: 2rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-icon {
    width: 48px; height: 48px; background: var(--brown);
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-item-text p:first-child { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); }
.contact-item-text p:last-child { color: var(--text-light); }
.contact-form { background: var(--white); border-radius: 24px; padding: 48px; box-shadow: var(--shadow-lg); }
.contact-form h3 { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px;
    border: 1.5px solid var(--beige-light); border-radius: 10px;
    font-family: var(--font-sans); font-size: 0.92rem;
    color: var(--text); background: var(--cream);
    transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--brown); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-section { margin-top: 60px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }

/* FOOTER */
footer { background: var(--brown-dark); color: var(--white); padding: 60px 0 0; }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(196,168,130,0.2);
}
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; }
footer h4 { color: var(--beige-light); margin-bottom: 1rem; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--beige-light); }
.footer-contact p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 6px; }
.footer-social { display: flex; gap: 16px; margin-top: 14px; }
.footer-social a { color: var(--beige-light); font-size: 0.85rem; font-weight: 700; transition: color var(--transition); }
.footer-social a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .intro-grid, .activity-intro, .apropos-content, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .activities-grid { grid-template-columns: 1fr; }
    .activite-card-big { grid-template-columns: 1fr; }
    .activite-card-big img { height: 260px; }
    .activite-card-big.reverse { direction: ltr; }
    .activite-card-content { padding: 36px; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .photo-grid { grid-template-columns: 1fr 1fr; }
    .gallery-strip-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: var(--cream); flex-direction: column;
        justify-content: center; align-items: center; gap: 32px; z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { color: var(--brown-dark) !important; font-size: 1.1rem; }
    .nav-toggle { display: flex; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .photo-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .intro-badge { left: 0; bottom: -16px; }
    .apropos-img::after { display: none; }
    .gallery-strip-grid { grid-template-columns: repeat(2, 1fr); }
    .infos-grid { grid-template-columns: 1fr; }
}

/* HERO VIDEO */
video.hero-bg {
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 1s ease;
}
#hero-photo-bg { z-index: 0; }
video.hero-bg.fade-out { opacity: 0; }

/* BULLE WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 60px;
}
.whatsapp-float:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.55); transform: translateY(-2px); }
.whatsapp-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.whatsapp-icon svg { width: 32px; height: 32px; fill: white; }
.whatsapp-label {
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    overflow: hidden;
}
.whatsapp-float:hover .whatsapp-label {
    max-width: 200px;
    opacity: 1;
    padding-right: 24px;
}
@media (max-width: 768px) {
    .whatsapp-float { bottom: 16px; right: 16px; height: 54px; }
    .whatsapp-icon { width: 54px; height: 54px; }
    .whatsapp-icon svg { width: 28px; height: 28px; }
}

/* LIENS DE CONTACT */
.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--cream);
    border-radius: 14px;
    margin-bottom: 14px;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
}
.contact-link:hover {
    border-color: var(--beige);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}
.contact-link-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: white;
}

.contact-link-text { flex: 1; display: flex; flex-direction: column; }
.contact-link-text strong { color: var(--brown-dark); font-size: 1.05rem; font-family: var(--font-serif); }
.contact-link-text span { color: var(--text-light); font-size: 0.88rem; }
.contact-link-arrow { color: var(--beige); font-size: 1.3rem; font-weight: 700; }
/* CONTOUR NOIR SUR LES TEXTES HERO 

.hero-content h1,
.hero-content .hero-subtitle,
.hero-content .hero-badge,
.page-hero h1,
.page-hero p {
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        0 0 8px rgba(0,0,0,0.5);
}*/

/* ===========================
   PERFORMANCE - FOND DU HERO
   Image legere sur mobile, plus grande sur ordinateur
=========================== */
#hero-photo-bg {
    background-image: url('images/hero-poster-mobile.jpg');
}
@media (min-width: 769px) {
    #hero-photo-bg {
        background-image: url('images/hero-poster.jpg');
    }
}
