/* =========================
   VARIABLES COULEURS
========================= */
:root {
    --luqei-champagne: #D6C29E;
    --luqei-text-dark: #1f1f1f;
    --luqei-text-muted: #6c757d;
    --luqei-bg-soft: #f7f5f1;
}

/* =========================
   BASE
========================= */
body {
    color: var(--luqei-text-dark);
    line-height: 1.7;
}

/* =========================
   HERO
========================= */
.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--luqei-champagne);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f2f2f2;
}

/* =========================
   HERO RESPONSIVE
========================= */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.25;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }
}

/* =========================
   SECTIONS
========================= */
.section {
    padding: 5rem 0;
}

.section-title {
    font-weight: 600;
    margin-bottom: 2rem;
}

.section-text {
    font-size: 1.05rem;
    color: var(--luqei-text-muted);
    line-height: 1.9;
}

/* =========================
   BOUTONS
========================= */
.btn-luqei {
    background-color: var(--luqei-champagne);
    color: #000;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
    border: none;
}

.btn-luqei:hover {
    background-color: #cdb88f;
    color: #000;
}

/* =========================
   TÉMOIGNAGES
========================= */
.testimonial {
    background-color: var(--luqei-bg-soft);
    padding: 3rem;
    border-radius: 12px;
}

.testimonial-title {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--luqei-text-muted);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--luqei-text-dark);
}

.testimonial-author {
    margin-top: 1rem;
    color: var(--luqei-text-muted);
}

/* =========================
   FAQ
========================= */
.accordion-button {
    font-weight: 500;
}

.accordion-body {
    color: var(--luqei-text-muted);
    line-height: 1.9;
}

/* =========================
   HERO – COULEURS TEXTE
========================= */

.hero-overlay {
    width: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.2) 70%,
        rgba(0,0,0,0.1) 100%
    );
}

@media (max-width: 575.98px) {
    .hero-bg {
        filter:
            brightness(1.25)
            contrast(0.9)
            saturate(1.05);
    }
}


.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--luqei-champagne);
    text-shadow:
        0 2px 8px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* =========================
   HERO – CADRE TEXTE
========================= */

.hero-text-box {
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    padding: 2.5rem 3rem;
    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(0,0,0,0.35);

    max-width: 100%;
}

@media (max-width: 575.98px) {
    .hero-text-box {
        padding: 1.75rem 1.5rem;
        border-radius: 14px;
        background: rgba(15,15,15,0.65);
    }

    .hero-title {
        font-size: 1.7rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }
}


/* =========================
   HERO – IMAGE DE FOND
========================= */

.hero-bg {
    filter:
        brightness(1.15)
        contrast(0.95)
        saturate(1.05);
}

/* =========================
   BOUTON NEWSLETTER (ADMIN)
========================= */
.btn-newsletter {
    background-color: transparent;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 0.35rem 0.75rem;
}

.btn-newsletter:hover {
    background-color: rgba(0,0,0,0.05);
    color: #000;
}

