* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial Black", Arial, sans-serif;
}

/* ARKA PLAN */

/* MENÜ */
.nav {
    position: fixed;
    top: 40px;
    left: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 10;
}

.nav-item {
    position: relative;
    padding: 18px 34px;
    text-decoration: none;
    color: #fff;
    letter-spacing: 3px;
    border-left: 4px solid #b00000;
    background: rgba(0,0,0,0.55);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* KATMAN EFEKTİ */
.nav-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(180,0,0,0.6), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.nav-item:hover::before {
    transform: translateX(100%);
}

.nav-item:hover {
    padding-left: 46px;
    box-shadow: 0 0 15px rgba(180,0,0,0.6);
}

.nav-item.active {
    background: rgba(0,0,0,0.6); /* DİĞERLERİYLE AYNI */
    box-shadow: inset 4px 0 0 #b00000; /* SOL KIRMIZI ÇİZGİ */
}


.nav-item span {
    position: relative;
    z-index: 2;
}

/* HERO */
.hero {
    min-height: 100vh;
    padding-top: 120px;   /* LOGO İÇİN BOŞLUK */
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    text-align: center;
}


.hero h1 {
    font-size: 96px;
    letter-spacing: 10px;
    text-shadow: 0 0 30px rgba(180,0,0,0.8);
}

.hero p {
    margin-top: 10px;
    font-size: 24px;
    letter-spacing: 6px;
    color: #ddd;
}

/* MOBİL */
@media (max-width: 768px) {
    .nav {
        top: 20px;
        left: 20px;
    }

    .hero h1 {
        font-size: 56px;
    }
}
/* ANA SAYFA HERO BOX */
.hero-box {
    background: rgba(0,0,0,0.55);
    padding: 40px 60px;
    border: 1px solid rgba(180,0,0,0.4);
    box-shadow: 0 0 30px rgba(180,0,0,0.4);
    animation: fadeUp 1.2s ease forwards;
    overflow: visible;

}

.logo {
    width: 500px;          
    max-height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(180,0,0,0.9));
    margin-top: 20px;
    
}


.hero-box h1 {
    font-size: 42px;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-box p {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #ddd;
}

/* ALT FOTO */
.hero-image img {
    width: 100%;
    max-width: 500px;
    border: 2px solid rgba(180,0,0,0.6);
    box-shadow: 0 0 20px rgba(180,0,0,0.6);
    margin-top: 20px;
}

/* ANİMASYON */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ETKİNLİKLER SAYFASI */
.events-page {
    padding: 160px 80px 80px;
    color: #fff;
}

.page-title {
    text-align: center;
    font-size: 48px;
    letter-spacing: 6px;
    margin-bottom: 60px;
}

/* GRID */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

/* KART */
.event-card {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(180,0,0,0.5);
    box-shadow: 0 0 25px rgba(180,0,0,0.4);
    padding-bottom: 20px;
    transition: all 0.4s ease;
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card h2 {
    margin: 20px;
    font-size: 20px;
    letter-spacing: 2px;
}

.event-card p {
    margin: 0 20px 10px;
    font-size: 14px;
    color: #ccc;
}

.event-card a {
    margin-left: 20px;
    color: #ff4444;
    text-decoration: none;
    letter-spacing: 1px;
}

/* HOVER */
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(255,0,0,0.8);
}

/* ALT FOTO */
.events-bottom {
    margin-top: 100px;
    text-align: center;
}

.events-bottom img {
    width: 100%;
    max-width: 900px;
    border: 2px solid rgba(180,0,0,0.6);
    box-shadow: 0 0 30px rgba(180,0,0,0.6);
}

.events-bottom h2 {
    margin-top: 30px;
    letter-spacing: 4px;
}
/* HAKKINDA SAYFASI */
.about-page {
    padding: 160px 80px 100px;
    color: #fff;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 80px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 1px;
    color: #ddd;
    text-align: center;
}

/* GALERİ */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 80px;
    max-width: 1600px;
    margin: 0 auto;
}



.about-card {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(180,0,0,0.6);
    box-shadow: 0 0 45px rgba(180,0,0,0.7);
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    min-height: 360px;
}



