﻿#eventDetailsContainer {
    justify-content: center;
    align-items: center;
}

.event-details {
    width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    position: absolute;
    top: -60px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    backdrop-filter: blur(10px);
}

.event-title {
    text-align: center;
    color: #1a2849;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.subtitle {
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.95;
}

.event-card {
    background: white;
    border-radius: 24px;
    padding: 50px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: flex;
    width: 100%;
    justify-content: space-around;
}

.dates-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 70%;
}

.date-box {
    flex: 1;
    text-align: center;
    background: #f5f5f7;
    border-radius: 16px;
    padding: 20px 15px;
}

.date-month {
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.date-day {
    color: #1a2849;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.date-label {
    color: #666;
    font-size: 12px;
    margin-top: 12px;
    font-weight: 500;
}

.separator {
    color: #1a2849;
    font-size: 32px;
    font-weight: 300;
    flex-shrink: 0;
}

.location-section {
    width: 15%;
}

.location-item {
    margin-bottom: 18px;
}

    .location-item:last-child {
        margin-bottom: 0;
    }

.location-label {
    color: #999;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.location-value {
    color: #1a2849;
    font-size: 16px;
    font-weight: 600;
    width: max-content;
}

@media (max-width: 480px) {
    .date-day {
        font-size: 40px;
    }

    .dates-section {
        gap: 10px;
    }
}
