body {
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 0;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space between all elements */
    padding: 1rem; /* Optional padding */
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed; /* Keep header at the top */
    width: 100%; /* Ensure it spans the full width */
    z-index: 40; /* Matches your nav z-index */
}

.sponsor-logo {
    width: 100px; /* Adjust size as needed */
    height: auto;
}

.center-logo {
    flex: 1; /* Take up available space to ensure centering */
    text-align: left; /* Center the image */
    display: block;
    max-width: 300px; /* Optional: limit max size */
    height: auto;
}

nav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 40;
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .nav-links a {
    color: #4a5568;
    text-decoration: none;
    margin-left: 1.5rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav .nav-links a:hover {
    color: #1a202c;
}

section {
    padding: 4rem 1rem;
}

#home {
    padding-top: 8rem;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    text-align: center;
}

#home h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

#home p {
    color: #4a5568;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

#home a {
    background-color: #000;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

#home a:hover {
    background-color: #4a5568;
}


#gallery h2, #about h2, #contact h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

#gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item h3 {
    color: #fff;
    font-weight: 300;
    padding: 0.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.info-button-container {
    text-align: center;
    margin-top: 20px;
}

.info-button {
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.info-button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    font-weight: 300;
}
/* General Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 1rem;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: 0.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    cursor: pointer;
}



.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    display: block;
    
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.gallery-title {
    color: white;
    font-weight: 300;
    margin: 0;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    overflow-y: auto;
    max-height: 90vh;
    box-sizing: border-box;
    position: relative;
    max-width: 800px;
    text-align: center;
    background: rgb(92, 92, 92);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-description {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 0.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.modal-text {
    color: #666;
    font-size: 1rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: white;
}

.modal-close-icon {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

/* Utility */
.hidden {
    display: none;
}
   /* About Section */
.about-section {
    padding: 5rem 1rem;
    background-color: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    letter-spacing: 0.1rem;
    color: #333;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
    max-width: 600px;
    text-align: left;
}

.about-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #555;
}
/* Connect Section */
.connect-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #f0f0f0;
}

/* Icon Styling */
.icon {
    width: 50px;
    height: 50px;
    fill: #333;
}

.instagram .icon {
    fill: 
    #000000;
}

.youtube .icon {
    fill: #000000;
}

/* Email Link */
.email-link {
    font-size: 1.25rem;
    color: #333;

    text-decoration: none;
    font-weight: 400;
    margin-top: 1.5rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #555;
}
