﻿/* =========================
   THEME
   ========================= */
:root {
    --bg: #050505;
    --stroke: rgba(255,255,255,.14);
    --stroke2: rgba(255,255,255,.18);
    --text: rgba(255,255,255,.95);
    --muted: rgba(255,255,255,.78);
    --muted2: rgba(255,255,255,.62);
    --yellow: #f7c600;
    --cardGlass: rgba(20,20,20,.38);
    --cardBorder: rgba(255,255,255,.12);
    --panelGlass: rgba(0,0,0,.25);
    --panelBorder: rgba(255,255,255,.10);
    --max: 1180px;
    --line: rgba(255,255,255,.14);
    --brand: #f7c600;
    --radius: 18px;
}


/* lexend-deca-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 500;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 800;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lexend-deca-900 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lexend Deca';
    font-style: normal;
    font-weight: 900;
    src: url('/assets/fonts/lexend-deca/lexend-deca-v25-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* =========================
   GLOBAL / BASE
   ========================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Lexend Deca", Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =========================
   WRAP + TOD AFIS BACKGROUND
   ========================= */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    position: relative;
}

    /* TOD tarzı büyük afiş + karartma + vignette */
    .wrap:before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.86) 55%, rgba(0,0,0,.94) 100%), radial-gradient(900px 520px at 25% 12%, rgba(255,255,255,.05), transparent 60%), radial-gradient(900px 520px at 85% 30%, rgba(247,198,0,.05), transparent 60%), url("../img/4buyuk_afis.webp");
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: fixed;
        filter: saturate(1.05) contrast(1.06);
    }

.container {
    /* max-width: var(--max);*/
    margin: 0 auto;
    /*padding: 0 16px;*/
}

.container2 {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px;
}

/* MAIN */
.page {
    min-height: 65vh;
    padding: 0px;
    /* padding: 18px 0 40px;*/
}

/* =========================
   HEADER
   ========================= */
.topbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: saturate(160%) blur(10px);
    background: rgba(11,12,16,.72);
    border-bottom: 1px solid var(--line);
}

.navrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 170px;
}

    .brand img {
        height: 40px;
        width: auto;
        display: block;
    }

/* =========================
   FOOTER
   ========================= */

.dtFooter {
    background: linear-gradient(180deg, #4b0f78 0%, #4d147d 100%);
    color: #fff;
    padding: 44px 0 34px;
    font-family: inherit;
}

.dtFooterInner {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.dtFooterGrid {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1.25fr 1.25fr 1fr 1fr;
    gap: 38px;
    align-items: start;
}

.dtFooterLogo {
    width: 165px;
    max-width: 100%;
    margin-bottom: 22px;
}

.dtStoreBtns {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

    .dtStoreBtns img {
        height: 30px;
        width: auto;
    }

.dtAddress {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,.95);
    margin: 0;
}

.dtFooterCol h4 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 14px;
    color: #fff;
}

.dtFooterCol a {
    display: block;
    color: rgba(255,255,255,.92);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 9px;
    transition: opacity .2s ease, transform .2s ease;
}

    .dtFooterCol a:hover {
        opacity: .75;
        transform: translateX(2px);
    }

.dtFooterLine {
    height: 1px;
    background: rgba(255,255,255,.18);
    margin: 34px 0 18px;
}

.dtFooterCenter {
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
    color: #fff;
}

.dtLegalText {
    max-width: 820px;
    margin: 14px auto 0;
    text-align: center;
    font-size: 10.5px;
    line-height: 1.65;
    color: rgba(255,255,255,.82);
}

.dtFooterBottom {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,.95);
}

.dtCopy {
    text-align: center;
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255,255,255,.65);
}

