/* Event Hero Banner Section Styles */

.event-hero-banner {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px;
}

.event-hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Overlay color is set inline via meta box setting */
    z-index: 1;
}

.event-hero-banner-container {
    position: relative;
    z-index: 2;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
}

.event-hero-banner-content {
    max-width: 1140px;
    color: #fff;
}

.event-hero-date {
    opacity: 1;
    outline-offset: 0px;
    color: #cce6fa;
    text-shadow: 1px 1px 1px #000;
    outline: 3px #09293b;
    font-size: 32px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Open Sans", sans-serif;
}

.event-hero-title {
    color: #fff;
    text-align: left;
    text-shadow: 1px 1px #000;
    font-size: 64px;
    line-height: 60px;
    font-weight: 700;
    text-wrap: auto;
    font-family: "Open Sans", sans-serif;
}

.event-hero-location {
    opacity: 1;
    outline-offset: 0px;
    color: #cce6fa;
    text-shadow: 1px 1px 1px #000;
    outline: 3px #09293b;
    font-size: 32px;
    font-weight: 700;
    line-height: 30px;
    font-family: "Open Sans", sans-serif;
}

.event-hero-button {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    border: none;
    cursor: pointer;
    margin-top: 64px;
}

.event-hero-button-register {
    background-color: #df6d2d;
    color: #fff;
}

.event-hero-button-register:hover {
    background-color: #df6d2d;
}

.event-hero-button-closed {
    background-color: #df6d2d;
    color: #fff;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-hero-banner {
        min-height: 500px;
        padding: 80px 20px;
    }
    
    .event-hero-title {
        text-align: center;
        margin-bottom: 20px;
        font-size: 40px;
        line-height: 38px;
    }
    
    .event-hero-location {
        text-align: center;
        font-size: 26px;
        line-height: 28px;
    }
    
    .event-hero-date {
        text-align: center;
        font-size: 26px;
        line-height: 28px;
    }
    
    .event-hero-button {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
    .event-hero-button-wrapper {
        text-align: center;
    }
}

