body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f8f9fa;
    color: #222;

    font-family: 'Nunito Sans', sans-serif;
    font-style: normal;
    font-weight: 300;
    overflow-x: hidden;
}

header {
    background-image: url('images/hero-image2.png');
    background-size: cover; /* Ensures the image covers the entire header */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    text-align: center;
    padding: 50px 20px;
    background: #333333; /* Darker background for better contrast */
    color: #ffffff; /* White text for better visibility */
    padding: 1rem 2rem;
    text-align: center; 
}

.header-content {
    max-width: 1200px; /* Limit the width of the content */
    margin: 0 auto; /* Center the content */
    padding: 20px;
}

.header-content h1 {
    font-size: 2.5rem; /* Adjust font size for better readability */
}


nav {
    margin-top: 0.5rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 1.5rem;
    font-weight: bold; 
}

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

main {
    padding: 2rem;
}

.event-list {
    list-style: none;
    padding: 0;
}

.event-list li {
    background: #fff;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.event-time {
    font-weight: bold;
    color: #0077cc;
}

.event-title {
    font-size: 1.1em;
    margin-top: 0.2em;
}

.event-desc {
    color: #555;
    margin-top: 0.3em;
}

/* About Section */
/*#about {
    background: #fff;
    padding: 1rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#about h2 {
    color: #0077cc;
    margin-bottom: 1rem;
}

#about p {
    color: #222;
    font-size: 1em;
}*/

/* Contact Section */
/*#contact {
    background: #fff;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

#contact h2 {
    color: #0077cc;
    margin-bottom: 1rem;
}

#contact p {
    color: #222;
    font-size: 1em;
}*/


/* Scroll-to-top button styles */
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff9900;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#scrollToTop:hover {
    background: #c65a1e;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Logo Section */
#partners {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    margin-top: 2rem;
}

#partners h2 {
    color: #0077cc;
    margin-bottom: 1rem;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.logo-grid img {
    max-width: 150px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    header {
        padding: 30px 15px; /* Reduce padding for smaller screens */
        background-size: contain; /* Adjust the image size for smaller screens */
    }
    .header-content h1 {
        font-size: 1.8rem; /* Reduce font size for smaller screens */
    }
}

/* Main Responsive Design */
@media (min-width: 600px) {
    main {
        max-width: 700px;
        margin: auto;
    }

    #about, #contact {
        max-width: 700px;
        #margin: auto;
    }
    
}