/* ===================== VARIABLES (FÉMININ / PREMIUM) ===================== */
:root {
    --rose-poudre: #f3e8ee;
    --lilas-doux: #c7b8d6;
    --violet-chic: #6b5fa5;
    --nude-chaud: #faf7fb;
    --gris-soie: #8a8a8a;
    --noir-doux: #1b1b1b;
}

/* ----- GLOBAL ----- */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    background: linear-gradient(180deg, #faf7fb, #f4f1f7);
    color: var(--noir-doux);
}

/* ===== MENU NAVIGATION ===== */
.header {
    width: 100%;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 9999; /* toujours au-dessus des autres éléments */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* optionnel : ombre pour mieux voir le header */
}

.nav-menu {
    display: flex;
    gap: 20px;
    transform: translateX(-50px);
}

.nav-btn {
    font-size: 16px;
    font-weight: 500;
    color: var(--noir-doux);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--lilas-doux), var(--violet-chic));
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ===================== AMBASSADEURS ===================== */

.ambassadeurs-section {
    max-width: 900px;
    margin: 120px auto 0;
    padding: 0 20px;
}

.ambassadeurs-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
}

.ambassadeur-item {
    background: #fff;
    border-radius: 14px;
    margin-bottom: 16px;
    padding: 18px 22px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.ambassadeur-item summary {
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.ambassadeur-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.ambassadeur-item[open] summary::after {
    content: "–";
}

.ambassadeur-item ul {
    margin-top: 15px;
    padding-left: 0;
    list-style: none;
}

.ambassadeur-item li {
    padding: 8px 0;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.ambassadeur-item li:last-child {
    border-bottom: none;
}

/* Coming soon container */
.soon-container {
    margin-top: 12px;
    padding: 14px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: #444;
}

/* Animation points */
.soon-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 3px;
    background-color: #000;
    border-radius: 50%;
    animation: blink 1.4s infinite both;
}

.soon-dot:nth-child(1) { animation-delay: 0s; }
.soon-dot:nth-child(2) { animation-delay: 0.2s; }
.soon-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
    0% { opacity: 0.25; }
    20% { opacity: 1; }
    100% { opacity: 0.25; }
}

/* Texte */
.soon-container p {
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ===================== GARANTIE ===================== */

.garantie-section {
    max-width: 700px;
    margin: 120px auto;
    padding: 0 20px;
}

.garantie-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 40px;
}

.garantie-form {
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.garantie-form label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.garantie-form input,
.garantie-form select {
    padding: 14px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    transition: 0.3s ease;
}

.garantie-form input:focus,
.garantie-form select:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}

.garantie-form button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #6b5fa5, #a29bc7);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.garantie-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

.garantie-info {
    background: rgba(240, 230, 242, 0.1);
    border-left: 4px solid #9c27b0; /* couleur PLUZZ */
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.garantie-info ul {
    margin: 8px 0 8px 20px;
    padding: 0;
}

.garantie-info strong {
    color: #333;
}

/* Champ ambassadeur masqué */
.hidden {
    display: none;
}

/* ====== FOOTER ====== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #2c2b3a, #3f3d51);
    color: white;
    padding: 60px 40px 30px;
    margin-top: 120px;
    overflow: hidden;
}

.footer-bg-text {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    user-select: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    z-index: 2;
    position: relative;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-col p,
.footer-col a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-col a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.information {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-copy {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* ===================== MOBILE MENU ===================== */
.burger {
    display: none;
}

@media (max-width: 768px) {

        /* Cacher menu desktop */
        .nav-menu {
            display: none;
        }

        
    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 35px;
        height: 28px;
        cursor: pointer;
        background: transparent;
        border: none;
        z-index: 1000;
    }

    .burger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #0a0a0a;
        border-radius: 5px;
    }

    /* HEADER aligné burger + logo */
    .header {
        justify-content: flex-start;
        gap: 15px;
        padding: 10px 20px;
    }

    /* MENU MOBILE MODERNE */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0; 
        transform: translateX(-100%);
        width: 180px;
        height: 100vh;
        background: #fff;
        padding: 50px 15px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        z-index: 10000;
        box-shadow: 2px 0 20px rgba(0,0,0,0.15);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-menu a {
        color: #0a0a0a;
        font-size: 18px;
        font-weight: 500;
        text-decoration: none;
        padding: 8px 0;
        transition: color 0.3s ease;
    }

    .mobile-menu a:hover {
        color: #F0E6F2;
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.25);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease;
        z-index: 9998;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    @media (max-width: 768px) {

        .ambassadeurs-section h2,
        .garantie-section h2 {
            font-size: 26px;
        }
    
        .garantie-form {
            padding: 25px;
        }
    }