/* Tur Bölümü */
.tour {
    padding: 6rem 5%;
    background-color: var(--bg-primary);
}

.tour-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: var(--font-size-3xl);
    margin-bottom: 2rem;
}

.tour-dates {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1rem;
}

.tour-date {
    font-family: var(--font-body);
    background: var(--bg-secondary);
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.ticket-button {
    font-family: var(--font-primary);
    padding: 0.8rem 1.5rem;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ticket-button:hover {
    background-color: #cc0000;
}

/* Tur Bölümü - Dış Bağlantılar */
.tour-external-links {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    max-width: 700px;
    margin: 3rem auto 0;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.tour-link-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tour-link-card .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 280px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.tour-link-card .img img {
    width: 240px;
    height: 240px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.2s;
}

.tour-link-card .img:hover {
    box-shadow: 0 4px 16px var(--shadow-color);
    transform: scale(1.07);
}

/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .tour {
        padding: 4rem 1rem;
    }

    .tour-title {
        font-size: var(--font-size-2xl);
    }

    .tour-date {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .tour-external-links {
        gap: 1.5rem;
    }

    .tour-link-card .img {
        width: 240px;
        height: 240px;
    }

    .tour-link-card .img img {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .tour {
        padding: 3rem 1rem;
    }

    .tour-title {
        font-size: var(--font-size-xl);
    }

    .tour-link-card .img {
        width: 200px;
        height: 200px;
    }

    .tour-link-card .img img {
        width: 160px;
        height: 160px;
    }
} 