/* ═══════════════════════════════════════════════════════
   AŞK-I TURKUAZ — DESTINATIONS (Spotlight + Grid)
   Asimetrik: 1 büyük spotlight + yanda 2'li grid
   Sade, okunabilir, premium his
   ═══════════════════════════════════════════════════════ */

/* Başlık alanı */
.dest-head {
    text-align: center;
    margin-bottom: 3rem;
}

.dest-head-sub {
    max-width: 620px;
    margin: .9rem auto 0;
    color: var(--text-3);
    font-size: .95rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   LAYOUT — Spotlight solda + Grid sağda
   ═══════════════════════════════════════ */
.dest-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

/* Spotlight kart — büyük sol */
.dest-spotlight {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 560px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, .12);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1),
                box-shadow .5s cubic-bezier(.22, 1, .36, 1);
    isolation: isolate;
}

.dest-spotlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, .25);
}

/* Sağ 2'li grid */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.25rem;
}

.dest-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 270px;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 18px -4px rgba(15, 23, 42, .1);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1),
                box-shadow .5s cubic-bezier(.22, 1, .36, 1);
    opacity: 0;
    animation: destRise .7s cubic-bezier(.16, 1, .3, 1) forwards;
    isolation: isolate;
}

@keyframes destRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px -8px rgba(13, 148, 136, .3);
}

/* Arkaplan görsel */
.dest-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.dest-spotlight:hover .dest-img img,
.dest-card:hover .dest-img img {
    transform: scale(1.08);
}

/* Gradient overlay — okunabilirlik için sadece alt */
.dest-spotlight::before,
.dest-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
                rgba(15, 23, 42, 0) 0%,
                rgba(15, 23, 42, 0) 35%,
                rgba(15, 23, 42, .65) 75%,
                rgba(15, 23, 42, .9) 100%);
    pointer-events: none;
}

/* "Öne Çıkan" rozeti (spotlight) */
.dest-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .9rem;
    background: rgba(255, 255, 255, .98);
    color: var(--teal-dark, #0f766e);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}

.dest-tag i {
    color: #f59e0b;
    font-size: .7rem;
}

/* İçerik kutusu — en alt */
.dest-info {
    position: relative;
    z-index: 3;
    padding: 1.5rem;
    color: #fff;
}

.dest-card .dest-info {
    padding: 1.1rem 1.2rem 1.2rem;
}

/* Meta bilgileri (kategori + süre) — küçük, soluk beyaz */
.dest-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: .55rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .82);
    font-weight: 500;
}

.dest-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.dest-meta i {
    color: var(--teal, #14b8a6);
    font-size: .7rem;
}

.dest-card .dest-meta {
    gap: .75rem;
    font-size: .7rem;
    margin-bottom: .4rem;
}

/* Başlık */
.dest-headline {
    font-family: var(--font-display, Georgia, serif);
    color: #fff;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-spotlight .dest-headline {
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    -webkit-line-clamp: 2;
    margin-bottom: .6rem;
}

.dest-card .dest-headline {
    font-size: 1.05rem;
    -webkit-line-clamp: 2;
    font-weight: 700;
    margin-bottom: .5rem;
}

/* Subtitle (sadece spotlight) */
.dest-line {
    color: rgba(255, 255, 255, .88);
    font-size: .88rem;
    line-height: 1.5;
    margin: 0 0 1.1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Foot — fiyat + ok */
.dest-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-top: .4rem;
}

.dest-card .dest-foot {
    align-items: center;
}

.dest-price {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.dest-price-lbl {
    font-size: .68rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .2rem;
}

.dest-price-num {
    font-family: var(--font-display, Georgia, serif);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .35);
}

.dest-spotlight .dest-price-num {
    font-size: 1.6rem;
}

.dest-card .dest-price-num {
    font-size: 1.05rem;
    color: var(--teal, #5eead4);
}

/* Ok butonu */
.dest-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: all .3s;
}

.dest-card .dest-arrow {
    width: 36px;
    height: 36px;
    font-size: .75rem;
}

.dest-spotlight:hover .dest-arrow,
.dest-card:hover .dest-arrow {
    background: var(--teal, #14b8a6);
    border-color: var(--teal, #14b8a6);
    transform: translateX(4px);
}

/* Empty state */
.dest-empty {
    padding: 4rem 1rem;
    text-align: center;
    color: var(--text-4);
}

.dest-empty i {
    font-size: 3rem;
    color: var(--teal-soft, #99f6e4);
    margin-bottom: 1rem;
}

.dest-empty h3 {
    font-family: var(--font-display, Georgia, serif);
    color: var(--text);
    font-size: 1.3rem;
    margin: 0 0 .5rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

/* Tablet: spotlight üstte, grid altta (full width) */
@media (max-width: 960px) {
    .dest-layout {
        grid-template-columns: 1fr;
    }

    .dest-spotlight {
        min-height: 420px;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil: tek sütun */
@media (max-width: 600px) {
    .dest-spotlight {
        min-height: 360px;
    }

    .dest-grid {
        grid-template-columns: 1fr;
    }

    .dest-card {
        min-height: 240px;
    }

    .dest-spotlight .dest-headline {
        font-size: 1.4rem;
    }

    .dest-spotlight .dest-price-num {
        font-size: 1.3rem;
    }
}
