@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
    --primary-color: #2E7D32; /* Deep Green */
    --secondary-color: #F57C00; /* Orange/Gold from logo */
    --tertiary-color: #E8F5E9; /* Light Green */
    --text-color: #333333;
    --bg-color: #F8F9FA;
    --white: #FFFFFF;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
header {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-container img {
    height: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Main Content */
main {
    margin-top: 0;
    min-height: calc(100vh - 150px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 70vh;
    padding: 6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1B5E20 100%);
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 3rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #E65100;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Sections */
.section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--primary-color);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.card p {
    font-size: 1rem;
    color: #555555;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444444;
}

.about-images {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Contact Info */
.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.contact-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--card-shadow);
    max-width: 600px;
    width: 100%;
    border-top: 5px solid var(--primary-color);
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-bottom: 1px solid #EEEEEE;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1.1rem;
    color: #555555;
}

/* Footer */
footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 4rem 5% 2rem;
    margin-top: 5rem;
    border-top: 4px solid var(--primary-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    font-size: 0.95rem;
}

.footer-bottom .developer {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; 
    }
    .about-container {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .contact-card {
        padding: 2rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
}


/* Masonry Gallery */
.masonry-gallery {
    column-count: 3;
    column-gap: 1rem;
    padding: 1rem;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}
.masonry-item:hover {
    transform: scale(1.02);
    box-shadow: var(--hover-shadow);
}
.masonry-item img {
    width: 100%;
    display: block;
    border-radius: 8px;
}
@media (max-width: 900px) {
    .masonry-gallery { column-count: 2; }
}
@media (max-width: 600px) {
    .masonry-gallery { column-count: 1; }
}

/* Videos */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.card-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px 8px 0 0;
}

/* Parallax & Glassmorphism */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
    padding: 2rem;
}

/* Modal Lightbox */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.modal-overlay.active {
    display: flex;
}
.modal-close {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10001;
}
.slider-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: none;
}
.slider-img.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 50%;
    transition: background 0.3s;
}
.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}
.prev-btn { left: 10px; }
.next-btn { right: 10px; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Modern Gallery & Filters */
.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.modern-gallery {
    column-count: 4;
    column-gap: 1rem;
    padding: 1rem;
}
@media (max-width: 1200px) {
    .modern-gallery { column-count: 3; }
}
@media (max-width: 900px) {
    .modern-gallery { column-count: 2; }
}
@media (max-width: 600px) {
    .modern-gallery { column-count: 1; }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item.hide {
    display: none;
}
.item-inner {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--card-shadow);
    background: #000;
}
.item-inner:hover .gallery-img, .item-inner:hover .gallery-video {
    transform: scale(1.05);
    opacity: 0.8;
}
.item-inner:hover .img-overlay {
    opacity: 1;
}
.gallery-img, .gallery-video {
    width: 100%;
    display: block;
    transition: all 0.4s ease;
}
.img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(46, 125, 50, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.zoom-icon {
    font-size: 2rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}
.item-inner:hover .zoom-icon {
    transform: scale(1);
}

/* --- RICH VISUAL UPGRADES --- */

.hero-slider-bg {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease;
    transform: scale(1.05);
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.glass-overlay {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    color: #fff;
}

.impact-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--card-shadow);
    transition: transform 0.4s ease;
    cursor: pointer;
}
.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}
.impact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.impact-card:hover .impact-img {
    transform: scale(1.08);
}
.impact-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--white);
}
.impact-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.impact-content p {
    color: #EEE;
    font-size: 1rem;
}

.zigzag-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}
.zigzag-section:nth-child(even) {
    flex-direction: row-reverse;
}
.zigzag-img-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--hover-shadow);
    position: relative;
}
.zigzag-img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s;
}
.zigzag-img-wrapper:hover .zigzag-img {
    transform: scale(1.05);
}
.zigzag-text {
    flex: 1;
}
.zigzag-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.zigzag-text p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .zigzag-section, .zigzag-section:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 3rem;
}
.community-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}

.program-block {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 4rem;
    border: 1px solid #E0E0E0;
}
.program-header {
    padding: 3rem;
    background: var(--tertiary-color);
    text-align: center;
}
.program-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.program-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 2rem;
}
.program-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.program-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: filter 0.3s;
    cursor: pointer;
}
.program-images img:hover {
    filter: brightness(1.1);
}
@media (max-width: 768px) {
    .program-images { grid-template-columns: 1fr; }
}

.contact-hero {
    background-image: url('images/IMG-20260818-WA0021.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 8rem 2rem 5rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-hero .parallax-overlay {
    background: rgba(0, 0, 0, 0.6);
}
.contact-glass {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-left: 1px solid rgba(255, 255, 255, 0.6);
    padding: 4rem;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: left;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.3s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #ddd;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.7);
}


/* --- MODERN GLASSMORPHISM NAVBAR --- */
header {
    background: transparent !important;
    box-shadow: none !important;
    padding: 1rem 5% !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    pointer-events: none; /* Let clicks pass through if not on nav */
}

.modern-nav {
    pointer-events: auto; /* Re-enable clicks */
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.scrolled-nav {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modern-nav .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.modern-nav .logo-container img {
    height: 50px;
    border-radius: 50%;
}
.modern-nav .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.modern-nav .nav-links a {
    text-decoration: none;
    font-weight: 700 !important;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.modern-nav .nav-links a:hover {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-color) !important;
}
.modern-nav .nav-links a::after {
    display: none !important; /* Remove old underline */
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}
.btn-nav:hover {
    background: #1B5E20;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}



/* --- MOBILE RESPONSIVENESS --- */
.mobile-menu-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 900px) {
    /* Navbar Mobile */
    .mobile-menu-toggle {
        display: block;
    }
    .modern-nav {
        border-radius: 20px;
        position: relative;
    }
    .modern-nav .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border: 1px solid rgba(255, 255, 255, 0.5);
        gap: 1.5rem;
    }
    .modern-nav .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }
    .modern-nav .nav-cta {
        display: none; 
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Typography & Spacing */
    h1, .glass-overlay h1, .contact-card h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
    }
    h2, .section-title {
        font-size: 1.8rem !important;
    }
    .glass-overlay, .contact-card, .program-header {
        padding: 2rem 1.2rem !important;
        margin: 1rem !important;
    }
    
    /* Stats Numbers on Home */
    .section .grid h2 {
        font-size: 2.5rem !important;
    }

    /* Grids & Flex */
    .contact-card > div, .zigzag-section {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    .contact-card > div > div {
        text-align: center;
    }
    .contact-card > div > div > div {
        justify-content: center;
    }
}


/* --- NAV COLOR FIXES --- */
/* Hide the mobile CTA button on desktop */
@media (min-width: 901px) {
    .mobile-only-cta { display: none; }
}

/* Default Nav (Transparent top) - White Text */
.modern-nav .nav-links a {
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.modern-nav .logo-text {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.mobile-menu-toggle {
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* Scrolled Nav (Solid White Background) - Dark Text */
.modern-nav.scrolled-nav .nav-links a {
    color: var(--text-color) !important;
    text-shadow: none;
}
.modern-nav.scrolled-nav .logo-text {
    color: var(--primary-color);
    text-shadow: none;
}
.modern-nav.scrolled-nav .mobile-menu-toggle {
    color: var(--primary-color);
    text-shadow: none;
}

/* Mobile Dropdown Nav (White Background) - Dark Text */
@media (max-width: 900px) {
    .modern-nav .nav-links a {
        color: var(--text-color) !important;
        text-shadow: none;
    }
}