.about-card img {
    width: 100%;
    height: 300px;          /* KAREYİ BELİRLEYEN YÜKSEKLİK */
    object-fit: contain;   /* KIRPMA YOK */
    object-position: center;
    padding: 15px;         /* FOTOĞRAF KARE İÇİNDE NEFES ALIR */
    background-color: #000;/* Boşluklar siyah (profesyonel) */
}



.about-card span {
    display: block;
    padding: 18px;
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;
    color: #eee;
    background: rgba(0,0,0,0.7);
}


/* HOVER ANİMASYON */
.about-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 0 70px rgba(180,0,0,0.9);
}


.about-card:hover img {
    transform: scale(1.08);
}
.about-text h2 {
    font-size: 28px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    margin-top: 40px;
    color: #fff;
    text-shadow: 0 0 15px rgba(180,0,0,0.8);
    position: relative;
}

.about-text h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #b00000;
    margin: 10px auto 0;
}

.about-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 1px;
    color: #ccc;
}
/* ÜRÜNLER */
.urunler-section {
    padding: 120px 60px;
    text-align: center;
}

.urunler-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 80px;
    max-width: 1600px;
    margin: 80px auto 0;
}

.urun-card {
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(180,0,0,0.6);
    box-shadow: 0 0 40px rgba(180,0,0,0.6);
    padding-bottom: 25px;
    transition: all 0.6s ease;
}

.urun-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.urun-card h3 {
    margin-top: 20px;
    font-size: 22px;
    letter-spacing: 2px;
}

.urun-card p {
    color: #ccc;
    margin: 10px 0;
}

.urun-card .telefon {
    display: inline-block;
    margin-top: 15px;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
}

/* HOVER */
.urun-card:hover {
    transform: translateY(-15px) scale(1.04);
    box-shadow: 0 0 80px rgba(255,0,0,0.9);
}
/* İLETİŞİM HATTI */
.iletisim-hatti {
    margin-top: 120px;
    text-align: center;
}

.iletisim-hatti p {
    font-size: 18px;
    letter-spacing: 3px;
    color: #ccc;
    margin-bottom: 15px;
}

.iletisim-hatti span {
    font-size: 24px;
    color: #fff;
    border: 2px solid #b00000;
    padding: 15px 35px;
    display: inline-block;
}
/* NAV MENÜ ANİMASYONU */
nav a {
    position: relative;
}

/* HOVER */
nav a:hover::after {
    width: 100%;
}

/* AKTİF SAYFA */
nav a.active::after {
    width: 100%;
}
.content {
    padding-top: 140px;   /* MENÜDEN AŞAĞI İT */
    padding-left: 120px;  /* SOL MENÜDEN UZAKLAŞ */
}
/* ÜRÜN FOTO ALT YAZISI */
.urun-yazi {
    margin-top: 15px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px rgba(180,0,0,0.8);
}
/* HAMBURGER */
.hamburger {
    display: none;
    position: fixed;
    top: 25px;
    left: 25px;
    width: 35px;
    height: 25px;
    z-index: 1001;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    margin: 6px 0;
    transition: 0.4s;
}

/* MOBİL MENÜ */
@media (max-width: 900px) {

    .hamburger {
        display: block;
    }

    nav.nav {
        position: fixed;
        top: 0;
        left: -260px;
        width: 240px;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        display: flex;
        flex-direction: column;
        padding-top: 100px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    nav.nav.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 20px;
    }
}

    /* MOBİL AÇILAN MENÜ */
    nav.nav.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .nav-item {
        margin: 15px 0;
        width: 80%;
        text-align: center;
    }

/* =========================
   ÜRÜNLER SAYFASI – MOBİL
   ========================= */
