/* ========================================
   IN-DEED Foundation
   Exact Carelygo Template Design
   ======================================== */

:root {
    --black: #000;
    --white: #fff;
    --neutral-dark: #444;
    --neutral: #666;
    --neutral-light: #aaa;
    --neutral-lighter: #ccc;
    --neutral-lightest: #f7f7f7;
    --neutral-darker: #222;
    --beige: #fbf9f8;
    --soft-sand: #f7f4f0;
    --pink-light: #fed3f1;
    --light-yellow: #f7fe8e;
    --forest-green: #51a281;
    --dusty-plum: #deb7d2;
    --lavender: #ac9ff7;
    --mint-teal: #6ff0c9;
    --radius-round: 3em;
    --radius-medium: 1.25em;
    --radius-small: 0.75em;
    --radius-large: 2em;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); font-size: 1rem; line-height: 1.5; color: var(--black); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.page-wrapper { overflow: hidden; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Tags (colored pills, slightly rotated)
   ======================================== */
.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-round);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: capitalize;
    transform: rotate(-2deg);
    margin-bottom: 0.75rem;
}
.tag.is-pink { background: var(--pink-light); }
.tag.is-yellow { background: var(--light-yellow); }
.tag.is-green { background: var(--forest-green); color: var(--white); }
.tag.is-plum { background: var(--dusty-plum); }
.tag.is-lavender { background: var(--lavender); color: var(--white); }
.tag.is-teal { background: var(--mint-teal); }

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-round);
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font);
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }

.btn.is-icon { gap: 0.5rem; }
.btn.is-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn.is-secondary:hover { border-color: var(--white); }

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-round);
    background: var(--black);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    transition: opacity 0.2s;
}
.btn-nav:hover { opacity: 0.85; }

.text-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--black);
    transition: gap 0.2s;
}
.text-btn:hover { gap: 0.75rem; }

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid #eee;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}
.nav-logo img { height: 2.25rem; width: auto; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-dark);
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--black); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }

/* ========================================
   Hero: Full viewport, background image
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.45));
}
.hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
}
.hero-content-inner {
    max-width: 780px;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hero-sub {
    font-size: 1.25rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.hero-note {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.7;
}

/* ========================================
   About Section
   ======================================== */
.section-about {
    padding: 6rem 0;
    background: var(--white);
}
.about-top {
    max-width: 900px;
    margin-bottom: 3rem;
}
.about-top h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--black);
}
.about-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}
.about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-medium);
}
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.about-split-left h3 {
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--black);
}
.about-split-right p {
    font-size: 1rem;
    color: var(--neutral-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.about-split-right .btn-group {
    margin-top: 1.5rem;
}

/* ========================================
   Programmes: Image-background overlay cards
   ======================================== */
.section-programmes {
    padding: 6rem 0;
    background: var(--white);
}
.section-head-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}
.section-head-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.section-sub {
    font-size: 1rem;
    color: var(--neutral);
    line-height: 1.6;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.prog-card {
    position: relative;
    border-radius: var(--radius-medium);
    height: 30rem;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    color: var(--white);
    transition: transform 0.3s;
}
.prog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.65));
    border-radius: var(--radius-medium);
    transition: background 0.3s;
}
.prog-card:hover::before {
    background: linear-gradient(transparent 20%, rgba(0,0,0,0.75));
}
.prog-card:hover {
    transform: scale(1.02);
}
.prog-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}
.prog-card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
}
.prog-info {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s, transform 0.35s;
}
.prog-card:hover .prog-info {
    opacity: 1;
    transform: translateY(0);
}
.prog-info p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}
.prog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

/* ========================================
   Programme Icon Cards (listing pages)
   ======================================== */
