/* ========================================
   BANNIÈRES PUBLICITAIRES / THÉMATIQUES
   System: Pub > Thème > Fond uni
   Uniquement bannières latérales (160×600px)
======================================== */

/* ========================================
   BANNIÈRES LATÉRALES (160×600px)
======================================== */
.ad-banner-left,
.ad-banner-right,
.theme-banner-left,
.theme-banner-right {
    position: fixed;
    top: 3rem; /* Après le header (100px top + 60px nav) */
    width: 7.5vw; /* 7.5% de chaque côté = 15% total, laisse 85% pour le contenu */
    max-width: 200px; /* Limite à 160px max */
    min-width: 160px; /* Minimum 120px */
    height: 800px;
    z-index: 50;
    transition: opacity 0.3s ease;
}

.ad-banner-left,
.theme-banner-left {
    left: 0;
}

.ad-banner-right,
.theme-banner-right {
    right: 0;
}

.ad-banner-left .ad-banner-content,
.ad-banner-right .ad-banner-content,
.theme-banner-left img,
.theme-banner-right img {
    width: 160px;
    height: 800px;
    display: block;
}

.theme-banner-left img,
.theme-banner-right img {
    object-fit: cover;
}

/* ========================================
   FOND UNI (si pas de thème ni pub)
======================================== */
body {
    background: #000000;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Éviter scroll horizontal */
}

/* ========================================
   CONTENEUR PRINCIPAL (ajusté pour bannières)
======================================== */
.main-content-wrapper {
    width: 80%; /* 85% de largeur, laisse 15% pour les bannières (7.5% × 2) */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

/* ========================================
   RESPONSIVE
======================================== */

/* Écrans moyens : masquer bannières si pas assez de place */
@media (max-width: 1200px) {
    /* Masquer les bannières latérales sur écrans moyens */
    .ad-banner-left,
    .ad-banner-right,
    .theme-banner-left,
    .theme-banner-right {
        display: none;
    }
    
    /* Élargir le contenu quand pas de bannières */
    .main-content-wrapper {
        width: 95%;
        max-width: 100%;
        padding: 0 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Contenu pleine largeur sur mobile */
    .main-content-wrapper {
        width: 95%;
    }
}

@media (max-width: 480px) {
    .main-content-wrapper {
        width: 100%;
        padding: 0 0.5rem;
    }
}

/* ========================================
   HELPER: Masquer bannières en mode admin
======================================== */
body.admin-mode .ad-banner-left,
body.admin-mode .ad-banner-right,
body.admin-mode .theme-banner-left,
body.admin-mode .theme-banner-right {
    display: none;
}

