/* --- AGUMA OUTREACH NETWORK: GLOBAL STYLES --- */

:root {
    --primary: #C2185B;
    --primary-gradient: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
    --dark: #0F172A;
    --text: #334155;
    --gray-bg: #F8FAFC;
    --gray-border: #E2E8F0;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Resets --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html{
    overflow-x:hidden;
}
body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--dark); font-weight: 700; }

/* --- Navigation (Centered & Responsive) --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 8%; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--gray-border);
}

.logo { flex: 1; }
.nav-links { flex: 2; display: flex; justify-content: center; list-style: none; gap: 2.5rem; transition: 0.5s ease; }
.nav-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }

.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.9rem; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* Navigation Burger */
.nav-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1100; }
.nav-toggle span { width: 28px; height: 3px; background: var(--dark); border-radius: 2px; transition: 0.4s; }

.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --- UI Components --- */
.btn { padding: 14px 32px; border-radius: 50px; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: var(--transition); border: none; cursor: pointer; display: inline-block; text-decoration: none; }
.btn-primary { background: var(--primary-gradient); color: white; }
.tag { display: inline-block; padding: 4px 14px; background: var(--primary-gradient); color: white; font-size: 0.7rem; font-weight: 700; border-radius: 20px; text-transform: uppercase; margin-bottom: 15px; }
.card { background: var(--white); padding: 2.5rem; border-radius: 20px; border: 1px solid var(--gray-border); transition: var(--transition); }

/* --- Layout Sections --- */
section { padding: 100px 10%; }
.page-hero { background: var(--gray-bg); text-align: center; padding: 120px 8%; display: flex; justify-content: center; border-bottom: 1px solid var(--gray-border); }
.hero-content { max-width: 800px; }

/* Pillars Grid */
.section-header { text-align: center; margin-bottom: 50px; }
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pillar-card { text-align: center; }
.pillar-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }

/* --- Responsive Timeline --- */
.timeline { position: relative; max-width: 1200px; margin: 0 auto; }
.timeline::after { content: ''; position: absolute; width: 3px; background-color: var(--gray-border); top: 0; bottom: 0; left: 50%; margin-left: -1.5px; }

.timeline-item { padding: 10px 40px; position: relative; width: 50%; }
.timeline-item::after { content: ''; position: absolute; width: 20px; height: 20px; right: -10px; background: white; border: 4px solid var(--primary); top: 30px; border-radius: 50%; z-index: 1; }

.left { left: 0; }
.right { left: 50%; }
.right::after { left: -10px; }

.year { display: block; font-weight: 800; color: var(--primary); margin-bottom: 10px; font-size: 1.2rem; }

footer { background: var(--dark); color: white; text-align: center; padding: 60px 10%; }

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    .desktop-only { display: none; }
    .mobile-only-item { display: block; margin-top: 20px; }
    
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
        background: white; flex-direction: column; justify-content: center;
        padding: 40px; box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .nav-links.active { right: 0; }
}

@media screen and (max-width: 768px) {
    section { padding: 60px 8%; }
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; left: 0 !important; }
    .timeline-item::after { left: 21px; }
}