@media (max-width: 992px) {
    .dtFooterGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .dtFooter {
        padding: 34px 0 28px;
    }

    .dtFooterGrid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dtFooterBrand {
        text-align: center;
    }

    .dtStoreBtns {
        justify-content: center;
    }

    .dtFooterCol {
        text-align: center;
    }

    .dtFooterBottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

.dtFooterLink {
    color: #fff;
    text-decoration: none;
}

    .dtFooterLink:hover {
        text-decoration: underline;
    }

.dtCompanyInfo {
    margin: 10px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    max-width: 900px;
    font-size: 11px;
    line-height: 1.6;
    color: rgba(255,255,255,.86);
}

    .dtCompanyInfo span {
        white-space: nowrap;
    }

.dtFooterBottom a {
    color: #fff;
    text-decoration: none;
}

    .dtFooterBottom a:hover {
        text-decoration: underline;
    }

@media (max-width: 640px) {
    .dtCompanyInfo {
        flex-direction: column;
        gap: 3px;
        text-align: center;
    }

        .dtCompanyInfo span {
            white-space: normal;
        }
}


.footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(18,20,27,.35), rgba(18,20,27,.75));
}

.footTop {
    padding: 26px 0;
}

.cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.col {
    border: 1px solid var(--line);
    background: rgba(20,24,36,.55);
    border-radius: var(--radius);
    padding: 16px;
}

    .col h4 {
        margin: 0 0 10px;
        font-size: 14px;
        letter-spacing: .2px;
        color: var(--text);
    }

.footBottom {
    border-top: 1px solid var(--line);
    padding: 15px;
    color: var(--muted);
    font-size: 12px;
}

.bottomRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}


.siteNotice {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255,255,255,.65);
    text-align: justify;
    line-height: 1.5;
}



@media (max-width: 980px) {
    .cols {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 991px) {
    .fullBannerInner {
        min-height: 64px;
        padding: 12px 16px;
        gap: 14px;
    }

    .bannerText1,
    .bannerText2 {
        font-size: 20px;
    }

    .badge img {
        height: 30px;
    }
}

/* mobil */
@media (max-width: 640px) {
    .fullBannerInner {
        min-height: auto;
        padding: 12px 14px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .bannerText1,
    .bannerText2 {
        font-size: 16px;
        line-height: 1.22;
    }

    .badge img {
        height: 25px;
        padding: 2px 5px;
        border-radius: 8px;
    }
}

@media (max-width: 400px) {
    .fullBannerInner {
        gap: 8px;
        padding: 10px 12px;
    }

    .bannerText1,
    .bannerText2 {
        font-size: 15px;
    }

    .badge img {
        height: 23px;
    }
}

/* =========================
   TABS
   ========================= */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #fff;
    padding: 10px 14px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

    .tab:hover {
        background: rgba(255,255,255,.06);
    }

    .tab.active {
        background: rgba(255,255,255,.92);
        color: #000;
        border-color: rgba(255,255,255,.92);
    }

/* HERO */
.hero {
    margin-top: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.72));
    padding: 18px;
}

    .hero h1 {
        margin: 0;
        font-size: 28px;
        font-weight: 900;
        letter-spacing: -.4px;
    }

    .hero p {
        margin: 8px 0 0;
        color: var(--muted);
    }

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 14px;
    border-radius: 9px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.06);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

    .btn:hover {
        background: rgba(255,255,255,.10);
    }

    .btn.primary {
        background: var(--brand);
        border-color: transparent;
        color: #111;
    }

        .btn.primary:hover {
            filter: brightness(.95);
        }

/* Dropdown */
.dd {
    position: relative;
}

    .dd > button {
        all: unset;
        cursor: pointer;
    }

.ddbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    border-radius: 10px;
    font-weight: 700;
}

    .ddbtn:hover {
        background: rgba(255,255,255,.06);
    }

.caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--muted);
    margin-top: 2px;
}

.ddmenu {
    position: absolute;
    left: 0;
    top: 48px;
    min-width: 260px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(18,20,27,.98);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.45);
    display: none;
}

.dd.open .ddmenu {
    display: block;
}

.ddmenu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
}

    .ddmenu a:hover {
        background: rgba(255,255,255,.06);
    }

