/**
 * HEADER TUNNEL UNIFIÉ - LOGO CARRÉ DORÉ
 * Date: 17 Avril 2026
 * Version: 12.2
 * 
 * Ajoute automatiquement un header avec le logo carré doré
 * sur toutes les pages du tunnel de vente
 */

/* ============================================
   HEADER TUNNEL FIXE
   ============================================ */

body {
    padding-top: 85px !important; /* Espace pour header fixe */
}

/* Créer le header via CSS */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 85px;
    background: rgba(255, 254, 249, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(93, 78, 55, 0.1);
}

/* Logo tunnel - Position fixe */
.tunnel-logo-fixed {
    position: fixed;
    top: 12px;
    left: 2rem;
    z-index: 1001;
}

.tunnel-logo-fixed img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(201, 169, 97, 0.4);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.tunnel-logo-fixed img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 18px rgba(201, 169, 97, 0.6);
}

/* Texte "JESS.BDIGITAL" à côté du logo */
.tunnel-brand-text {
    position: fixed;
    top: 30px;
    left: calc(2rem + 75px);
    z-index: 1001;
    color: #C9A961;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   ADAPTATION DES CONTENUS
   ============================================ */

/* Hero sections - ne pas chevaucher le header */
.hero {
    margin-top: 0 !important;
    padding-top: 80px !important;
}

/* Containers - espacement */
.container {
    margin-top: 20px !important;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    body {
        padding-top: 75px !important;
    }
    
    body::before {
        height: 75px;
    }
    
    .tunnel-logo-fixed {
        top: 10px;
        left: 1rem;
    }
    
    .tunnel-logo-fixed img {
        width: 50px;
        height: 50px;
    }
    
    .tunnel-brand-text {
        top: 25px;
        left: calc(1rem + 60px);
        font-size: 1rem;
    }
    
    .hero {
        padding-top: 60px !important;
    }
}

/* ============================================
   INJECTION DU LOGO VIA JS (si nécessaire)
   ============================================ */

/* Le logo sera injecté automatiquement via le CSS des pages */
