/* Tour Section */
#tour {
    min-height: 100vh;
    padding: 120px 60px;
    display: none;
}

.tour-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 6px;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
}

.tour-no-events {
    text-align: center;
    color: #666666;
    font-size: 1rem;
    font-style: italic;
    margin-top: 3rem;
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    overflow: hidden;
    position: relative;
}

.tour-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 0;
}

.tour-item:hover::before {
    background: rgba(0, 0, 0, 0.4);
}

.tour-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.tour-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 40px;
    position: relative;
    z-index: 1;
}

.tour-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.tour-date-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #999999;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-location {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.tour-venue {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #AAAAAA;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tour-description {
    font-size: 1.05rem;
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tour-description p {
    margin-bottom: 1rem;
}

.tour-description strong {
    color: #FFFFFF;
    font-weight: 400;
}

.tour-booking-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.tour-booking-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* Responsive */
@media (max-width: 968px) {
    .tour-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tour-date {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    #tour {
        padding: 80px 30px;
    }
    
    .tour-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
        margin-bottom: 3rem;
    }
    
    .tour-content {
        padding: 30px 20px;
    }
    
    .tour-location {
        font-size: 1.5rem;
    }
}
