﻿/* =======================
   HOME HERO
======================= */

.hero-home {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background-image: url('/assets/img/4buyuk_afis.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,.70) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,.55) 100% );
}

/* tablet */
@media (max-width: 1024px) {
    .hero-home {
        height: 480px;
        background-image: url('/assets/img/2026_4_buyukler__banner_1.png');
        background-position: center;
    }
}

/* mobile */
@media (max-width: 600px) {
    .hero-home {
        height: 640px;
        background-image: url('/assets/img/2026_4_buyukler_banner_2.png');
        background-position: center top;
    }
}

/* =======================
   HERO ALT BUTONLAR
   - mobil/tablet görünür
   - tek satır, wrap yok
   - header butonları gibi davranır
======================= */

.homeQuickTabs {
    display: none;
    gap: 10px;
    margin-top: 12px;
    /* wrap yok */
    flex-wrap: nowrap;
    white-space: nowrap;
    /* taşarsa sağa kaydır */
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    /* scrollbar gizlemek istersen */
    scrollbar-width: none;
}

    .homeQuickTabs::-webkit-scrollbar {
        height: 0;
    }

.homeQuickBtn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    line-height: 1;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .homeQuickBtn:hover {
        filter: brightness(1.05);
    }

/* sadece mobil+tablet */
@media (max-width: 1024px) {
    .homeQuickTabs {
        display: flex;
    }
}

/* =======================
   POPÜLER TV PAKETLERİ
======================= */

.homePopular {
    margin-top: 18px;
}

.homeSectionHead {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0 10px;
}

.homeSectionTitle {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: rgba(255,255,255,.95);
}

.homeSectionLink {
    color: rgba(255,255,255,.78);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
}

    .homeSectionLink:hover {
        color: rgba(255,255,255,.95);
    }

.homeGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

@media (max-width: 1100px) {
    .homeGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .homeGrid {
        grid-template-columns: 1fr;
    }
}

.homeCard {
    border-radius: 18px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(20,20,20,.38);
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.homeCardTitle {
    font-weight: 950;
    font-size: 15px;
    color: rgba(255,255,255,.95);
}

.homeCardSub {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.72);
}

.homePriceRow {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.homePriceLbl {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,.62);
}

.homePriceVal {
    font-size: 14px;
    font-weight: 950;
    color: rgba(255,255,255,.95);
}

.homeCtaRow {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.homeCta, .homeCtaGhost {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 950;
    font-size: 13px;
    line-height: 1;
}

.homeCta {
    background: #f7c600;
    color: #111;
}

.homeCtaGhost {
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.92);
}

    .homeCta:hover, .homeCtaGhost:hover {
        filter: brightness(1.05);
    }
