/* ============================================
   La Source - Luxury Spa & Wellness
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark: #0f4d3a;
    --green-medium: #1a6b50;
    --green-light: #2a7d62;
    --gold: #c8a46e;
    --cream: #faf6f1;
    --cream-dark: #f0ebe3;
    --text-dark: #1a1a1a;
    --text-body: #555555;
    --white: #ffffff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed,
.reveal--left.revealed,
.reveal--right.revealed,
.reveal--scale.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-white {
    background: var(--white);
    color: var(--green-dark);
}

.btn-white:hover {
    background: var(--cream);
}

.btn-green {
    background: var(--green-dark);
    color: var(--white);
}

.btn-green:hover {
    background: var(--green-light);
}

.btn-outline-green {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-dark);
}

.btn-outline-green:hover {
    background: var(--green-dark);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--green-dark);
}

/* --- Section label --- */
.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '\2727';
    margin: 0 6px;
    font-size: 0.7rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    height: 48px;
}

.navbar__logo-img {
    height: 100%;
    width: auto;
    transition: opacity 0.3s ease;
}

.navbar__logo-img--green {
    display: none;
}

.navbar--scrolled .navbar__logo-img--white {
    display: none;
}

.navbar--scrolled .navbar__logo-img--green {
    display: block;
}

.navbar__nav {
    display: flex;
    gap: 32px;
}

.navbar__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-dark);
    transition: width 0.3s ease;
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar--scrolled .navbar__link {
    color: var(--text-dark);
}

.navbar__link:hover {
    color: var(--white);
}

.navbar--scrolled .navbar__link:hover {
    color: var(--green-dark);
}

.navbar__cta {
    padding: 10px 22px;
    font-size: 0.8rem;
}

.navbar--scrolled .navbar__cta {
    background: var(--green-dark);
    color: var(--white);
}

.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__burger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar--scrolled .navbar__burger span {
    background: var(--text-dark);
}

.navbar__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__burger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero__overlay {
    position: relative;
    z-index: 2;
    padding: 120px 60px 80px;
    max-width: 700px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 30px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero__offer {
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__offer svg {
    flex-shrink: 0;
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features {
    padding: 70px 0;
    background: var(--white);
    text-align: center;
}

.features__heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.features__card {
    text-align: center;
}

.features__img {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--green-dark);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.features__card:hover .features__img {
    transform: scale(1.08);
    border-color: var(--green-light);
    box-shadow: 0 8px 24px rgba(15, 77, 58, 0.2);
}

.features__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.features__card:hover .features__img img {
    transform: scale(1.1);
}

.features__card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.features__card:hover .features__card-title {
    color: var(--green-dark);
}

.features__card-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ============================================
   OUR STORY
   ============================================ */
.story {
    padding: 80px 0 40px;
    background: var(--cream);
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story__flower {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.story__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.story__text {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: var(--text-body);
}

.story__text a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.story__actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.story__phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story__phone-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
}

.story__phone-label {
    font-size: 0.8rem;
    color: var(--text-body);
}

.story__phone-number {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.story__image-wrapper {
    position: relative;
}

.story__image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.story__image-wrapper:hover .story__image {
    transform: scale(1.03);
}

.story__image-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.story__badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    z-index: 2;
    transition: transform 0.4s ease;
}

.story__image-wrapper:hover .story__badge {
    transform: translateX(-50%) rotate(15deg) scale(1.1);
}

.story__badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================
   IMAGINEZ VOTRE EXPÉRIENCE
   ============================================ */
.imagine {
    padding: 80px 0;
    background: var(--white);
}

.imagine__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.imagine__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.imagine__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.imagine__image-wrapper:hover .imagine__image {
    transform: scale(1.03);
}

.imagine__title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.imagine__lead {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--green-dark);
    margin-bottom: 16px;
    line-height: 1.6;
}

.imagine__text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 10px;
}

.imagine__subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark);
    margin: 24px 0 16px;
}

.imagine__list {
    list-style: none;
    padding: 0;
}

.imagine__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 10px;
}

.imagine__list-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   DISPONIBILITÉS & CONDITIONS
   ============================================ */
.availability {
    padding: 80px 0;
    background: var(--cream);
}

.availability__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.availability__title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 28px;
}

.availability__schedules {
    margin-bottom: 30px;
}

.availability__schedule-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 14px;
}

