/* Tour Section Styles */
.tour-section {
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0a0a0a, #050505);
    position: relative;
}

.tour-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tour-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    text-align: center;
}

.tour-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #b0b0b0;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 60px;
}

.tour-coming-soon {
    text-align: center;
    padding: 80px 20px;
    color: #b0b0b0;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.tour-item {
    display: grid;
    grid-template-columns: 120px 1fr 60px auto;
    align-items: center;
    padding: 25px 35px;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
    border-bottom: none;
    transition: all 0.3s ease;
    gap: 30px;
}

.tour-item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.tour-item:last-child {
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tour-item:hover {
    background: rgba(139, 0, 0, 0.2);
    border-color: #8b0000;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.3);
}

.tour-poster {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-poster img {
    width: 50px;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgba(139, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.tour-poster img:hover {
    transform: scale(1.1);
    border-color: #8b0000;
    box-shadow: 0 2px 10px rgba(139, 0, 0, 0.5);
}

.tour-date {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #b0b0b0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tour-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tour-venue {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 400;
}

.tour-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #b0b0b0;
}

.tour-tickets {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #b0b0b0;
    letter-spacing: 1px;
}

.tour-tickets .label {
    text-transform: uppercase;
}

.tour-tickets .status {
    padding: 8px 18px;
    background: rgba(139, 0, 0, 0.3);
    border: 1px solid #8b0000;
    border-radius: 4px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tour-tickets .status:hover {
    background: rgba(139, 0, 0, 0.5);
    border-color: #ff0000;
}

.tour-tickets .status.free {
    background: rgba(0, 139, 0, 0.3);
    border-color: #00aa00;
}

.tour-tickets .status.free:hover {
    background: rgba(0, 139, 0, 0.5);
    border-color: #00ff00;
}

@media (max-width: 768px) {
    .tour-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .tour-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .tour-coming-soon {
        font-size: 1.5rem;
        padding: 60px 20px;
    }

    .tour-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .tour-date {
        font-size: 1rem;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(139, 0, 0, 0.3);
    }

    .tour-poster {
        order: -1;
        margin-bottom: 10px;
    }

    .tour-poster img {
        width: 80px;
    }

    .tour-tickets {
        justify-content: flex-start;
    }
}