@media (max-width: 900px) {

    /* Sayfa taşmasın */
    body, html {
        width: 100%;
        overflow-x: hidden;
    }

    .content {
        width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
        height: auto !important;
        overflow: visible !important;
    }

    /* Galeri tek kolona düşsün */
    .products-gallery {
        display: flex !important;
        flex-direction: column !important;
        gap: 25px;
    }

    /* Kartlar */
    .product-card {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    /* Görseller */
    .product-card img {
        width: 100%;
        height: auto;
        max-height: 420px;
        object-fit: contain;   /* ❗ KIRPMA YOK */
        background: #000;
        display: block;
        margin: 0 auto;
    }

    /* Yazılar */
    .urun-yazi {
        margin-top: 12px;
        font-size: 16px;
        text-align: center;
    }

    /* İletişim hattı */
    .iletisim-hatti {
        margin-top: 40px;
        text-align: center;
        padding-bottom: 40px;
    }
}
/* =====================================================
   SADECE ÜRÜNLER SAYFASI – MOBİL (TEK VE TEMİZ ÇÖZÜM)
   ===================================================== */
@media (max-width: 900px) {

    /* Sadece ürünler sayfası */
    body.urunler-page {
        overflow-x: hidden;
    }

    /* Fixed arka plan korunur, scroll içerikte olur */
    body.urunler-page .content {
        padding: 140px 15px 80px; /* menü boşluğu + alt boşluk */
        height: auto;
        overflow: visible;
    }

    /* Galeri tek kolona düşer */
    body.urunler-page .about-gallery {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    /* Kart */
    body.urunler-page .about-card {
        width: 100%;
        min-height: auto;
    }

    /* Fotoğraf – kırpma yok */
    body.urunler-page .about-card img {
        width: 100%;
        height: auto;
        max-height: 420px;
        object-fit: contain;
        background: #000;
        padding: 12px;
        display: block;
        margin: 0 auto;
    }

    /* Alt yazı */
    body.urunler-page .urun-yazi {
        font-size: 16px;
        margin-top: 12px;
        text-align: center;
    }

    /* İletişim hattı – MUTLAKA GÖRÜNSÜN */
    body.urunler-page .iletisim-hatti {
        margin-top: 64px;
        padding-bottom: 80px;
        position: relative;
        z-index: 3;
        text-align: center;
    }
}
/* ===============================
   ÜRÜNLER SAYFASI MOBİL FIX
   =============================== */
@media (max-width: 900px) {

    /* ❗ SADECE URUNLER SAYFASI */
    body.urunler-page {
        overflow-y: auto !important;
    }

    body.urunler-page .background {
        position: absolute !important;
        min-height: 100% !important;
        height: auto !important;
    }

    body.urunler-page .content {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
        height: auto !important;
        overflow: visible !important;
    }

    body.urunler-page .about-gallery {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    body.urunler-page .about-card img {
        height: auto !important;
        max-height: 420px;
        object-fit: contain !important;
    }

    body.urunler-page .iletisim-hatti {
        margin-bottom: 80px;
        position: relative;
    }
}
/* ===============================
   SADECE ÜRÜNLER SAYFASI – MOBİL
   =============================== */
@media (max-width: 900px) {

    body.urunler-page h1 {
        font-size: 32px;
        line-height: 1.2;
        text-align: center;
    }

    body.urunler-page h2 {
        font-size: 22px;
        line-height: 1.3;
        text-align: center;
    }

    body.urunler-page p {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
    }
}
/* =================================
   ANA SAYFA – MOBİL HERO FIX
   ================================= */
@media (max-width: 900px) {

    body.home-page .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    body.home-page .hero-box {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        box-sizing: border-box;
    }

    body.home-page .logo {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 0 auto 15px;
        display: block;
    }

    body.home-page .hero-box h1 {
        font-size: 26px;
        letter-spacing: 2px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    body.home-page .hero-box p {
        font-size: 14px;
        letter-spacing: 1px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    body.home-page .hero-image img {
        max-width: 100%;
        height: auto;
    }
}
/* =================================
   ETKİNLİKLER – MOBİL BAŞLIK FIX
   ================================= */
@media (max-width: 900px) {

    body.events-page-mobile .page-title {
        font-size: 26px;
        letter-spacing: 2px;
        line-height: 1.3;
        padding: 0 10px;
        text-align: center;
        white-space: normal;        /* satıra böl */
        word-break: break-word;     /* taşmayı engelle */
    }

}
/* =================================
   HAKKINDA – MOBİL FIX
   ================================= */
@media (max-width: 900px) {

    /* SAYFA GENEL */
    body.about-page-mobile {
        overflow-x: hidden;
    }

    /* BAŞLIK */
    body.about-page-mobile .page-title,
    body.about-page-mobile h1,
    body.about-page-mobile h2 {
        font-size: 26px;
        letter-spacing: 2px;
        line-height: 1.3;
        padding: 0 12px;
        text-align: center;
        white-space: normal;
        word-break: break-word;
    }

    /* METİN */
    body.about-page-mobile .about-text {
        padding: 0 15px;
        font-size: 15px;
        line-height: 1.7;
    }

    /* GALERİ TEK KOLON */
    body.about-page-mobile .about-gallery {
        display: flex;
        flex-direction: column;
        gap: 35px;
        padding: 0 15px;
    }

    /* KART */
    body.about-page-mobile .about-card {
        width: 100%;
        min-height: auto;
    }

    /* FOTOĞRAF – KIRPMA YOK */
    body.about-page-mobile .about-card img {
    width: 100%;
    height: auto;
    object-fit: contain;   /* KIRPMA YOK */
    padding: 0;            /* TAM DOLDURSUN */
    background: #000;
}


    /* ALT NOT */
    body.about-page-mobile .about-card span {
        font-size: 14px;
        letter-spacing: 1px;
        padding: 14px;
    }
}
/* =================================
   HAKKINDA – MOBİL FOTOĞRAF TAM GENİŞLİK
   ================================= */
@media (max-width: 900px) {

    /* Grid'i tamamen kapat */
    body.about-page-mobile .about-gallery {
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Kart TAM GENİŞLİK */
    body.about-page-mobile .about-card {
    width: 116%;
    max-width: 116%;
    margin: 0 auto;
    box-sizing: border-box;
}



    /* Fotoğraf GERÇEKTEN BÜYÜSÜN */
    body.about-page-mobile .about-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0;
    display: block;
}
}
/* =================================
   ÜRÜNLER – MOBİL ARKA PLAN FIX
   ================================= */
@media (max-width: 900px) {

    body.urunler-page .background {
        position: absolute !important; /* fixed KAPAT */
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100%;              /* sayfa kadar uzasın */
        height: auto !important;
    }

    body.urunler-page {
        background: transparent;       /* beyazı engelle */
    }
}
/* =================================
   ÜRÜNLER SAYFASI – MOBİL ARKA PLAN SABİTLEME
   (DİĞER SAYFALAR GİBİ DAVRANSIN)
   ================================= */
@media (max-width: 900px) {

    body.urunler-page .background {
        position: fixed;        /* DİĞER SAYFALARLA AYNI */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;          /* ekran boyu */
        background-attachment: fixed;
    }

    body.urunler-page {
        background-color: #000; /* OLASI BEYAZI MASKELER */
    }
}
/* ===============================
   PROFESYONEL WHATSAPP BUTONU
   =============================== */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 30px;
    padding: 18px 42px;

    font-size: 17px;
    font-weight: bold;
    letter-spacing: 2px;

    color: #ffffff;
    text-decoration: none;

    background: linear-gradient(
        135deg,
        #1ebd5a,
        #25D366
    );

    border-radius: 50px;
    border: none;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.45),
        inset 0 0 0 2px rgba(255,255,255,0.15);

    transition: all 0.35s ease;
}

/* PC Hover */
.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow:
        0 15px 35px rgba(37, 211, 102, 0.7),
        inset 0 0 0 2px rgba(0,0,0,0.2);
    color: #000;
}

/* Mobil tıklama hissi */
.whatsapp-btn:active {
    transform: scale(0.97);
}
/* ===============================
   WHATSAPP ÜST BAŞLIK VURGUSU
   =============================== */
.iletisim-baslik {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #ffffff;
    text-shadow:
        0 0 10px rgba(180, 0, 0, 0.6),
        0 0 25px rgba(180, 0, 0, 0.4);

    margin-bottom: 18px;
    position: relative;
}

/* ALT ÇİZGİ – GÜÇLÜ VURGU */
.iletisim-baslik::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 14px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        #b00000,
        transparent
    );
}
/* ===============================
   INSTAGRAM ALANI – PROFESYONEL VURGU
   =============================== */
