/* ============================================
   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;
}

/* --- 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);
}

/* --- 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;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
}

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

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

.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: 50px 0;
    background: var(--white);
}

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

.features__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.features__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.features__item:hover .features__icon {
    transform: translateY(-4px) scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(15, 77, 58, 0.25));
}

.features__icon svg {
    width: 100%;
    height: 100%;
    transition: stroke 0.3s ease;
}

.features__item:hover .features__icon svg {
    stroke: var(--green-light);
}

.features__text {
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
    line-height: 1.4;
}

.features__text strong {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.features__desc {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* ============================================
   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;
}

/* ============================================
   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;
}

/* ============================================
   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) {
    .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: 20px;
    }

    .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: 40px 30px;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .story__title {
        font-size: 2rem;
    }

    .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: 1fr;
    }

    .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;
    }
}