.prog-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.prog-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem 2rem;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-medium);
    transition: transform 0.3s, box-shadow 0.3s;
    color: inherit;
}
.prog-icon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.prog-icon-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}
.prog-icon-card .icon-wrap svg {
    width: 32px;
    height: 32px;
}
.prog-icon-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.prog-icon-card p {
    font-size: 0.9rem;
    color: var(--neutral);
    line-height: 1.6;
}
/* Icon wrap color themes */
.icon-wrap.is-yellow { background: var(--light-yellow); }
.icon-wrap.is-yellow svg { stroke: #7a6c00; }
.icon-wrap.is-teal { background: #d4f5e9; }
.icon-wrap.is-teal svg { stroke: #2a7a5a; }
.icon-wrap.is-pink { background: var(--pink-light); }
.icon-wrap.is-pink svg { stroke: #9a3d7e; }
.icon-wrap.is-green { background: #d4f5e9; }
.icon-wrap.is-green svg { stroke: var(--forest-green); }

/* ========================================
   Stories Section
   ======================================== */
.section-stories {
    padding: 6rem 0;
    background: var(--beige);
}
.stories-head {
    max-width: 640px;
    margin-bottom: 3.5rem;
}
.stories-head h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.story-card {
    background: var(--white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.story-thumb {
    overflow: hidden;
    border-radius: var(--radius-medium);
    margin: 0.75rem 0.75rem 0;
    height: 220px;
}
.story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.story-card:hover .story-thumb img {
    transform: scale(1.05);
}
.story-body {
    padding: 1.25rem 1.25rem 1.5rem;
}
.story-body h6 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.story-body p {
    font-size: 0.875rem;
    color: var(--neutral);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ========================================
   Sponsors
   ======================================== */
.section-sponsors {
    padding: 6rem 0;
    background: var(--white);
}
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}
.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6rem;
    background: var(--neutral-lightest);
    border-radius: var(--radius-small);
    padding: 1rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}
.sponsor-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.sponsor-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}
.sponsor-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partner Tabs */
.partner-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.partner-tab {
    padding: 0.6rem 1.75rem;
    border: 2px solid var(--neutral-light);
    border-radius: 100px;
    background: transparent;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--neutral);
    cursor: pointer;
    transition: all 0.25s ease;
}
.partner-tab:hover {
    border-color: var(--forest-green);
    color: var(--forest-green);
}
.partner-tab.active {
    background: var(--forest-green);
    border-color: var(--forest-green);
    color: var(--white);
}
.partner-panel {
    display: none;
}
.partner-panel.active {
    display: grid;
}

/* ========================================
   Impact
   ======================================== */
.section-impact {
    padding: 6rem 0;
    background: var(--soft-sand);
    text-align: center;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.impact-item { text-align: center; padding: 2rem 1rem; }
.impact-emoji {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--light-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}
.impact-emoji svg {
    width: 26px;
    height: 26px;
    stroke: #7a6c00;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.impact-num { font-size: 3rem; font-weight: 700; color: var(--black); display: block; line-height: 1; margin-bottom: 0.5rem; }
.impact-label { font-size: 0.9375rem; color: var(--neutral); font-weight: 500; }

/* ========================================
   Get Involved
   ======================================== */
.section-involved {
    padding: 6rem 0;
    background: var(--white);
}
.involved-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.involved-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.involved-text p {
    font-size: 1rem;
    color: var(--neutral-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.involved-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-medium);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--black);
    padding: 4.5rem 0 0;
    color: var(--neutral);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--neutral-darker);
}
.footer-logo img {
    height: 2rem;
    width: auto;
    margin-bottom: 1rem;
    /*filter: brightness(10);*/
}
.footer-left > p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--neutral);
    margin-bottom: 2rem;
}
.footer-newsletter h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.footer-newsletter > p {
    font-size: 0.875rem;
    color: var(--neutral);
    margin-bottom: 1rem;
}
.news-form {
    display: flex;
    gap: 0.5rem;
}
.news-form input {
    flex: 1;
    padding: 0.75rem;
    background: var(--neutral-darker);
    border: none;
    border-radius: var(--radius-small);
    color: var(--white);
    font-size: 0.875rem;
    font-family: var(--font);
    outline: none;
    min-height: 3rem;
}
.news-form input::placeholder { color: var(--neutral); }
.news-form .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    background: var(--white);
    color: var(--black);
}
.news-success {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: #51a281;
}
.news-success.show { display: block; }

.footer-menus {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.footer-menu-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-menu-col h5 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}
.footer-menu-col a,
.footer-menu-col span {
    font-size: 0.875rem;
    color: var(--neutral);
    line-height: 1.5;
    transition: color 0.2s;
}
.footer-menu-col a:hover { color: var(--white); }

.footer-mission {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--neutral);
    border-bottom: 1px solid var(--neutral-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-mission-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-mission-item svg {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 0.8125rem;
    color: var(--neutral);
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a { color: var(--neutral); font-size: 0.8125rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ========================================
   Page Hero (inner pages)
   ======================================== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
}
.page-hero .hero-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6rem 2rem 3rem;
}
.page-hero .hero-content-inner {
    max-width: 780px;
}
.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.page-hero .hero-sub {
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
    max-width: 640px;
}

/* ========================================
   Programme Detail Components Section
   ======================================== */
.section-components {
    padding: 6rem 0;
    background: var(--white);
}
.section-components .section-head-center {
    margin-bottom: 3.5rem;
}

@media (max-width: 768px) {
    .page-hero { height: 50vh; min-height: 320px; }
    .page-hero h1 { font-size: 2.25rem; }
    .page-hero .hero-sub { font-size: 1rem; }
    .page-hero .hero-content { padding: 5rem 2rem 2.5rem; }
}

@media (max-width: 480px) {
    .page-hero h1 { font-size: 1.75rem; }
}

/* ========================================
   Navbar Dropdown
   ======================================== */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.nav-dropdown > .nav-link .dropdown-arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.2s;
}
.nav-dropdown:hover > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-small);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    transform: translateX(-50%) translateY(8px);
    z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-dark);
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    background: var(--neutral-lightest);
    color: var(--black);
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.75rem; }
    .section-head-center h2, .stories-head h2, .involved-text h2 { font-size: 2rem; }
    .prog-card { height: 30rem; padding: 1.5rem; }
    .stories-grid { grid-template-columns: repeat(2, 1fr); }
    .about-gallery { grid-template-columns: repeat(2, 1fr); }
    .sponsors-grid { grid-template-columns: repeat(4, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .footer-menus { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .btn-nav { display: none; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: -8px 0 30px rgba(0,0,0,0.12);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-menu .nav-link {
        font-size: 1.05rem;
        padding: 0.6rem 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    /*.nav-overlay {*/
    /*    position: fixed;*/
    /*    top: 0; left: 0; right: 0; bottom: 0;*/
    /*    background: rgba(0,0,0,0.4);*/
    /*    z-index: 1000;*/
    /*    opacity: 0;*/
    /*    visibility: hidden;*/
    /*    transition: opacity 0.35s, visibility 0.35s;*/
    /*}*/
    /*.nav-overlay.active {*/
    /*    opacity: 1;*/
    /*    visibility: visible;*/
    /*}*/
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        min-width: 0;
        padding: 0.25rem 0 0 1rem;
        display: none;
    }
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu a {
        padding: 0.4rem 0;
    }
    .nav-toggle { display: flex; z-index: 1002; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero h1 { font-size: 2.25rem; }
    .hero-sub { font-size: 1.0625rem; }
    .hero-actions { flex-direction: column; }

    .about-top h2 { font-size: 1.5rem; }
    .about-gallery { grid-template-columns: 1fr 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 2rem; }

    .prog-grid { grid-template-columns: 1fr; }
    .prog-card { height: 28rem; }
    .prog-info { opacity: 1; transform: translateY(0); }

    .prog-icon-grid { grid-template-columns: 1fr 1fr; }

    .stories-grid { grid-template-columns: 1fr; }
    .stories-head h2 { font-size: 2rem; }

    .sponsors-grid { grid-template-columns: repeat(3, 1fr); }
    .involved-layout { grid-template-columns: 1fr; gap: 2rem; }
    .involved-text h2 { font-size: 2rem; }

    .impact-grid { grid-template-columns: 1fr 1fr; }
    .news-form { flex-direction: column; }
    .footer-menus { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.875rem; }
    .about-gallery { grid-template-columns: 1fr; }
    .about-gallery .about-img:nth-child(n+3) { display: none; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .sponsors-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-num { font-size: 2.1rem; }
    .impact-label{ font-size: 0.9rem;}
    .footer-menus { grid-template-columns: 1fr; }
    .prog-icon-grid { grid-template-columns: 1fr; }
}
