* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Empêche le scroll horizontal parasite */
}

:root {
    --rose-primary-color: #FADADD;
    --beige-bg-color: #f8efea;
    --doré-luxe: #D4AF37;
    --brun-texte: #6E5C55;
    --noir-doux: #2E2E2E;
    --blanc: white;
    --blanc-transparent: rgba(255, 255, 255, 0.85);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--noir-doux);
    background-color: var(--blanc);
}

/* ================= HEADER & MENU BURGER ================= */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: var(--blanc);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo img { width: 70px; }
.marque {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-family: "Allura", cursive;
    font-weight: 600;
}

/* Menu Desktop */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 15px;
}

.nav-menu a {
    color: var(--noir-doux);
    text-decoration: none;
    font-weight: 400;
    padding: 8px 12px;
    transition: 0.3s;
}

.nav-menu a:hover { color: var(--doré-luxe); }

/* Toggle Burger (Caché sur Desktop) */
.menu-checkbox { display: none; }
.burger-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1100;
}
.burger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--brun-texte);
    transition: 0.3s;
}

/* ================= HERO SECTION ================= */
.hero { display: flex; flex-direction: column; }
.hero-image { background-color: var(--beige-bg-color); width: 100%; text-align: right; }
.hero-image img { max-width: 100%; height: auto; max-height: 450px; }

.hero-text {
    padding: 40px 5%;
    text-align: center;
}

.hero-text h1 {
    /* FORCE UNE LIGNE : Clamp ajuste la taille selon l'écran */
    font-size: clamp(1.8rem, 8vw, 5rem);
    font-family: "Allura", cursive;
    color: var(--brun-texte);
    white-space: nowrap; 
    margin-bottom: 10px;
}

.cta-btn {
    display: inline-block;
    background-color: var(--rose-primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--noir-doux);
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* ================= INTRO (HELLO) SECTION ================= */
.intro {
    display: flex;
    flex-direction: row; /* Toujours en ligne */
    align-items: center;
    padding: 60px 5%;
    background-color: var(--beige-bg-color);
    gap: 30px;
}

.intro-image img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.intro-content h2 { font-family: 'Playfair Display'; font-size: clamp(1.2rem, 4vw, 2.5rem); margin-bottom: 15px; color: var(--brun-texte); }
.cta-intro {
    display: inline-block;
    background-color: var(--brun-texte);
    color: var(--blanc);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
}
.cta-intro-containner{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.cta-intro{
    background-color: #058515;
    display: inline-block;
    text-align: center;
}
/* ================= PRODUITS (STAY ON LINE) ================= */
.products { padding: 40px 5%; }
.sectiontitle { font-family: 'Playfair Display'; font-size: 2.5rem; margin-bottom: 30px; border-bottom: 4px solid var(--rose-primary-color); display: inline-block; }

.productcontainner {
    display: flex;
    flex-wrap: nowrap; /* INTERDIT LE RETOUR À LA LIGNE */
    gap: 20px;
    overflow-x: auto; /* Scroll horizontal si l'écran est trop petit */
    padding-bottom: 20px;
    scrollbar-width: none; /* Cache la barre sur Firefox */
}
.productcontainner::-webkit-scrollbar { display: none; } /* Cache la barre sur Chrome */

.productbox {
    flex: 0 0 45%; /* Prend 45% de la largeur pour qu'on en voit deux */
    min-width: 280px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.oneproduct { background-image: url("images/huile-seche-saane-scintillante.jpg"); }
.twoproduct { background-image: url("images/huile-elandria-parfum.jpg"); }

.details {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--blanc-transparent);
    backdrop-filter: blur(8px);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detailname { font-weight: 600; font-size: 1.1rem; }
.detailprice { color: var(--doré-luxe); font-weight: 700; }
.reduc { text-decoration: line-through; opacity: 0.5; font-size: 0.8rem; }

.info2 { background: var(--brun-texte); color: white; padding: 8px 12px; border-radius: 5px; font-size: 0.8rem; }

/* ================= ARGUMENTS ================= */
.arguments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 60px 5%;
    text-align: center;
}
.icon-circle { width: 60px; height: 60px; border: 1px solid var(--rose-primary-color); border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 15px; }

/* ================= SHOOT GRIDS (KEEP ON LINE) ================= */
.gridone {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 images sur la ligne */
    height: 300px;
    gap: 10px;
    padding: 10px 5%;
}
.gridone div { background-size: cover; background-position: center; border-radius: 8px; }
.gf1 { background-image: url('images/huile-parfum-glow-saane.jpg'); }
.gf2 { background-image: url('images/huile-scintillante-saane-vf.jpg'); }
.gf3 { background-image: url('images/huile-lumineuse-full.jpg'); }

.gridtwo {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 images sur la ligne */
    height: 400px;
    gap: 10px;
    padding: 10px 5%;
    margin-top: 10px;
}
.gs1, .gs2 { background-size: cover; background-position: center; border-radius: 8px; }
.gs1 { background-image: url('images/composition-huile-saane.jpeg'); }
.gs2 { background-image: url('images/huile-femme-elandria.jpg'); }

/* ======================= STYLE DU FOOTER OPTIMISÉ ======================= */

.main-footer {
    border-top: 1px solid var(--rose-primary-color);
}

.footer-main {
    background-color: var(--beige-bg-color);
    color: var(--brun-texte);
    padding: 5rem 10% 4rem; /* Plus d'espace pour un look premium */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Colonne Logo & About --- */
.containerabout {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligné à gauche pour le luxe */
    text-align: left;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* --- Titres des colonnes --- */
.footer-col h4 {
    color: var(--brun-texte);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
    text-align: left; /* Aligné avec le contenu */
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--doré-luxe);
}

/* --- Liens & Listes --- */
.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--brun-texte);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--doré-luxe);
    transform: translateX(5px); /* Glissement doux */
}