.instagram-alan {
    margin-top: 100px;
    text-align: center;
}

/* ÜST YAZI (BAŞLIK) */
.instagram-baslik {
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;

    text-shadow:
        0 0 10px rgba(180, 0, 0, 0.6),
        0 0 25px rgba(180, 0, 0, 0.4);

    margin-bottom: 22px;
    position: relative;
}

/* ALT ÇİZGİ */
.instagram-baslik::after {
    content: "";
    display: block;
    width: 90px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(
        90deg,
        transparent,
        #b00000,
        transparent
    );
}

/* INSTAGRAM LINK */
.instagram-link {
    display: inline-block;
    padding: 16px 44px;

    font-size: 18px;
    letter-spacing: 2px;
    font-weight: bold;

    color: #ffffff;
    text-decoration: none;

    border-radius: 50px;
    border: 2px solid #e1306c;

    background: rgba(0, 0, 0, 0.6);

    box-shadow:
        0 0 25px rgba(225, 48, 108, 0.5),
        inset 0 0 0 2px rgba(255,255,255,0.12);

    transition: all 0.35s ease;
}

/* PC HOVER */
.instagram-link:hover {
    background: #e1306c;
    color: #000;
    box-shadow: 0 0 35px rgba(225, 48, 108, 0.9);
    transform: translateY(-4px) scale(1.05);
}