.tag {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

/* Header links */
.navlinks {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
}

    .navlinks > a {
        padding: 10px 10px;
        border-radius: 10px;
        color: var(--text);
    }

        .navlinks > a:hover {
            background: rgba(255,255,255,.06);
        }

.right {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile */
.burger {
    display: none;
}

.mobilePanel {
    display: none;
    border-top: 1px solid var(--line);
    padding: 12px 0;
}

    .mobilePanel a, .mobilePanel button {
        width: 100%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 10px;
        border-radius: 12px;
        border: 0;
        background: transparent;
        color: var(--text);
        font-weight: 700;
    }

        .mobilePanel a:hover, .mobilePanel button:hover {
            background: rgba(255,255,255,.06);
        }


.breadcrumb {
    margin: 0 0 5px;
    font-size: 13px;
}

.breadcrumbList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.breadcrumbItem {
    color: #8f96a3;
}

    .breadcrumbItem + .breadcrumbItem::before {
        content: "›";
        margin: 0 8px;
        color: #6f7682;
    }

    .breadcrumbItem a {
        color: #8f96a3;
        text-decoration: none;
    }

        .breadcrumbItem a:hover {
            color: #fff;
        }

    .breadcrumbItem.active span {
        color: #fff;
        font-weight: 600;
    }

@media (max-width: 980px) {
    .navlinks {
        display: none;
    }

    .burger {
        display: inline-flex;
    }

    .mobilePanel.show {
        display: block;
    }

    .brand {
        min-width: auto;
    }
}

/* Footer links/social */
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .links a {
        font-size: 13px;
        color: var(--muted);
        padding: 8px 10px;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 999px;
        background: rgba(255,255,255,.04);
    }

        .links a:hover {
            color: var(--text);
            background: rgba(255,255,255,.08);
        }

.social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.ico {
    width: 40px;
    height: 40px;
    border-radius: 9px;
}


.heroPage {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    background: #000;
}

.heroPageMedia {
    position: absolute;
    inset: 0;
    display: block;
}

    .heroPageMedia img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }



.hero-seo {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .hero-seo img {
        width: 100%;
        height: auto;
        display: block;
    }

/* overlay */
.hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #fff;
    max-width: 600px;
}


    .hero-overlay h1 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 6px 20px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,1);
    }

    .hero-overlay p {
        font-size: 17px;
        font-weight: 600;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 4px 12px rgba(0,0,0,0.7);
    }

.hero-seo::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient( 90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.1) 100% );*/
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    z-index: 2;
}

.pageHeader {
    padding-top: 9px;
   padding-bottom: 1px;
    background-color: #3d0b747a;
    width: 100%;
}
/* mobile */
@media (max-width:768px) {

    .hero-seo::before {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgb(0 0 0 / 67%) 40%, rgb(0 0 0 / 30%) 100%);
    /*    background: linear-gradient( 90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.1) 100% );*/
    }

    .hero-overlay {
        left: 20px;
        bottom: 20px;
    }

        .hero-overlay h1 {
            font-size: 22px;
        }

        .hero-overlay p {
            font-size: 14px;
        }
}
.heroPageOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.36) 45%, rgba(0,0,0,0.86) 100% );
    z-index: 1;
}

.heroPageContent {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 300px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.heroPageTitle {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.heroPageIntro {
    margin: 10px 0 0;
    max-width: 760px;
    color: rgba(255,255,255,0.86);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 991px) {
    .heroPage,
    .heroPageContent {
        min-height: 240px;
    }

    .heroPageTitle {
        font-size: 34px;
    }

    .heroPageIntro {
        font-size: 16px;
    }
}

@media (max-width: 723px) {
    .heroPage,
    .heroPageContent {
        min-height: 140px;
    }

    .heroPageContent {
        padding: 18px 14px;
    }

    .heroPageTitle {
        font-size: 24px;
    }

    .heroPageIntro {
        margin-top: 6px;
        font-size: 14px;
        line-height: 1.35;
    }

    .heroPageMedia img {
        object-position: center;
    }
}
