.event-date {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.event-date i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Button Container */
.btn-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-cta {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    display: inline-block;
    margin-top: 1rem;
}

.btn-cta:hover {
    background-color: var(--primary-color);
    color: white;
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Add new image container styles */
.event-detail .col-md-6 {
    margin-bottom: 2rem;
}

.event-detail .img-container {
    position: relative;
    width: 100%;
    max-width: 85%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 0.25rem;
    margin: 0 auto;
}

.event-detail .img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

/* Add new media query for medium devices */
@media (max-width: 991px) {
    .event-detail .img-container {
        max-width: 95%;
        aspect-ratio: 16/9;
        margin-bottom: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    /* Force image to top regardless of even/odd ordering */
    .event-detail .col-md-6 {
        order: unset !important;
        text-align: center;  /* Center text content */
        max-width: 95%;     /* Increased from 80% to 95% */
        margin-left: auto;
        margin-right: auto;
    }

    .event-detail .row {
        flex-direction: column;
        align-items: center;  /* Center content horizontally */
    }

    .event-date {
        justify-content: center;  /* Center date */
    }

    .btn-cta {
        display: block;
        width: 200px;  /* Fixed width for consistency */
        margin: 1.5rem auto;  /* Center horizontally and add vertical margin */
    }
}

/* Update mobile styles */
@media (max-width: 768px) {
    .event-detail .img-container {
        aspect-ratio: 1/1;
        max-width: 95%;
    }
s
    .event-date {
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .btn-cta {
        width: 80%;
    }
}

/* Add this to your existing CSS */
.events-empty-state {
    text-align: center;
    padding: 100px 20px;
    background-color: #f9f9f9;
    margin: 50px 0;
}

.events-empty-state p {
    font-size: 1.5rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .events-empty-state {
        padding: 60px 20px;
    }
    
    .events-empty-state p {
        font-size: 1.2rem;
    }
}
