@import "hero.css";
@import "problem.css";
@import "insight.css";
@import "our-work.css";
@import "theory.css";
@import "get-involved.css";
@import "resource-library.css";
@import "latest-news.css";
@import "footer.css";
* 

{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* ======================================
   GLOBAL RESPONSIVE FOUNDATION
====================================== */
@media (max-width: 900px) {

    section {
        padding: 60px 20px !important;
    }
}
@media (max-width: 900px) {

    .timeline-content,
    .card,
    .feature-card {
        box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    }
}
@media (max-width: 900px) {

    #site-header {
        padding: 12px 18px;
    }

    .site-logo img {
        height: 28px;
    }
}

@media (max-width: 900px) {

    body {
        background: #fafafa;
    }

    section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .timeline-content,
    .card {
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }
}

@media (max-width: 900px) {

    section {
        padding: 80px 20px !important;
    }
}
@media (max-width: 900px) {

    .methodology-header {
        margin-bottom: 50px;
    }

    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .card,
    .timeline-content {
        border-radius: 12px;
    }
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Fluid container system */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Fluid typography */

h1 { font-size: clamp(28px, 5vw, 56px); }
h2 { font-size: clamp(24px, 4vw, 46px); }
h3 { font-size: clamp(18px, 3vw, 24px); }

p {
    font-size: clamp(14px, 2.5vw, 16px);
}

body {
    padding-top: 90px; /* Adjust if header height changes */
}

body {
    font-family: "Noto Sans", sans-serif;
    background: #ffffff;
    color: #0E1B2B;
}

/* =====================================
   HEADER
===================================== */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: #111827;
    border-radius: 2px;
}

/* Mobile */
@media (max-width: 900px) {

    .nav-toggle {
        display: flex;
    }

    .nav-pill {
        display: none;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: white;
        padding: 120px 30px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        transition: right 0.4s ease;
        z-index: 1005;
    }

    .site-nav.active {
        right: 0;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

@media (max-width: 900px) {

    .nav-toggle {
        display: block;
        cursor: pointer;
        z-index: 1002;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 100px 30px 40px;
        display: flex;
        flex-direction: column;
        gap: 24px;
        transition: right 0.4s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    }

    .site-nav.active {
        right: 0;
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
}

@media (max-width: 900px) {

    #site-header {
        padding: 12px 20px;
    }

    .nav-pill {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav.active {
        display: flex;
        flex-direction: column;
        gap: 16px;
        background: white;
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .donate-button {
        display: none;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    transition: all 0.4s ease;
    background: transparent;
}

/* On scroll */
.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 14px 60px;
}

/* =====================================
   LOGO
===================================== */

.header-logo img {
    height: 60px;
    width: auto;
    display: block;
}


.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
}

.header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-pill {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-pill ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-pill li {
    position: relative;
}

.nav-pill a {
    display: block;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    color: #4b5563; /* text-gray-600 */
    position: relative;
    z-index: 2;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Sliding highlight */
.nav-hover {
    position: absolute;
    top: 6px;
    height: calc(100% - 12px);
    background: #e8f2fb;
    border-radius: 999px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1;
    opacity: 0;
}


.donate-btn1 {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #E5F1F8;
    color: #0E78BE;
    border: 1px solid #cce3f3;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.donate-btn1:hover {
    background: #d4eaf8;
    transform: scale(1.05);
    text-decoration: none !important;
}


/* =====================================
   MOBILE
===================================== */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 999px;
    padding: 8px;
    border: none;
    backdrop-filter: blur(6px);
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: #333;
}

@media (max-width: 900px) {

    .header-nav {
        display: none;
    }

    .donate-btn1 {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .site-header {
        padding: 16px 20px;
    }
}
.nav-pill a {
    text-decoration: none !important;
}

.nav-pill a:hover {
    text-decoration: none !important;
}

.nav-pill .nav-current a {
    text-decoration: none !important;
}
.nav-pill .nav-current a {
    color: #0E78BE;
}
.nav-pill a {
    display: block;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    color: #4b5563; /* text-gray-600 */
    position: relative;
    z-index: 2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-pill li:hover a {
    color: #1d4ed8; /* text-blue-700 */
}

/* Force default nav link color */
.nav-pill a,
.nav-pill a:visited,
.nav-pill a:active {
    color: #4b5563 !important; /* text-gray-600 */
}

/* Active/current page link */
.nav-pill .nav-current a {
    color: #4b5563 !important;
}

/* Hover state */
.nav-pill li:hover a {
    color: #1d4ed8 !important; /* text-blue-700 */
}
/* =====================================
   HERO SECTION
===================================== */

.hero-section {
    min-height: 100vh;
    padding: 35px 60px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    right: -20%;
    width: 50%;
    height: 100%;
    background: rgba(14,120,190,0.05);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fde8ee; /* soft pink background */
    color: #DA6586; /* pink used in design */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
}

.hero-highlight {
    color: #0E78BE;
}

.hero-description {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.7;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.btn-primary {
    padding: 18px 34px;
    border-radius: 999px;
    background: #0E78BE;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(14,120,190,0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.btn-secondary {
    padding: 18px 34px;
    border-radius: 999px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #f9fafb;
    transform: scale(1.05);
}
/* =====================================
   SCROLL REVEAL
===================================== */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/* Toran Divider Between Sections */

.toran-divider {
    width: 100%;
    height: 80px;
    margin-top: -40px;   /* Pull closer to Our Work */
    margin-bottom: 40px;
    opacity: 0.9;
    pointer-events: none;
    background: url("../images/Toran_Garland.png") repeat-x center;
}
@media (max-width: 900px) {

    section {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .timeline-content,
    .card,
    .feature-card {
        box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    }

    h1, h2, h3 {
        letter-spacing: -0.5px;
    }

    body {
        font-size: 16px;
    }
}
@media (max-width: 900px) {

    section:not(:last-child) {
        border-bottom: 1px solid #f1f5f9;
    }
}
.logo-wrapper {
    position: relative;
    width: 160px;
    height: 50px;
}

.logo-variant {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    transition: opacity 0.5s ease, transform 0.6s ease;
    opacity: 0;
}

.logo-variant.active {
    opacity: 1;
}

.logo-wrapper.rotate .logo-variant.active {
    transform: rotate(360deg);
}
