* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: #ffffff;
    color: #000;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.logo img { 
    height: 60px; /* Increased from 40px */
    display: block; 
    transition: height 0.3s ease; /* Optional: smooth transition if you change sizes */
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid #eaeaea; */
    z-index: 2000;
    padding: 1.5rem 4%;
}

.nav-container {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}


.nav-menu ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.nav-menu a:hover { color: #888; }

/* RE-RESTORED: Centered Dropdown Glassmorphism */
.dropdown {
    position: relative;
    padding-bottom: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    flex-direction: column !important;
    gap: 0 !important;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    min-width: 220px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    padding: 12px 25px;
    font-size: 0.75rem;
    display: block;
    width: 100%;
    text-align: center;
}

.nav-cta { display: flex; justify-content: flex-end; align-items: center; }

.btn-donate {
    background: #000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid #000;
}

/* THIN MENU ICON */
.mobile-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    padding: 0;
    margin-left: 15px;
}



.btn-icon {
    font-size: 2.8rem;
    font-weight: 100; /* Thin */
    line-height: 1;
    color: #000;
    transition: color 0.3s;
}

/* CENTERED MOBILE OVERLAY */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center; /* Horizontally centered */
    text-align: center; /* Vertically centered */
    transform: translateY(-100%);
    visibility: hidden;
}

.mobile-nav ul { list-style: none; }
.mobile-nav li { margin: 1.5rem 0; }
.mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-weight: 300;
}

.mobile-nav a:hover {
    color: #888888; /* The same grey as your main nav */
}

/* ==========================================================================
   Care Section (Exact Image Match)
   ========================================================================== */

.care-layout {
    padding: 60px 2.5%; /* Tight sides like your screenshot */
    background: #fff;
    margin-top: 50px;
}

.care-container {
    max-width: 1600px;
    margin: 0 auto;
}

/* 1. The Big Card */
.care-image-card {
    position: relative;
    width: 100%;
    height: 70vh;
    border-radius: 40px; /* Rounded corners from image */
    overflow: hidden;
    margin-bottom: 60px;
}

.care-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8); /* Darkens slightly so white text pops */
}

.care-card-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: #fff;
}

.card-main-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 300;
}

/* Buttons inside the image */
.card-cta-group {
    display: flex;
    gap: 15px;
}
/* 1. The Main "Join" Button (Orange to Gold) */
.btn-primary-pill {
    background: #6f9b6bc3; /* Rich International Orange */
    color: #fff;
    padding: 18px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    /* text-transform: uppercase; */
    letter-spacing: 0.05em;
  
    display: inline-flex;
    align-items: center;
}

.btn-primary-pill:hover {
    background: #a89672; /* Metallic Gold */
    border-color: #ffffff;
    color: #ffffff; 
  
}

/* 2. The Transparent Outline Button (Matches the Editorial Vibe) */
.btn-outline-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 18px 36px;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* transition: all 0.4s ease; */
}

.btn-outline-pill:hover {
    background: #ffffff85;
    color: #000;
    border-color: #fff;
    /* transform: translateY(-4px); */
}

.card-pause-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0,0,0,0.3);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    cursor: pointer;
}

/* 2. The Split Bottom Section */
.care-text-split {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 split */
    gap: 5%;
    padding: 0 5%;
}

.split-heading {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: #000;
}

.split-body {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #666; /* Gray text for contrast */
}

