/* General Reset */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    text-align: center;
}

/* Header */
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Header Content */
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;  /* Reduced space between logo and text */
    padding: 10px;
}

.logo {
    width: 70px;
    height: auto;
    border-radius: 50%;
}

.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.subtitle {
    color: #27ae60;
    font-size: 16px;
    font-style: italic;
    margin: 5px 0;
}

/* Navigation */
nav {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 10px;
}

/* Desktop Navigation */
.nav-links {
    display: flex;
    list-style: none;
    gap: 12px; /* Reduced gap between menu items */
}

.nav-links a {
    text-decoration: none;
    color: #27ae60;
    font-family: "Poppins", sans-serif; /* Stylish font */
    font-size: 17px; /* Adjusted size */
    font-weight: bold;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    background: #27ae60;
    color: white;
    padding: 8px 12px;
}

/* Mobile Menu */
.menu-toggle {
    background: #27ae60;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: none;
}

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

    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 10px;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
    }

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

    .nav-links a {
        display: block;
        padding: 12px;
        font-size: 18px;
    }

    /* Adjust header for mobile */
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .logo {
        width: 80px;
    }
}

/* Sections */
section {
    padding: 40px;
}

/* Gallery */
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery img {
    width: 200px;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
}

#about {
    max-width: 800px; /* Set a max width for readability */
    margin: 0 auto; /* Center it */
    text-align: justify; /* Improve text alignment */
    padding: 20px;
}

#about h2 {
    text-align: center; /* Center the heading */
}