/* MOBİL TIKLAMA HİSSİ */
.instagram-link:active {
    transform: scale(0.96);
}
/* ===============================
   INSTAGRAM BUTONU – MOBİL ORTALAMA FIX
   =============================== */
@media (max-width: 900px) {

    .instagram-alan {
        display: flex;
        flex-direction: column;
        align-items: center;   /* TAM ORTA */
        text-align: center;
    }

    .instagram-link {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =================================
   ÜRÜNLER SAYFASI – PC SCROLL KİLİDİ AÇ
   ================================= */
@media (min-width: 901px) {

    body.urunler-page .background {
        position: absolute !important;
        inset: 0;
        min-height: 100%;
        height: auto;
    }

    body.urunler-page {
        overflow-y: auto !important;
    }

    body.urunler-page .content {
        position: relative;
        z-index: 1;
        height: auto !important;
        overflow: visible !important;
        padding-bottom: 180px;
    }
}
/* =================================
   ÜRÜNLER SAYFASI – PC ARKAPLAN TAM UZASIN
   ================================= */
@media (min-width: 901px) {

    body.urunler-page {
        background: none;              /* beyazı iptal et */
    }

    body.urunler-page .background {
        position: absolute;            /* body ile birlikte uzasın */
        top: 0;
        left: 0;
        width: 100%;
        min-height: 100%;
        height: 100%;
    }

    body.urunler-page::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at top, rgba(180,0,0,0.3), rgba(0,0,0,0.85)),
            url("images/bg.webp") center / cover no-repeat;
        z-index: -3;
    }
}
/* ===============================
   TÜM SAYFALAR ÜST LOGO
   =============================== */
.page-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 40px;
    z-index: 2;
}

.page-logo img {
    width: 420px;
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(180,0,0,0.9));
}
@media (max-width: 900px) {

    .page-logo {
        margin-top: 80px;   /* hamburger + nefes */
        margin-bottom: 30px;
    }

    .page-logo img {
        width: 300px;
    }
}
/* === ÜRÜNLER SAYFASI PC ARKAPLAN KESİLME KESİN ÇÖZÜM === */
body.urunler-page {
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    background:
        radial-gradient(circle at top, rgba(180,0,0,0.3), rgba(0,0,0,0.85)),
        url("images/bg.webp") center / cover no-repeat;
}

/* =================================
   MOBİL – ARKA PLAN ZOOM KESİN FIX
   ================================= */
@media (max-width: 900px) {
    body {
        background-size: 100% auto !important;
        background-position: top center !important;
    }
}
/* =================================
   GLOBAL SABİT ARKA PLAN KATMANI
   ================================= */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at top, rgba(180,0,0,0.3), rgba(0,0,0,0.85)),
        url("images/bg.webp") center / cover no-repeat;
        
}

/* MOBİLDE ZOOM ENGELLE */
@media (max-width: 900px) {
    .site-bg {
        background-size: cover;
        background-position: center top;
    }
}
.lcp-image {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at top, rgba(180,0,0,0.3), rgba(0,0,0,0.85)),
        url("images/bg.webp") center / cover no-repeat;
    pointer-events: none;    
    
}

.instagram-alan {
    margin-top: 80px;
    text-align: center;
}

.instagram-baslik {
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 15px;
}

.instagram-link {
    display: inline-block;
    font-size: 18px;
    color: #e1306c;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid #e1306c;
    padding-bottom: 15px;
    transition: opacity 0.3s ease;
}

.instagram-link:hover {
    opacity: 0.75;
}
.services {
    display: none;
}
.site-footer {
    text-align: center;
    font-size: 20px;
    color: #beb9b9;
    opacity: 0.6;
    margin: 20px 0;
    user-select: none;
}
