/* Mobile Fixes */
@media (max-width: 1024px) {
    .care-image-card {
        height: 50vh;
        border-radius: 25px;
    }
    .care-text-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
section { min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.section-off-white-1 { background-color: #fafafa; }
.section-off-white-2 { background-color: #f5f5f5; }
.section-off-white-3 { background-color: #eeeeee; }
.section-off-white-4 { background-color: #e0e0e0; }

/* ==========================================================================
    Footer (Brutalist Style Match)
   ========================================================================== */

/* 1. Primary Styling for Section Dark */
.footer.section-dark {
    /* Use Montserrat ONLY for the footer to match the image */
    font-family: 'Montserrat', sans-serif; 
    
    background-color: #000; 
    color: rgba(255, 255, 255, 0.95); /* Off-white text, not stark */
    padding: 100px 4% 60px; /* Generous top padding for Brutalist feel */
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Very subtle top boundary */
}

/* 2. Container and Vertical Stack Control */
.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 100px; /* Massive spacing between the big text and the links */
    text-align: center;
}

/* 3. The Oversized Branding Text */
.brand-text {
    font-size: clamp(6rem, 15vw, 15rem); /* Dynamic massive text */
    font-weight: 900; /* Montserrat Black */
    line-height: 0.8; /* Replicates the vertical tight stacking of "people" */
    letter-spacing: -0.05em; /* Brutalist tight kerning */
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95); /* Matching off-white color */
    margin: 0;
}

/* 4. The Links Wrapper (A separate grid or flex) */
.footer-links-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Wraps on smaller screens */
    gap: 50px; /* Minimal gap between the columns themselves */
}

/* 5. Column Styles (Generic) */
.footer-col {
    flex: 1 1 200px; /* All columns share space, at least 200px wide */
    display: flex;
    flex-direction: column;
}

.col-title {
    font-size: 0.9rem;
    font-weight: 800; /* Bold title */
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px; /* Spacing below header */
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin: 10px 0; /* Tight vertical stacking of links */
}

/* 6. Link Interaction */
.footer-col a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7); /* Standard links are less bright */
    text-decoration: none;
    font-weight: 400; /* Regular weight */
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #fff; /* Bright white hover */
    padding-left: 2px; /* Brutalist minimal nudge */
}

/* 7. Specific Column 4 Styles (Contact Detail Column) */
.col-contact p {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 10px 0; /* Tight stacking of contact info */
    line-height: 1.4;
}

/* Specific Address Formatting */
.col-contact .address {
    margin-top: 15px; /* Spacing above address block */
}

.col-contact p a {
    color: rgba(255, 255, 255, 0.7); /* Ensures the email link matches phone text */
}

/* ==========================================================================
   Footer Responsive Adjustments
   ========================================================================== */
@media (max-width: 1024px) {
    .footer.section-dark {
        padding: 60px 4% 40px;
    }
    
    .brand-text {
        font-size: 6rem; /* Restrict massive text height on smaller screens */
    }
    
    .footer-links-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 4rem; /* Restrict further on mobile */
    }
    
    .footer-links-wrapper {
        grid-template-columns: 1fr; /* Single column flow on mobile */
        text-align: center;
    }
    
    .footer-col ul {
        align-items: center; /* Horizontally center links in col 1, 2, 3 */
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .nav-container { grid-template-columns: 1fr 1fr; }
    .nav-menu { display: none; }
    .btn-text { display: none; }
    .btn-donate { display: none; } 
    .mobile-toggle { display: block; }
    
    .mobile-toggle.active .btn-icon { color: #000000; position: relative; z-index: 2001; }
}

/* ==========================================================================
   RESPONSIVE — Mobile-First Fixes (Nav untouched)
   ========================================================================== */

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* --- Care Section Mobile --- */
@media (max-width: 768px) {
    .care-layout {
        padding: 40px 4%;
        margin-top: 70px;
    }

    .care-image-card {
        height: 45vh;
        border-radius: 16px;
        margin-bottom: 40px;
    }

    .care-card-content {
        left: 6%;
        right: 6%;
    }

    .card-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .card-cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary-pill,
    .btn-outline-pill {
        padding: 14px 28px;
        font-size: 0.85rem;
        text-align: center;
        justify-content: center;
    }

    .care-text-split {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 2%;
    }
}

/* --- Care Section Tablet --- */
@media (min-width: 769px) and (max-width: 1024px) {
    .care-layout {
        padding: 50px 3%;
        margin-top: 80px;
    }

    .care-image-card {
        height: 50vh;
        border-radius: 25px;
    }

    .care-text-split {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 3%;
    }
}

/* --- Footer Mobile --- */
@media (max-width: 768px) {
    .footer.section-dark {
        padding: 60px 6% 40px;
    }

    .footer-container {
        gap: 50px;
    }

    .brand-text {
        font-size: clamp(3rem, 16vw, 5rem);
        letter-spacing: -0.03em;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer-col ul {
        align-items: flex-start;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .footer-links-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul {
        align-items: center;
    }
}

/* --- Touch tap targets (non-nav elements only) --- */
@media (max-width: 1024px) {
    .footer-col a,
    .btn-primary-pill,
    .btn-outline-pill {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}