/* --- EVENTS SPECIFIC STYLES --- */

/* Events Hero */
.events-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.events-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.events-hero p {
    font-size: 1.2rem;
    color: #e0e7ff;
    max-width: 600px;
    margin: 0 auto;
}

/* Events Container */
.events-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 24px;
}

/* Event Card */
.event-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #e2e8f0;
}

/* Date Box */
.event-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    min-width: 100px;
    height: 100px;
    padding: 15px;
    border: 1px solid #e2e8f0;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.event-month {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 4px;
}

.event-year {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Event Details */
.event-details {
    flex-grow: 1;
}

.event-title {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    color: #64748b;
    font-size: 0.95rem;
}

.event-meta i {
    color: var(--primary-color);
    margin-right: 6px;
}

.event-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Nearby Businesses Section */
.nearby-businesses {
    border-top: 1px dashed #e2e8f0;
    padding-top: 20px;
    margin-top: 20px;
}

.nearby-businesses h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Badges & Tags */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
}

.badge-light {
    background: #f1f5f9;
    color: #475569;
}

.badge-light:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* Past Events Section */
.past-events {
    opacity: 0.8;
}

.past-events .event-card {
    background: #f8fafc;
}

.past-events .event-date-box {
    background: #e2e8f0;
    color: #94a3b8;
}

.past-events .event-month {
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .event-card {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .event-date-box {
        flex-direction: row;
        width: 100%;
        height: auto;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px;
    }
    
    .event-day {
        font-size: 1.5rem;
    }
    
    .event-month, .event-year {
        font-size: 1rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 8px;
    }
}
