﻿/* =========================
   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: 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
   ========================= */
.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: 14px 0;
    color: var(--muted);
    font-size: 12px;
}

.bottomRow {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 980px) {
    .cols {
        grid-template-columns: 1fr;
    }
}
