/* =========================
   VIRTUAL TOUR PAGE
   - Modern hero kartlar (media + body)
   - 360° badge, gradient zemin, big icon
========================= */
.tour-page {
    color: #333;
    padding: 24px 0 48px;
    min-height: 60vh;
    background-image:
        radial-gradient(1200px 600px at 0% 0%, rgba(139, 0, 0, .04), transparent 60%),
        radial-gradient(1000px 500px at 100% 20%, rgba(44, 62, 80, .04), transparent 60%);
    background-size: cover;
    background-attachment: fixed;
}

    .tour-page .tour-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 16px;
    }

/* Header lead */
.tour-lead {
    margin: 14px auto 0;
    max-width: 720px;
    text-align: center;
    color: #6b7280;
    font-size: .98rem;
    line-height: 1.6;
}

/* =========================
   GRID
========================= */
.tour-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* =========================
   TOUR CARD
========================= */
.tour-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, .04),
        0 12px 28px rgba(0, 0, 0, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    isolation: isolate;
}

    .tour-card:hover {
        transform: translateY(-8px);
        box-shadow:
            0 1px 2px rgba(0, 0, 0, .04),
            0 28px 56px rgba(139, 0, 0, .18);
        border-color: rgba(139, 0, 0, .22);
        text-decoration: none;
        color: inherit;
    }

    .tour-card:focus-visible {
        outline: none;
        box-shadow:
            0 0 0 3px rgba(139, 0, 0, .25),
            0 16px 32px rgba(0, 0, 0, .14);
    }

/* =========================
   MEDIA (üst gradient banner)
========================= */
.tour-card-media {
    position: relative;
    height: 240px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

/* Müze: düz bordo */
.tour-card-media--museum {
    background: var(--msb-bordo);
}

/* Kültür Sitesi: düz bordo */
.tour-card-media--culture {
    background: var(--msb-bordo);
}

/* Yumuşak pattern overlay */
.tour-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .08), transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .1), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Dekoratif yıldız */
.tour-card-media::after {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 10rem;
    color: rgba(255, 255, 255, .06);
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 1;
    transition: transform .6s ease, color .3s ease;
}

.tour-card:hover .tour-card-media::after {
    transform: rotate(-4deg) scale(1.08);
    color: rgba(255, 255, 255, .1);
}

/* 360° Badge (sol üst) */
.tour-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: .3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .15);
}

    .tour-card-badge i {
        font-size: .82rem;
    }

/* Büyük ikon (ortada) */
.tour-card-bigicon {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 3rem;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, .2),
        inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: transform .4s ease, border-radius .4s ease, box-shadow .4s ease;
}

.tour-card:hover .tour-card-bigicon {
    transform: scale(1.08) rotate(-6deg);
    border-radius: 32px;
    box-shadow:
        0 20px 36px rgba(0, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .35);
}

/* =========================
   BODY
========================= */
.tour-card-body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.tour-card-title {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 750;
    color: #1f2937;
    line-height: 1.25;
    transition: color .25s ease;
}

.tour-card:hover .tour-card-title {
    color: var(--msb-bordo);
}

.tour-card-desc {
    margin: 0;
    color: #6b7280;
    font-size: .95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* CTA (alt) */
.tour-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--msb-bordo), #a30000);
    color: #fff;
    font-weight: 650;
    font-size: .92rem;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(139, 0, 0, .25);
    align-self: flex-start;
    transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
}

    .tour-card-cta i {
        transition: transform .25s ease;
        font-size: .82rem;
    }

.tour-card:hover .tour-card-cta {
    background: linear-gradient(135deg, #a30000, var(--msb-bordo));
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(139, 0, 0, .35);
}

    .tour-card:hover .tour-card-cta i {
        transform: translateX(4px);
    }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .tour-page {
        background-attachment: scroll;
        padding: 18px 0 36px;
    }

    .tour-grid {
        gap: 22px;
        margin-top: 24px;
    }

    .tour-card-media {
        height: 200px;
    }

    .tour-card-bigicon {
        width: 96px;
        height: 96px;
        border-radius: 24px;
        font-size: 2.5rem;
    }

    .tour-card-body {
        padding: 22px 24px 24px;
    }

    .tour-card-title {
        font-size: 1.22rem;
    }
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tour-lead {
        font-size: .92rem;
    }

    .tour-card-media {
        height: 180px;
    }

    .tour-card-bigicon {
        width: 86px;
        height: 86px;
        font-size: 2.2rem;
    }

    .tour-card-badge {
        font-size: .74rem;
        padding: 6px 12px;
        top: 12px;
        left: 12px;
    }

    .tour-card-body {
        padding: 20px 20px 22px;
        gap: 10px;
    }

    .tour-card-title {
        font-size: 1.15rem;
    }

    .tour-card-desc {
        font-size: .9rem;
    }
}

@media (max-width: 480px) {
    .tour-card-media {
        height: 160px;
    }

    .tour-card-bigicon {
        width: 76px;
        height: 76px;
        font-size: 1.95rem;
        border-radius: 20px;
    }

    .tour-card-media::after {
        font-size: 7rem;
        right: -15px;
        bottom: -20px;
    }
}

