@charset "utf-8";
/* CSS Document */

/* EVENTS SECTION STYLE */
section.events {
    text-align: center;
    padding: 40px 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
}

section.events h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

section.events p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 20px;
}

.event-banner {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.event-banner img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
}

#upcoming-events {
    list-style: none;
    padding: 0;
	
}

#upcoming-events li {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #333;
	
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    section.events h2 {
        font-size: 1.8rem;
    }

    section.events p {
        font-size: 1rem;
    }
}
