/* Events Section */
.events-section {
    background-color: #000;
    /* Fallback */
    padding: 6rem 0;
    position: relative;
    /* border-bottom removed */
    overflow: hidden;
}

.events-section::after {
    /* removed pseudo-element, using explicit div */
    display: none;
}

.section-separator {
    position: relative;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    z-index: 100;
    box-shadow: 0 0 15px rgba(0, 204, 255, 0.8);
    display: block;
}

#video-events-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-events-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.events-section .container {
    position: relative;
    z-index: 3;
}

.events-section .section-title {
    color: #fff;
    margin-bottom: 4rem;
    text-align: center;
}

.events-section .highlight {
    color: var(--accent-color);
    text-shadow: 2px 2px 0 var(--primary-color);
}

/* Swiper Styles */
.events-swiper {
    width: 100%;
    padding-bottom: 50px;
    /* Space for pagination */
    overflow: hidden;
    /* Ensure content stays within container */
}

.swiper-slide {
    height: auto;
    display: flex;
    /* Equal height slides */
}

/* Event Card */
.event-card {
    display: flex;
    flex-direction: column;
    /* Stack logic for card content */
    align-items: flex-start;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 0;
    /* Removing padding to allow image to be full width if needed, or re-adding inside */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* Full height of slide */
}

.event-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid #333;
}

.event-card-content {
    padding: 1.5rem;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* Top border style */
    background-color: var(--primary-color);
    transition: height 0.3s ease;
    z-index: 10;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 153, 0.2);
}

.event-card:hover::before {
    height: 5px;
    /* Keep top border consistent */
}

/* Date */
.event-date {
    background: var(--primary-color);
    padding: 0.5rem 1rem;
    position: absolute;
    top: 15px;
    right: 15px;
    border-radius: 5px;
    text-align: center;
    z-index: 20;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.event-date .day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

.event-date .month {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    background: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    margin-top: 2px;
}

/* Details */
.event-details {
    padding: 1.5rem;
    flex: 1;
    width: 100%;
}

.event-city {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.event-venue,
.event-time {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.event-venue i,
.event-time i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Action Button */
.event-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
    width: 100%;
    margin-top: auto;
}

.btn-location {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-location:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.1);
}

.btn-ticket {
    display: inline-block;
    flex: 1;
    padding: 0.8rem;
    background-color: var(--accent-color);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1px;
    text-align: center;
}

.btn-ticket:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Swiper Pagination & Navigation */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .event-card {
        margin-bottom: 0;
    }
}