/* --- Infos de Contact --- */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--doré-luxe);
    width: 20px;
    text-align: center;
}

/* --- Icônes Réseaux Sociaux (Ton Rose Préféré) --- */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: var(--rose-primary-color);
    border-radius: 50%;
    color: var(--brun-texte);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a:hover {
    background-color: var(--doré-luxe);
    color: white;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* --- Sous-footer (Copyright) --- */
.footer-sub {
    background-color: var(--rose-primary-color);
    color: var(--brun-texte);
    padding: 1.5rem 10%;
    font-size: 0.85rem;
}

.footer-sub-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-sub span {
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-legal{
    
    display: flex;
}

.footer-legal a {
    color: var(--brun-texte);
    text-decoration: none;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

/* ======================= RESPONSIVE ======================= */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 4rem 5%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .containerabout, .footer-col h4 {
        align-items: center;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .contact-info p {
        justify-content: center;
    }

    .footer-sub-flex {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}


/* ================= RESPONSIVE DESIGN ================= */
@media screen and (max-width: 768px) {
    /* Burger Menu Logic */
    .burger-icon { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--blanc-transparent);
        backdrop-filter: blur(15px);
        transition: 0.4s ease;
        padding-top: 100px;
    }
    .nav-menu ul { flex-direction: column; align-items: center; gap: 30px; }
    
    #menu-toggle:checked ~ .nav-menu { right: 0; }
    #menu-toggle:checked ~ .burger-icon span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    #menu-toggle:checked ~ .burger-icon span:nth-child(2) { opacity: 0; }
    #menu-toggle:checked ~ .burger-icon span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

    /* Ajustements mobile forcés */
    .intro { flex-direction: column; text-align: center; }
    .gridone { height: 150px; } /* Plus petit sur mobile pour garder la ligne */
    .gridtwo { height: 250px; }
    .productbox { flex: 0 0 80%; } /* Un peu plus large pour le confort du scroll */
    .footer-grid { grid-template-columns: 1fr; }
}

/* LINK */

/* ================= PAGE CONTACT ================= */

.contact-hero {
    background-color: var(--beige-bg-color);
    padding: 80px 5%;
    text-align: center;
}

.contact-hero h1 {
    font-family: 'Allura', cursive;
    font-size: 4rem;
    color: var(--brun-texte);
    margin-bottom: 10px;
}

.contact-hero p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--noir-doux);
    opacity: 0.8;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    padding: 80px 10%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Style du Formulaire --- */
.contact-form h2 {
    font-family: 'Playfair Display', serif;
    color: var(--brun-texte);
    margin-bottom: 30px;
    font-size: 2rem;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(110, 92, 85, 0.2);
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: var(--doré-luxe);
    box-shadow: 0 0 8px var(--rose-primary-color);
}

.submit-btn {
    background-color: var(--brun-texte);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--doré-luxe);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- Panneau d'informations --- */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--beige-bg-color);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: scale(1.02);
}

.info-card i {
    font-size: 1.5rem;
    color: var(--doré-luxe);
    margin-bottom: 10px;
}

.info-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-image-deco img {
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
    height: 200px;
    object-fit: cover;
    filter: sepia(20%);
}

/* ================= RESPONSIVE CONTACT ================= */

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 50px 5%;
    }
    
    .contact-hero h1 {
        font-size: 3rem;
    }
}

/* ================= PAGE À PROPOS ================= */

.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('images/huile-parfum-glow-saane.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-family: 'Allura', cursive;
    font-size: 5rem;
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

/* --- Section Story --- */
.story-section {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 10%;
}

.story-content { flex: 1; }
.story-image { flex: 1; }

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px var(--rose-primary-color);
}

.tag {
    color: var(--doré-luxe);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.story-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 15px 0 25px;
}

.personal-note {
    margin-top: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--doré-luxe);
    font-style: italic;
}

/* --- Section Valeurs --- */
.values-section {
    background-color: var(--beige-bg-color);
    padding: 100px 10%;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.value-item i {
    font-size: 2rem;
    color: var(--doré-luxe);
    margin-bottom: 20px;
}

.value-item h4 {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

/* --- Section Rituel --- */
.ritual-section {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;
    padding: 100px 10%;
}

.ritual-image img {
    width: 100%;
    border-radius: 50% 50% 0 0; /* Forme élégante en arche */
}

.tips-list {
    list-style: none;
    margin: 25px 0;
}

.tips-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tips-list i { color: var(--doré-luxe); }

/* --- Responsive --- */
@media (max-width: 768px) {
    .story-section, .ritual-section {
        flex-direction: column;
        padding: 60px 5%;
        text-align: center;
    }
    
    .about-hero h1 { font-size: 3.5rem; }
    
    .personal-note { border-left: none; border-top: 3px solid var(--doré-luxe); padding: 20px 0; }
}




.hero-image img {
    
    margin-bottom: -5px; /* Grignote le décalage pour une fusion totale */
}
.nolink{
    text-decoration: none;
    color: var(--noir-doux);
}
