/* ============================================================
   1. BASES GLOBALES (STYLE MUGLER/JPG)
   ============================================================ */
body {
    text-transform: lowercase !important; /* Pas de majuscules sur le site  */
    font-size: 0.8rem !important; /* Texte volontairement petit [cite: 5] */
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Accents et mises en valeur  */
.highlight, strong, b, .text-highlight {
    color: #9b82e7 !important; 
}

/* Liens et boutons minimaux */
a {
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* ============================================================
   2. HEADER & NAVIGATION (TRANSPARENT)
   ============================================================ */
#header {
    position: absolute; /* Survole le contenu [cite: 6] */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent !important;
    border-bottom: none;
}

#header .header-nav, 
#header .header-top, 
#header .menu,
#header .menu a {
    text-transform: lowercase !important; /*  */
    font-size: 0.75rem !important; /* [cite: 5] */
    color: #fff !important;
}

/* Cache les éléments inutiles pour le look minimaliste */
.header-top .search-widget {
    display: none; 
}

/* ============================================================
   3. STRUCTURE DU HERO SPLIT (ACCUEIL)
   ============================================================ */
.page-home-split {
    display: flex;
    height: 100vh; /* Prend toute la hauteur de l'écran */
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-split {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Effet de mouvement doux */
    overflow: hidden;
}

/* Effet au survol : la partie s'agrandit légèrement [cite: 11] */
.hero-split:hover {
    flex: 1.1;
}

/* Filtre sombre pour la lisibilité du texte */
.hero-split::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Voile noir à 40% */
    z-index: 1;
}

.hero-content {
    z-index: 2;
    padding: 20px;
}

.hero-content h2 {
    font-size: 3rem; /* Titre imposant [cite: 5] */
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.btn-minimal {
    display: inline-block;
    color: #9b82e7 !important; /* Violet Brandon  */
    text-decoration: underline;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ============================================================
   4. IMAGES DE FOND (ASSETS)
   ============================================================ */
.shop-side {
    background-image: url('../img/hero-shop.jpg');
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(255,255,255,0.1); /* Ligne de séparation fine */
}

.brand-side {
    background-image: url('../img/hero-brand.jpg');
    background-size: cover;
    background-position: center;
}

.header-nav {
	display: none;
}

.header-top {
	padding: 0 0;
	height: 100px;
}

.row {
	margin-top: -40px;
}

/* ============================================================
   AJOUT : CENTRAGE STRICT DU LOGO DANS LE HEADER
   ============================================================ */
/* On cible la rangée (row) à l'intérieur du header pour activer le centrage Flexbox */
#header .header-top > .container > .row {
    display: flex;
    justify-content: center !important; /* Centre horizontalement */
    align-items: flex-start !important; /* Colle le logo vers le haut (pas au milieu de l'écran) */
    width: 100% !important;
    margin: 0 !important;
}

/* On annule le comportement de colonne gauche de PrestaShop */
#header #_desktop_logo {
    width: auto !important; /* Le conteneur s'adapte à l'image */
    margin: 0 auto !important; /* Sécurité pour le centrage */
    float: none !important;
    display: block !important;
}

/* Ajustement fin pour que le logo soit bien calé verticalement dans ta zone de 100px */
#header #_desktop_logo img {
    display: block;
    margin: 10px auto 0 auto !important; /* Petite marge haut pour décoller du bord */
    max-height: 80px; /* S'assure qu'il rentre dans ton header de 100px */
}

/* Sécurité : cache les colonnes vides qui pourraient pousser le logo */
.header-top-right, .header-nav {
    display: none !important;
}

.logo{
	width: 200px;
	max-height: 300px !important;
	padding-bottom: 190px;
	margin-top: 0px !important;
	padding-top: 0px !important;
}

#wrapper {
	padding-top: 8rem ! important;
}

#header .header-top {
	padding: 0 0 !important;
}
/* ============================================================
   5. RESPONSIVE (MOBILE)
   ============================================================ */
@media (max-width: 767px) {
    .page-home-split {
        flex-direction: column; /* Empile les sections sur mobile */
    }
    
    .hero-split {
        height: 50vh; /* 50% de l'écran chacun */
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    #header .header-nav {
        background: #000; /* Fond noir sur mobile pour la lisibilité */
    }
}



#mobile_top_menu_wrapper {
	display: none!important;
}