/* --- 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);
}

* { 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-color: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--dark); font-weight: 700; }

/* --- Navigation (Central Fix) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 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; /* Takes up space on the left */
    display: flex;
    align-items: center;
}

.nav-links {
    flex: 2; /* Takes up central space */
    display: flex;
    justify-content: center; /* Centers the links within this block */
    list-style: none;
    gap: 2rem;
}

.nav-right {
    flex: 1; /* Takes up equal space on the right */
    display: flex;
    justify-content: flex-end; /* Pushes button/toggle to far right */
    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);
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }

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

.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); }

/* --- Components --- */
.btn { padding: 12px 28px; border-radius: 50px; font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; transition: var(--transition); border: none; cursor: pointer; display: inline-block; text-decoration: none; }
.btn-primary { background: var(--primary-gradient); color: white; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.mobile-only { display: none;  color: white;}
.donate-trigger:hover { box-shadow: 0 8px 15px rgba(194, 24, 91, 0.3); transform: translateY(-2px);  }

.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; }

/* --- Layout --- */
section { padding: 80px 10%; }
.hero { position: relative; height: 85vh; display: flex; align-items: center; justify-content: center; background: #000; color: white; text-align: center; background-image: url(../images/home-page.jpeg); }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(19, 20, 26, 0.8), rgba(15, 23, 42, 0.4)); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 20px;  }
.hero h1 { color: white; font-size: 4rem; margin-bottom: 1.5rem; }

/* Stats & Philosophy Grid */
#impact-stats { background: var(--gray-bg); display: flex; justify-content: space-around; text-align: center; gap: 20px; }
.stat-value { color: var(--primary); font-size: 3rem; }
.philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.philosophy-img-box img { width: 100%; border-radius: 20px; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 70%; height: 100vh;
        background: var(--white); flex-direction: column; justify-content: center;
        padding: 40px; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: 0.5s ease;
       pointer-events:none; visibility:hidden;
    }
    .nav-links.active { right: 0; visibility:visible; pointer-events:auto; }
    .logo, .nav-right { flex: initial; } /* Reset flex for mobile */
    
    #impact-stats { flex-direction: column; gap: 40px; }
    .philosophy-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 2.8rem; }
    .desktop-only { display: none;}
   
}
