/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #03ffff;
    color: #2c3e50;
    line-height: 1.6;
}

/* Blurry Navigation Bar */
.navbar {
    background-color: rgba(52, 152, 219, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo img {
    width: 100px;
    border-radius: 50%;
    border: 2px solid #34dbd0;
    transition: transform 0.3s ease;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.3);
}

.nav-menu a.donate-btn {
    background-color: #e74c3c;
    color: white !important;
    padding: 10px 25px;
}

/* Main Content Sections */
.middle-section {
    padding: 40px 20px;
    text-align: center;
}

.section {
    background-color: #f8f9fa;
    padding: 30px;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 1200px;
}

/* Image Handling System */
.image-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.image-caption {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Lightbox Overlay */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

/* Gallery Controls */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: #3498db;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #2980b9;
}

/* Button Styles */
.button {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    width: 100%;
    max-width: 250px;
    margin-bottom: 30px;
}

.footer-section h2 {
    color: #3498db;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2980b9;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #3498db;
    padding-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        backdrop-filter: none;
        background-color: #3498db;
    }

    .nav-menu {
        flex-direction: column;
        background-color: rgba(52, 152, 219, 0.9);
        padding: 10px;
        border-radius: 10px;
    }

    .nav-menu li {
        margin: 10px 0;
    }

    .section {
        width: 90%;
        padding: 20px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-card img {
        height: 200px;
    }

    .gallery-controls {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 5s ease-in-out;
}