/* Scrim & Card Hover Effects */
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
    border: none;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.event-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Tab Styling */
.nav-tabs.card-header-tabs {
    border-bottom: none;
    gap: 10px;
}

.nav-tabs .nav-link {
    border: 1px solid #eee !important;
    color: #6c757d;
    padding: 10px 25px;
    transition: all 0.3s;
}

.nav-tabs .nav-link.active {
    background-color: #212529 !important;
    color: #fff !important;
    border-color: #212529 !important;
}

/* Contact Info Glassmorphism */
.contact-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}