/* --- Charte Graphique : Bordeaux, Crème, Sauge --- */
:root {
    --bordeaux: #5d2f2f;
    --creme: #fdfbf7;
    --sauge: #7a8d80;
    --accent-or: #c5a059;
    --blanc: #ffffff;
    --shadow: 0 20px 50px rgba(93, 47, 47, 0.1);
    --transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Inter', sans-serif; 
    background: var(--creme); 
    color: var(--bordeaux); 
    line-height: 1.7; 
    overflow-x: hidden; 
}

h1, h2, h3, .logo-name { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--bordeaux); }

/* --- HEADER FIX : Alignement et suppression du trait --- */
.site-header {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(15px);
    position: sticky; top: 0; z-index: 1000;
    height: 110px; border-bottom: 1px solid rgba(93, 47, 47, 0.1);
    display: flex; align-items: center;
}

.header-container { 
    max-width: 1400px; margin: 0 auto; 
    display: flex; justify-content: space-between; align-items: center; 
    width: 100%; padding: 0 40px; 
}

.logo a { 
    text-decoration: none !important; /* Supprime le trait sur le logo */
    border: none !important;
    display: flex;
    flex-direction: column; /* Empile le nom et la tagline */
}

.logo-name { 
    font-size: 1.8rem; 
    line-height: 1.1;
    white-space: nowrap; /* Empêche le nom de couper */
}

.logo-tagline { 
    font-size: 0.75rem; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    color: var(--sauge); 
    margin-top: 5px;
    white-space: nowrap;
}

/* --- NAVIGATION --- */
.nav-list { list-style: none; display: flex; align-items: center; }
.nav-list > li { margin: 0 20px; position: relative; }
.nav-list a { text-decoration: none; color: var(--bordeaux); font-weight: 500; font-size: 1rem; transition: var(--transition); }
.nav-list li.active > a, .nav-list a:hover { color: var(--accent-or); }

/* SOUS-MENU */
.submenu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--blanc); min-width: 260px; padding: 20px 0; border-radius: 20px;
    box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: var(--transition);
}
.has-children:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(10px); }
.submenu a { display: block; padding: 12px 30px; font-size: 0.9rem; }
.submenu a:hover { background: var(--creme); color: var(--sauge); padding-left: 40px; }

/* BOUTONS */
.btn-nav { background: var(--bordeaux); color: var(--blanc) !important; padding: 12px 25px; border-radius: 50px; }
.btn-sexy { display: inline-block; padding: 18px 45px; background: var(--bordeaux); color: white; text-decoration: none; border-radius: 50px; font-weight: 600; transition: var(--transition); border: none; cursor: pointer; }
.btn-sexy:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(93, 47, 47, 0.2); background: var(--sauge); }

/* SECTIONS */
.card-sexy { background: var(--blanc); border-radius: 40px; padding: 50px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(93, 47, 47, 0.05); }
.card-sexy:hover { transform: translateY(-10px); }

/* FOOTER FIX */
.site-footer { background: var(--blanc); padding: 80px 40px 40px; border-top: 1px solid rgba(93, 47, 47, 0.1); margin-top: 100px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid #eee; font-size: 0.85rem; opacity: 0.6; }

/* MOBILE */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
@media (max-width: 1024px) {
    .mobile-toggle { display: block; }
    .main-nav { position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: var(--blanc); padding: 100px 40px; transition: var(--transition); box-shadow: -10px 0 50px rgba(0,0,0,0.1); }
    .main-nav.active { right: 0; }
    .nav-list { flex-direction: column; align-items: flex-start; }
    .nav-list > li { margin: 15px 0; }
    .submenu { position: static; transform: none; box-shadow: none; opacity: 1; visibility: visible; display: none; }
    .has-children.active .submenu { display: block; }
}