#hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darkens the image */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 10rem;
    margin: 0;
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
}

.register-btn {
    position: absolute;
    bottom: 100px;
    left: 100px;
    z-index: 3;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
}

.register-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Header Overlap Styles */
#header-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

#header-placeholder .main-header {
    background-color: transparent;
}

/* Coming Events Section */
#coming-events {
    padding: 80px 20px;
    background-color: #ffffff;
    color: #333;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: normal;
    /* Optional: Use the same font as hero if desired, otherwise inherits default */
    /* font-family: "Great Vibes", cursive; */ 
}

.section-header .underline {
    width: 100px;
    height: 4px;
    background-color: #d32f2f; /* Red underline */
    margin: 0 auto;
    border-radius: 2px;
}

.events-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    flex-wrap: wrap;
}

.events-text {
    flex: 1;
    min-width: 300px;
}

.events-text h3 {

    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
    margin-bottom: 20px;
}

.events-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

.event-register-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d32f2f;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s;
}

.event-register-btn:hover {
    background-color: #b71c1c;
}

.events-image {
    flex: 1;
    min-width: 500px;
    display: flex;
    justify-content: center;
}

.events-image img {
    max-width: 100%;
    height: auto;
    max-height: 1050px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .register-btn {
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
    }

    .events-image {
        min-width: 100%;
    }
}