﻿.video-background-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.background-video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.content-container {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.dates-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

    .dates-card h1 {
        color: #fff;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

.performance-item {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .performance-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

.date-badge {
    text-align: center;
    background: linear-gradient(135deg, #667eea50 0%, #764ba250 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
}

    .date-badge .month {
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .date-badge .day {
        font-size: 32px;
        font-weight: bold;
        line-height: 1;
    }

    .date-badge .year {
        font-size: 14px;
    }

.performance-item h5 {
    color: #333;
    font-weight: bold;
}

.performance-item p {
    color: #666;
    margin-bottom: 0;
}

.performance-item small {
    color: #999;
}

@@media (max-width: 768px) {
    .dates-card {
        padding: 20px;
    }

    .date-badge {
        margin-bottom: 15px;
    }

    .text-end {
        text-align: center !important;
        margin-top: 10px;
    }
}