.availability__schedule-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.availability__subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.availability__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.availability__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 10px;
}

.availability__list li svg {
    flex-shrink: 0;
}

.availability__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.availability__image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.availability__image-wrapper:hover .availability__image {
    transform: scale(1.03);
}

/* ============================================
   CITATION
   ============================================ */
.quote-section {
    padding: 70px 0;
    background: var(--cream);
    text-align: center;
}

.quote-section__quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
    color: var(--green-dark);
    line-height: 1.5;
    max-width: 750px;
    margin: 0 auto;
}

/* ============================================
   EXPERIENCES (Section 3)
   ============================================ */
.experiences {
    padding: 80px 0;
    background: var(--cream-dark);
    text-align: center;
}

.experiences__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    max-width: 650px;
    margin: 0 auto 30px;
}

.experiences__intro {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
}

.experiences__intro p {
    margin-bottom: 12px;
}

.experiences__subtitle {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 36px;
}

.experiences__closing {
    max-width: 650px;
    margin: 40px auto 0;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    border-top: 1px solid #ddd;
    padding-top: 30px;
}

/* Galerie images dans Experiences */
.experiences__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.experiences__gallery-card {
    text-align: center;
}

.experiences__gallery-img {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--green-dark);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.experiences__gallery-card:hover .experiences__gallery-img {
    transform: scale(1.08);
    border-color: var(--green-light);
    box-shadow: 0 8px 24px rgba(15, 77, 58, 0.25);
}

.experiences__gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experiences__gallery-card:hover .experiences__gallery-img img {
    transform: scale(1.1);
}

.experiences__gallery-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.experiences__gallery-card:hover .experiences__gallery-title {
    color: var(--green-dark);
}

.experiences__gallery-desc {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-final__bg {
    position: absolute;
    inset: 0;
}

.cta-final__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-final__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 77, 58, 0.92), rgba(10, 50, 38, 0.95));
}

.cta-final__inner {
    position: relative;
    z-index: 2;
}

.cta-final__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-final__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-final__micro {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 30px 0;
    background: var(--cream);
    border-top: 1px solid #e0dbd4;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 0.85rem;
    transition: all 0.3s;
}

.footer__social a:hover {
    border-color: var(--green-dark);
    color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer__social a {
    transition: all 0.3s ease;
}

.footer__copy {
    font-size: 0.85rem;
    color: var(--text-body);
}

.footer__credit {
    font-size: 0.85rem;
    color: var(--text-body);
}

.footer__credit strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 34px;
    width: 44px;
    height: 44px;
    background: var(--green-dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--green-light);
}

/* ============================================
   DECORATIVE ELEMENT (top-right leaf)
   ============================================ */
.deco-leaf {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    opacity: 0.25;
    pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .navbar__cta {
        display: none;
    }

    .navbar__burger {
        display: flex;
    }

    .navbar__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 40px 40px;
        gap: 24px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .navbar__nav.active {
        right: 0;
    }

    .navbar__nav .navbar__link {
        color: var(--text-dark);
        font-size: 1.1rem;
    }

    .navbar__nav .navbar__link:hover {
        color: var(--green-dark);
    }

    .hero__title {
        font-size: 2.8rem;
    }

    .story__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story__image-wrapper {
        order: -1;
    }

    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .imagine__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .availability__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .availability__image-wrapper {
        order: -1;
    }

    .experiences__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .quote-section__quote {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 450px;
    }

    .hero__overlay {
        padding: 100px 30px 40px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .story__title {
        font-size: 2rem;
    }

    .imagine__title {
        font-size: 1.8rem;
    }

    .imagine__image {
        height: 350px;
    }

    .availability__title {
        font-size: 1.8rem;
    }

    .availability__image {
        height: 350px;
    }

    .cta-final__title {
        font-size: 2rem;
    }

    .cta-final {
        padding: 60px 0;
    }

    .cta-final__buttons {
        flex-direction: column;
        align-items: center;
    }

    .experiences__title {
        font-size: 2rem;
    }

    .experiences__grid {
        grid-template-columns: 1fr;
    }

    .stats__inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer__inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features__img {
        width: 120px;
        height: 120px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .experiences__title {
        font-size: 1.6rem;
    }

    .experiences__gallery {
        grid-template-columns: 1fr;
    }

    .quote-section__quote {
        font-size: 1.3rem;
    }
}
