/* ===================================================== */
/* 🎨 VARIABLES GLOBALES */
/* ===================================================== */
:root {
    --gold-light: #f4d03f;
    --gold-mid: #d4af37;
    --gold-dark: #b8941e;
    --gold-deep: #8b7355;
    --brand-gradient: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8941e 100%);
    --accent: #5b6cff;
    --bg: #fafafa;
    --text: #1f1f1f;
    --muted: #6c7380;
    --radius: 36px;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 14px 36px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 6px 16px rgba(212, 175, 55, 0.3);
    --shadow-gold-hover: 0 10px 24px rgba(212, 175, 55, 0.45);
    --leading: 1.6;
}

/* ===================================================== */
/* 🧱 STRUCTURE GLOBALE */
/* ===================================================== */
body {
    font-family: "Poppins", sans-serif;
    background: radial-gradient(circle at 50% 10%, #ffffff 0%, #f9f9f9 100%);
    color: var(--text);
    line-height: var(--leading);
    scroll-behavior: smooth;
    padding-inline: clamp(1rem, 4vw, 4rem);
    overflow-x: hidden;
}

main {
    max-width: 1400px;
    margin-inline: auto;
}

/* ===================================================== */
/* 🌟 HERO */
/* ===================================================== */
.hero-bento {
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    border-radius: var(--radius);
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow:
        0 14px 40px rgba(0, 0, 0, 0.1),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-bento::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 30% 30%, rgba(244, 208, 63, 0.2), rgba(212, 175, 55, 0.1) 40%, transparent 60%);
}

.hero-logo {
    max-width: 160px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.hero-image-wrapper {
    border-radius: var(--radius);
    background: #fff;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        inset 0 0 20px rgba(255, 255, 255, 0.4);
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.hero-img {
    width: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 0.6s ease;
    position: relative;
    z-index: 0;
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

.hero-bento .bento-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bento .col-lg-6.text-center,
.hero-bento .col-lg-6.text-lg-start {
    position: relative;
    z-index: 2;
}

/* ===================================================== */
/* 🍱 SECTIONS GÉNÉRIQUES */
/* ===================================================== */
section {
    margin-block: clamp(2rem, 5vw, 4rem);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: var(--radius);
    background: #fff;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.08),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

section:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 20% 30%, rgba(244, 208, 63, 0.12), rgba(212, 175, 55, 0.08) 50%, transparent 70%);
    mix-blend-mode: soft-light;
    pointer-events: none;
}

/* ===================================================== */
/* ✨ SECTIONS EXPÉRIENCE */
/* ===================================================== */
#bento-experience {
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
}

#bento-experience h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

#experience-instagram,
#experience-lieux,
#experience-essence {
    background: #fff;
    border: 2px solid rgba(212, 175, 55, 0.25);
    height: 100%;
}

#experience-instagram h3,
#experience-lieux h3,
#experience-essence h3 {
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
}

#experience-instagram p,
#experience-lieux p,
#experience-essence p {
    color: var(--muted);
    flex-grow: 1;
}

#experience-lieux ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

#experience-lieux li {
    margin-bottom: 0.75rem;
    padding-left: 1.4rem;
    position: relative;
    color: var(--text);
}

#experience-lieux li::before {
    content: "•";
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

#experience-instagram .icon,
#experience-essence .icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

#experience-essence {
    text-align: center;
}

#experience-essence .icon-label {
    color: var(--text);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ===================================================== */
/* ✨ BOUTONS */
/* ===================================================== */
.btn-primary {
    background: var(--brand-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f9e79f 0%, #f4d03f 50%, #d4af37 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--gold-mid);
    background: transparent;
    color: var(--gold-dark);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--brand-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    opacity: 1;
}

.btn-outline-primary:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
}

/* ===================================================== */
/* 📸 ICONES & TEXTES */
/* ===================================================== */
.eyebrow {
    letter-spacing: .08em;
    font-size: .85rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-weight: 600;
}

.icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.icon {
    width: 48px;
    height: 48px;
}

.icon-label {
    font-size: 1rem;
    color: #333;
}

/* ===================================================== */
/* ✨ CTA FINAL */
/* ===================================================== */
#cta {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.08),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    border-radius: 48px;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%,
            rgba(244, 208, 63, 0.3) 0%,
            rgba(212, 175, 55, 0.15) 40%,
            rgba(184, 148, 30, 0.05) 70%,
            transparent 90%);
}

#cta>* {
    position: relative;
    z-index: 1;
}

#cta h2 {
    font-size: clamp(1.8rem, 2vw, 2.2rem);
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.3;
}

#cta p {
    color: #555;
    font-size: 1.05rem;
    max-width: 640px;
    margin-inline: auto;
}

/* ===================================================== */
/* ⚙️ FOOTER */
/* ===================================================== */
.footer {
    background: #fff;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: var(--shadow);
    text-align: center;
}

.footer p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
}

/* ===================================================== */
/* 🧭 NAVIGATION FLOTTANTE */
/* ===================================================== */
.bento-nav-floating {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 60px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    width: fit-content;
    padding: 0.6rem 1.5rem;
    transition: all 0.4s ease;
}

.nav-logo {
    height: 38px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 60%;
}

.bento-nav-floating.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.08),
        0 0 25px rgba(212, 175, 55, 0.2);
    transform: translateX(-50%) scale(0.97);
}

.navbar-toggler {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.2), rgba(212, 175, 55, 0.15));
    border-radius: 12px;
    padding: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(44,44,44,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ===================================================== */
/* 📱 RESPONSIVE */
/* ===================================================== */
@media (min-width: 992px) {
    .bento-nav-floating {
        min-width: 65%;
    }
}

@media (max-width: 992px) {
    body {
        padding-inline: 0.5rem;
    }

    .hero-bento {
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-image-wrapper {
        margin-top: 1.5rem;
    }

    section {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    #bento-experience,
    #experience-instagram,
    #experience-lieux,
    #experience-essence {
        border-radius: 28px;
        padding: 2rem 1.25rem;
    }

    #bento-experience h2 {
        font-size: 1.8rem;
    }

    #experience-lieux ul {
        font-size: 1rem;
    }

    #cta {
        border-radius: 32px;
        padding: 2.5rem 1.5rem;
    }

    #cta .btn-primary,
    #cta .btn-outline-primary {
        width: 100%;
        max-width: 300px;
    }

    .bento-nav-floating {
        top: 0.5rem;
        width: calc(100% - 1.5rem);
        padding: 0.75rem 1rem;
        border-radius: 24px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        margin-top: 0.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .nav-link {
        padding: 0.6rem 1rem;
    }
}