/*
Theme Name:   Nounisy Astra Child
Theme URI:    https://www.nounisy.bf
Description:  Thème enfant Astra pour le site vitrine Nounisy.bf — Culture Urbaine à 360°. Reproduit la maquette officielle (hero, statistiques, services, footer) avec le logo Nounisy intégré.
Author:       Nounisy SARL
Author URI:   https://www.nounisy.bf
Template:     astra
Version:      1.0.0
Text Domain:  nounisy-astra-child
*/

/* ==========================================================================
   1. Polices Google (Fraunces pour les titres, Manrope pour le texte)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700;900&family=Manrope:wght@400;500;600;700&display=swap');

/* ==========================================================================
   2. Variables couleurs Nounisy
   ========================================================================== */
:root{
    --nounisy-navy:        #0D1526;
    --nounisy-navy-light:  #111A2E;
    --nounisy-card:        #16213A;
    --nounisy-footer:      #080D18;
    --nounisy-red:         #E8422A;
    --nounisy-gold:        #D4AF37;
    --nounisy-green:       #25D366;
    --nounisy-text-grey:   #8A94A6;
    --nounisy-white:       #FFFFFF;
}

body, .site {
    background-color: var(--nounisy-navy);
    font-family: 'Manrope', sans-serif;
    color: var(--nounisy-white);
}

/* ==========================================================================
   3. En-tête / Logo
   ========================================================================== */
.ast-primary-header,
.main-header-bar,
.site-header {
    background-color: var(--nounisy-navy) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.custom-logo {
    max-height: 56px;
    width: auto;
}

.site-title, .site-title a {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    color: var(--nounisy-white) !important;
    letter-spacing: 0.5px;
}
.site-title a span.accent {
    color: var(--nounisy-red);
}

.main-header-menu .menu-item > a,
.ast-masthead-custom-menu-items a {
    color: var(--nounisy-white) !important;
    font-weight: 600;
    font-size: 15px;
}
.main-header-menu .menu-item > a:hover {
    color: var(--nounisy-red) !important;
}

/* ==========================================================================
   4. Section Hero
   ========================================================================== */
.nounisy-hero {
    background-color: var(--nounisy-navy);
    padding: 120px 20px 100px;
    text-align: center;
}
.nounisy-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    color: var(--nounisy-gold);
    margin-bottom: 18px;
}
.nounisy-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.15;
    color: var(--nounisy-white);
    max-width: 820px;
    margin: 0 auto 24px;
}
.nounisy-hero p.lead {
    max-width: 640px;
    margin: 0 auto 40px;
    color: var(--nounisy-text-grey);
    font-size: 17px;
    line-height: 1.6;
}
.nounisy-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--nounisy-green);
    color: var(--nounisy-white) !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.25);
    transition: transform 0.15s ease;
}
.nounisy-btn-whatsapp:hover {
    transform: translateY(-2px);
}
.nounisy-hero .hint {
    margin-top: 14px;
    font-size: 13px;
    font-style: italic;
    color: var(--nounisy-text-grey);
}

/* ==========================================================================
   5. Bandeau statistiques
   ========================================================================== */
.nounisy-stats {
    background-color: var(--nounisy-navy-light);
    padding: 56px 20px;
}
.nounisy-stats .stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.nounisy-stats .stat-number {
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 40px;
    color: var(--nounisy-red);
    margin-bottom: 6px;
}
.nounisy-stats .stat-label {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 700;
    color: var(--nounisy-text-grey);
}

/* ==========================================================================
   6. Section Services
   ========================================================================== */
.nounisy-services {
    background-color: var(--nounisy-navy);
    padding: 90px 20px;
}
.nounisy-services h2 {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 1px;
    color: var(--nounisy-white);
    margin-bottom: 50px;
}
.nounisy-services .services-grid {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.nounisy-services .service-card {
    background-color: var(--nounisy-card);
    border-radius: 10px;
    padding: 32px 26px;
    border: 1px solid rgba(255,255,255,0.05);
}
.nounisy-services .service-icon {
    font-size: 28px;
    margin-bottom: 18px;
    display: block;
}
.nounisy-services .service-card h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--nounisy-white);
    margin-bottom: 10px;
}
.nounisy-services .service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--nounisy-text-grey);
    margin: 0;
}

/* ==========================================================================
   6bis. Plan Tarifaire (image + zones cliquables WhatsApp)
   ========================================================================== */
.nounisy-pricing {
    background-color: #000000;
    padding: 60px 0 40px;
    text-align: center;
}
.pricing-image-wrap {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    line-height: 0;
}
.pricing-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Zones cliquables invisibles, positionnées en % pour rester alignées
   quelle que soit la largeur d'affichage de l'image (responsive). */
.pricing-hotspot {
    position: absolute;
    top: 33.1%;
    height: 38.2%;
    display: block;
    background: transparent;
    border-radius: 10px;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.pricing-hotspot:hover,
.pricing-hotspot:focus {
    background-color: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.35) inset;
    outline: none;
}
.hotspot-single { left: 2.9%;  width: 23.2%; }
.hotspot-ep     { left: 26.9%; width: 22.3%; }
.hotspot-album  { left: 49.9%; width: 22.7%; }
.hotspot-label  { left: 73.3%; width: 22.7%; }

.pricing-hint {
    margin-top: 18px;
    font-size: 13px;
    color: var(--nounisy-text-grey);
    font-style: italic;
}

/* ==========================================================================
   7. Footer
   ========================================================================== */
.nounisy-footer {
    background-color: var(--nounisy-footer);
    padding: 40px 20px;
    text-align: center;
}
.nounisy-footer .footer-links {
    font-size: 13px;
    color: var(--nounisy-text-grey);
    margin-bottom: 10px;
}
.nounisy-footer .footer-links a {
    color: var(--nounisy-text-grey);
    text-decoration: none;
    margin: 0 6px;
}
.nounisy-footer .footer-links a:hover {
    color: var(--nounisy-red);
}
.nounisy-footer .footer-copy {
    font-size: 12px;
    color: rgba(138,148,166,0.6);
}

/* ==========================================================================
   8. Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .nounisy-hero h1 { font-size: 32px; }
    .nounisy-hero { padding: 80px 16px 60px; }
    .nounisy-stats .stats-grid,
    .nounisy-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .nounisy-stats .stats-grid,
    .nounisy-services .services-grid {
        grid-template-columns: 1fr;
    }
}
