* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.header {
    background: #ffffff;
    padding: 10px 0;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
}

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


.nav a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.nav a:hover {
    text-decoration: underline;
}

/* NAV BASE */
.nav {
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* HAMBURGER BUTTON */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        padding: 10px 0;
        z-index: 1000;
    }

    .nav-links li {
        padding: 10px 20px;
    }

    .nav-links li a {
        color: #000;
    }

    .nav-links.show {
        display: flex;
    }
}


.hero {
    position: relative;
    height: 75vh;
    background: 
        linear-gradient(
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)
        ),
        url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}


.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 2.6rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }

    .hero h2 {
        font-size: 2rem;
    }
}



.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #f9a825;
    color: #000;
    text-decoration: none;
    border-radius: 4px; 
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ffc107;
}

.section {
    padding: 60px 0;
}

.section.alt {
    background: #f4f4f4;
}

.section h2 {
    margin-bottom: 20px;
}

.executive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}


.gallery-item-lightbox {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    background: #f2f2f2;
}


.gallery-item-lightbox img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}


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

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
}


.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 0.8;
}


.gallery-item-lightbox {
    aspect-ratio: 4 / 3;
}

.gallery-item-lightbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}


.contact-form {
    display: grid;
    gap: 15px;
    max-width: 600px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    width: 100%;
}

.contact-form textarea {
    height: 120px;
}

.footer {
    background: #e89919;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

.announcement-bar {
    background-color: #000;      
    color: #fff;                
    padding: 10px 20px;
    display: flex;
    justify-content: center;     
    font-weight: bold;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 15px;                   
}

#announcement-text {
    margin: 0;
    white-space: nowrap;         
    overflow: hidden;            
    text-overflow: ellipsis;
    color: #fff;                 
    transition: opacity 0.5s ease; 
}

.donate-btn {
    display: inline-flex;        
    align-items: center;
    gap: 8px;                   
    padding: 10px 18px;
    background: #ae0d10;        
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    flex-shrink: 0;
}

.donate-btn:hover {
    background: #116b22;         
}

.donate-icon {
    width: 25px;                 
    height: auto;
}


.carousel {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
}

.carousel-card {
    min-width: 280px;
    margin: 0 15px;
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.carousel-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.carousel-card .title {
    color: #666;
    font-size: 0.9rem;
}


.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0b3c5d;
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-btn:hover {
    background: #092f48;
}


.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.carousel-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dots .active {
    background: #0b3c5d;
}

@media (max-width: 768px) {
    .carousel-card {
        min-width: 90%;
    }
}

