/**
 * ASI Togo - Style ONG Professionnel
 * Améliorations typographie et layout (couleurs orange du thème conservées)
 */

/* ========================================
   TYPOGRAPHIE PROFESSIONNELLE
   ======================================== */
body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 700;
}

/* ========================================
   BOUTONS STYLE ONG
   ======================================== */
.asi-btn-donate,
.give-btn,
.give-submit {
    padding: 15px 40px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.asi-btn-donate:hover,
.give-btn:hover,
.give-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

/* ========================================
   HEADER PROFESSIONNEL
   ======================================== */
header,
.site-header,
.ova-header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Menu Navigation */
.main-menu a,
.primary-menu a,
nav a {
    font-weight: 600;
    transition: color 0.3s ease;
}

/* ========================================
   SECTIONS PROGRAMMES
   ======================================== */
.asi-program-card,
.program-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.asi-program-card:hover,
.program-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.asi-program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.asi-program-content {
    padding: 25px;
}

/* ========================================
   ACTUALITÉS / BLOG
   ======================================== */
.asi-blog-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.asi-blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.asi-blog-content {
    padding: 20px;
}

/* ========================================
   PARTENAIRES
   ======================================== */
.asi-partner-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.asi-partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ========================================
   FOOTER PROFESSIONNEL
   ======================================== */
footer,
.site-footer {
    background: #1a1a1a !important;
    color: rgba(255,255,255,0.8);
}

footer h4,
footer h5,
footer .widget-title {
    color: #fff !important;
    font-weight: 700;
}

footer a {
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.3s ease;
}

/* ========================================
   FORMULAIRE DE DON GIVEWP
   ======================================== */
.give-form-wrap {
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.give-donation-amount .give-btn-level {
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.give-submit {
    border-radius: 50px !important;
    padding: 15px 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* ========================================
   GOOGLE MAPS - NOIR ET BLANC
   ======================================== */
iframe[src*="google.com/maps"],
iframe[src*="maps.google"],
.google-map iframe,
.elementor-widget-google_maps iframe,
#asi-map iframe {
    filter: grayscale(100%) contrast(1.1) !important;
    -webkit-filter: grayscale(100%) contrast(1.1) !important;
}

iframe[src*="google.com/maps"]:hover,
iframe[src*="maps.google"]:hover,
#asi-map iframe:hover {
    filter: grayscale(50%) contrast(1.05) !important;
    -webkit-filter: grayscale(50%) contrast(1.05) !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.asi-animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-title,
    .hero-section h1 {
        font-size: 2rem;
    }

    .asi-btn-donate {
        padding: 12px 30px !important;
    }
}

/* ========================================
   CLASSES UTILITAIRES
   ======================================== */
.asi-section-padding { padding: 80px 0; }
.asi-text-center { text-align: center; }
.asi-shadow { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.asi-rounded { border-radius: 15px; }
