/* ... (all previous content) ... */

:root {
    /* Modern Blue/Cyan Color Palette */
    --color-base: #1E293B;
    --color-gray-light: #F8FAFC;
    --color-gray-medium: #E2E8F0;
    --color-gray-warm: #F1F5F9;
    --color-black-soft: #1E1E1E;
    --color-black-rich: #1E293B;
    --color-primary: #3B82F6;
    /* Blue-500 */
    --color-primary-dark: #1E40AF;
    /* Blue-800 */
    --color-accent: #06B6D4;
    /* Cyan-500 */
    --color-pastel: #DBEAFE;
    --color-white: #ffffff;
    --color-text: var(--color-base);

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #06B6D4 100%);
    --gradient-button: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --font-accent: 'Source Sans 3', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Layout */
    --container-width: 1200px;
    --header-height: 90px;
    --border-radius: 8px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Accessibility Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-black-rich);
    color: var(--color-white);
    padding: 8px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Global Focus State */
*:focus-visible {
    outline: 3px solid var(--color-primary-dark);
    outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black-rich);
}

.section-title {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-title h3 {
    font-size: 2.5rem;
}

.section-title .tagline {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title .highlight {
    color: var(--color-primary);
    font-style: italic;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.font-accent {
    font-family: var(--font-accent);
    font-weight: 300;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-space {
    padding: var(--spacing-xl) 0;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

[class*="col-"] {
    padding: 0 15px;
    width: 100%;
}

.col-4 {
    width: 33.333%;
}

.col-6 {
    width: 50%;
}

@media (min-width: 768px) {
    .col-md-6 {
        width: 50%;
    }

    .col-md-4 {
        width: 33.333%;
    }
}

@media (min-width: 992px) {
    .col-lg-6 {
        width: 50%;
    }

    .col-lg-4 {
        width: 33.333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-7 {
        width: 58.333%;
    }

    .col-lg-5 {
        width: 41.666%;
    }

    .col-lg-8 {
        width: 66.666%;
    }
}

@media (min-width: 1200px) {
    .col-xl-3 {
        width: 25%;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background: var(--gradient-button);
    color: var(--color-white);
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* Header & Nav Improvements */
.main-header {
    position: relative;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    /* Smaller height on scroll */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-menu {
    display: none;
}

@media (min-width: 992px) {
    .main-menu {
        display: block;
        margin-left: auto;
        /* Push to right */
        margin-right: 30px;
    }

    .main-menu ul {
        display: flex;
        gap: 30px;
        align-items: center;
        margin: 0;
        padding: 0;
    }

    .main-menu>ul>li {
        position: relative;
    }

    .main-menu a {
        font-weight: 600;
        font-size: 16px;
        padding: 10px 0;
        position: relative;
        color: var(--color-black-rich);
        display: flex;
        align-items: center;
    }

    .main-menu a:hover,
    .main-menu a.active {
        color: var(--color-primary);
    }

    /* Dropdown Menu (Desktop) */
    .dropdown-menu {
        display: block;
        /* We control visibility with opacity/transparency for transition */
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 5px 5px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        flex-direction: column !important;
        /* Override flex row from parent ul */
        gap: 0 !important;
        padding: 10px 0 !important;
        z-index: 100;
        border-top: 3px solid var(--color-primary);
    }

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

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu a {
        padding: 10px 20px !important;
        font-size: 0.95rem !important;
        width: 100%;
        color: var(--color-base);
    }

    .dropdown-menu a:hover {
        background-color: var(--color-gray-light);
        color: var(--color-primary);
        padding-left: 25px !important;
        /* Slight animation */
    }
}

.mobile-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-black-rich);
}

@media (min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

/* Mobile Menu Overlay */
.main-menu.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-gray-light);
}

.main-menu.mobile-open ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.main-menu.mobile-open li {
    border-bottom: 1px solid var(--color-gray-light);
}

.main-menu.mobile-open li:last-child {
    border-bottom: none;
}

.main-menu.mobile-open a {
    display: block;
    padding: 15px 0;
    font-weight: 600;
    color: var(--color-black-rich);
}

/* Simple mobile dropdown - always visible for now */
.main-menu.mobile-open .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 20px !important;
    background: none;
}

.main-menu.mobile-open .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-menu.mobile-open .dropdown-menu a {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 0 !important;
    color: #666;
}



/* ================================================
   Simplified Hero Section - Modern Design
   ================================================ */

.hero-simple {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-light);
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 6s ease-in-out infinite;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.2);
    top: -100px;
    right: -100px;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: rgba(6, 182, 212, 0.15);
    bottom: -150px;
    left: -150px;
    animation-delay: 3s;
}

.hero-simple-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-simple-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--color-black-rich);
}

.hero-simple-tagline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.btn-outline {
    background: white;
    color: var(--color-black-rich);
    border: 2px solid var(--color-gray-medium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-outline:hover {
    background: var(--color-gray-light);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@media (max-width: 768px) {
    .hero-simple {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 100px;
    }

    .hero-simple-title {
        font-size: 2.2rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Page Header */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
    margin-bottom: var(--spacing-lg);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 34, 29, 0.7);
}

.page-header__title {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    color: white;
    margin: 0;
    text-transform: capitalize;
}

/* Story Section */
.story-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: var(--spacing-xl) 0;
    color: var(--color-text);
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
}

.story-content {
    position: relative;
    z-index: 1;
}

/* Info Cards (About Info - Redesigned for Impact) */
.info-card {
    background: var(--color-white);
    padding: 35px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    font-size: 2rem;
    color: var(--color-white);
    background: var(--color-primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
    box-shadow: 0 10px 20px rgba(207, 167, 110, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: rotateY(180deg);
}

.info-content {
    text-align: center;
}

.info-content h3 {
    font-size: 2.8rem;
    margin-bottom: 5px;
    color: var(--color-black-rich);
    font-family: var(--font-heading);
    font-weight: 700;
}

.info-content p {
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    opacity: 0.8;
}

/* About Stats/Donate Icons */
.about-stat-card {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer, deeper shadow */
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.about-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-stat-card:hover::after {
    transform: scaleX(1);
}

.about-stat-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    background: var(--color-gray-warm);
    /* Added background circle */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-stat-card:hover .about-stat-icon {
    background: var(--color-primary);
    color: white;
}

.about-stat-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-black-rich);
    /* Use richer black */
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    /* Stronger shadow */
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Text Box styles */
.text-box {
    background: var(--color-gray-warm);
    /* Warmer background */
    padding: 40px;
    border-left: 5px solid var(--color-primary);
    margin-bottom: 40px;
    border-radius: 0 15px 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
}

.volunteer-form-wrapper .btn:hover {
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
    transform: translateY(-3px);
}

/* Profile/Donation Card (Reused for Team/Board) */
.profile-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    height: 100%;
}

.profile-card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.profile-card-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.profile-card:hover .profile-card-image img {
    transform: scale(1.05);
}

.profile-card-category {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--color-primary);
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: 700;
}

.profile-card-content {
    padding: 25px;
}

.profile-card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.profile-card-text {
    font-size: 0.95rem;
    color: #666;
}

/* Team Component (Reused common styles) */
.team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.team-role {
    color: var(--color-primary);
    font-weight: 500;
}

/* Accordion (FAQ) */
.accordion-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-body {
    padding-bottom: 20px;
    max-height: 200px;
    /* Arbitrary limit, can use JS to set dynamic height */
}

/* Footer */
.main-footer {
    background-color: var(--color-gray-light);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: auto;
}

.footer-widget__title {
    font-size: 24px;
    margin-bottom: var(--spacing-md);
}

.footer-widget__info li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-copyright {
    border-top: 1px solid var(--color-gray-medium);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 14px;
}

/* Forms */
.form-control {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--color-base);
    background-color: var(--color-gray-light);
    border: 1px solid transparent;
    border-radius: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background-color: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(207, 167, 110, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-select {
    display: block;
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--color-base);
    background-color: var(--color-gray-light);
    border: 1px solid transparent;
    border-radius: 30px;
    margin-bottom: 20px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

/* Sidebar Styling */
.sidebar-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-gray-medium);
}

.sidebar-content p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.sidebar-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sidebar-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-profile-info h4 {
    font-size: 1.1rem;
    margin: 0;
}

.sidebar-profile-info span {
    font-size: 0.9rem;
    color: var(--color-primary);
}

.contact-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Contact Page specific */
.contact-map-wrapper {
    margin-bottom: 30px;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-gray-medium);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-content p,
.contact-info-content a {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox (Vanilla CSS/JS hooks) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* Activity/Event Cards */
.activity-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    padding: 30px;
    transition: transform 0.3s ease;
    border-left: 5px solid var(--color-primary);
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #777;
    flex-wrap: wrap;
}

.activity-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.activity-meta-icon {
    color: var(--color-primary);
}

.activity-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.activity-description {
    margin-bottom: 20px;
    color: var(--color-base);
}

.activity-footer {
    padding-top: 15px;
    border-top: 1px solid var(--color-gray-medium);
    display: flex;
    gap: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

.activity-footer-item strong {
    color: var(--color-black-rich);
    margin-right: 5px;
}

/* ================================================
   Modern Design Utilities - Blue/Cyan Theme
   ================================================ */

/* Gradient Text Effect */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.5);
    }
}

/* Lite YouTube */
.youtube-lite {
    background-color: #000;
    position: relative;
    display: block;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    padding-top: 56.25%; height: 0;
}

.youtube-lite::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .67) 0, transparent 40px, transparent calc(100% - 40px), rgba(0, 0, 0, .67) 100%);
    height: 100%;
    width: 100%;
    transition: all .2s cubic-bezier(0, 0, .2, 1);
    z-index: 1;
}

.lty-playbtn {
    width: 68px;
    height: 48px;
    position: absolute;
    cursor: pointer;
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    z-index: 2;
    filter: grayscale(100%);
    transition: filter .1s cubic-bezier(0, 0, .2, 1);
    border: none;
    background-color: transparent;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24L27 14v20" fill="white"/></svg>');
}

.youtube-lite:hover .lty-playbtn {
    filter: none;
}

.youtube-lite iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}