﻿@import url('font/proxima-nova.css');

/* Menünün bulunduğu ana etiket veya sınıf */
header, .site-header, .navbar {
    position: fixed;
    z-index: 9999 !important;
}

* {
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.kf-numbers {
    background: #1f49c6;
    overflow: hidden;
    padding: 40px 0;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

    .marquee-track img {
        height: 110px;
        width: auto;
        margin: 0 30px;
        flex-shrink: 0;
    }

/* ANİMASYON */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.responsive-sticker {
    width: 100%;
    height: 220px; /* Görselin yüksekliğine göre ayarlayın */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color:#f4f4f4;
    /* Varsayılan olarak Mobil Görsel (Mobile First yaklaşımı) */
    background-image: url('sticker-mobil.png');
}

/* Desktop için geçiş noktası (genellikle 768px veya 1024px) */
@media (min-width: 1024px) {
    .responsive-sticker {
        background-color: #f4f4f4;
        background-image: url('sticker.png');
        height: 500px; /* Masaüstünde daha yüksek bir alan isteyebilirsiniz */
    }
}

.parallax-window {
    position: relative;
    height: 240px;
    width: 100%;
    overflow: hidden;
    background-color: #1b49cb;
}

.parallax-bg {
    position: absolute;
    top: -250px; 
    left: 0;
    width: 100%;
    height: calc(100% + 500px); 
    object-fit: cover; 
    will-change: transform;
}
@media (max-width: 1024px) {
    .parallax-window {
        height: 200px;
    }

    .parallax-bg {
        top: -150px;
        height: calc(100% + 300px);
    }
}

@media (max-width: 768px) {
    .parallax-window {
        height: 180px;
    }

    .parallax-bg {
        top: -120px;
        height: calc(100% + 240px);
    }
}










.section.kf-about {
    background-color: #f4f4f4;
}

    .section.kf-about .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section.kf-about .col-lg-5 {
        width: 100%;
        max-width: 800px;
        text-align: center;
    }

    .section.kf-about .col-lg-7 {
        width: 100%;
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

.kf-about-image img {
    max-width: 70%;
    height: auto;
    display: block;
}

.mt-40 {
    margin-top: 40px;
}

/* Ana kapsayıcı */
.banner-hero {
    background-color: #f4f4f4;
    min-height: auto;
    padding-top: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 0;
}

@font-face {
    font-family: 'Mairo';
    src: url('/assets/font/mairo/mairo/mairo.woff') format('woff'), url('/assets/font/mairo/mairo/mairo.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

.banner-title {
    font-family: 'Mairo', sans-serif !important; /* MAIRO KORUNDU */
    font-size: clamp(48px, 7vw, 85px);
    font-weight: 800;
    line-height: 0.95;
    color: #2f63d6;
    text-transform: uppercase;
    margin: 0;
}

.banner-text {
    order: 1;
}

.banner-desc {
    order: 2;
}

    .banner-desc p {
        font-family: 'proxima-nova-extra-wide', sans-serif;
        font-weight: 400; /* YAZI: 400 */
        font-style: normal;
        font-size: 13px;
        line-height: 1.9;
        letter-spacing: 1px;
        text-transform: uppercase;
        max-width: 550px;
        color: #111;
        margin: 0 auto;
    }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .banner-content {
        gap: 20px;
    }

    .banner-title {
        font-size: 42px;
    }
}

:root {
    --accent: #1e40ff;
    --danger: #e63926;
    --slideW: 320px;
    --gap: 34px;
    --sideScale: 0.82;
    --centerScale: 1;
}

.title {
    font-family: 'proxima-nova-extra-wide', sans-serif;
    font-weight: 700; /* BAŞLIK: 700 */
    text-align: center;
    margin: 30px 0;
    color: var(--accent);
    font-size: clamp(22px, 4vw, 44px);
}

/* Swiper */
.swiper {
    width: 100%;
    padding: 60px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
}

.slide-content {
    text-align: center;
    transform: scale(0.8);
    opacity: 0.4;
    transition: all 0.5s ease-in-out;
    width: 100%;
}

.swiper-slide-active .slide-content {
    transform: scale(1.1);
    opacity: 1;
}

.img-wrap img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.meta {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .meta h3 {
        font-family: 'proxima-nova-extra-wide', sans-serif;
        font-weight: 700; /* BAŞLIK: 700 */
        font-size: 22px;
        text-transform: uppercase;
        margin: 0;
        line-height: 1.2;
        color: #000;
    }

.ingredients {
    margin: 5px 0;
}

    .ingredients .label {
        font-family: 'proxima-nova-extra-wide', sans-serif;
        font-weight: 700; /* BAŞLIK POTANSİYELİ: 700 */
        color: #333;
        font-size: 12px;
        display: block;
        margin-bottom: 2px;
    }

    .ingredients p {
        font-family: 'proxima-nova-extra-wide', sans-serif;
        font-weight: 400; /* YAZI: 400 */
        margin: 0;
        font-size: 13px;
        color: #777;
        line-height: 1.4;
    }

.priceRow {
    font-family: 'proxima-nova-extra-wide', sans-serif;
    font-weight: 700; /* VURGULU BAŞLIK: 700 */
    font-size: 18px;
    margin-top: 5px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

    .priceRow .price {
        color: #191919;
    }

.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-modern {
    padding: 20px 5%;
    background-color: #f4f4f4;
    color: #111;
    overflow: hidden;
    position: relative;
    min-height: 50vh;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: stretch;
    background-color: transparent;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* BURASI DEĞİŞTİ: center -> flex-start */
    z-index: 10;
    /* İnce ayar: Eğer resimlerden çok yukarıda kalırsa, 
       göz kararı hizalamak için aşağıdaki gibi biraz üst boşluk verebilirsiniz */
    padding-top: 10px;
}

.about-title {
    font-family: 'Mairo', sans-serif !important; /* MAIRO KORUNDU */
    font-size: clamp(48px, 7vw, 85px);
    font-weight: 800;
    line-height: 0.95;
    color: #2f63d6;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.title about-title {
    margin-bottom: -10px;
}
/* Genel kapsayıcı ayarı */
.about-description {
    max-width: 650px; /* Okuma kolaylığı için satır genişliğini sınırla */
}

    .about-description p {
        font-family: 'proxima-nova-extra-wide', sans-serif;
        font-weight: 400;
        font-size: 1.05rem;
        line-height: 1.8; /* Satır aralığını biraz daha açtık */
        color: #444;
        margin-bottom: 25px; /* Paragraf araları */
    }

        /* İlk paragrafı vurgula */
        .about-description p.highlight {
            font-size: 1.2rem;
            color: #111;
            border-left: 4px solid #d81e1e; /* Siyah yerine Das kırmızısı daha şık durur */
            padding-left: 20px;
            line-height: 1.6;
        }

        /* Son vurucu cümle için stil */
        .about-description p.quote {
            font-style: italic;
            color: #1b49cb; /* Mavi aksanımızla bağlayalım */
            font-size: 1.1rem;
            margin-top: 30px;
            border: none;
            padding-left: 0;
        }

    /* İsimleri ve tarihleri belirginleştir */
    .about-description strong {
        color: #000;
        font-weight: 700;
    }
/* Önce mobil versiyonu gizleyelim */
.desc-mobile {
    display: none;
}

/* Mobil ekranlarda (576px altı) durumu tersine çevirelim */
@media (max-width: 768px) {
    .desc-desktop {
        display: none; /* Masaüstü metnini gizle */
    }

    .desc-mobile {
        display: block; /* Mobil metnini göster */
    }
}
.about-right-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
    padding-bottom: 20px;
}

.about-image-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: flex-start;
    padding: 0 20px;
    position: relative;
    background: transparent;
}

.chef-card {
    flex: 1;
    max-width: 350px;
    padding: 4px;
    display: flex;
    flex-direction: column;
}

.chef-pixel-frame {
    background-color: #f4f4f4;
}

.main-img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.chef-name-tag {
    font-family: 'proxima-nova-extra-wide', sans-serif;
    font-weight: 700; /* BAŞLIK POTANSİYELİ: 700 */
    background-color: #fff;
    color: #000;
    text-align: center;
    padding: 12px 5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-top: 4px solid #000;
}

.sticker-wrapper {
    position: relative;
    margin: 20px;
    background: transparent;
}

.drag-hint-container {
    position: absolute;
    top: -45px;
    left: 10px;
    animation: hintFloat 2s infinite ease-in-out;
    z-index: 5;
}

.hint-text {
    font-family: 'proxima-nova-extra-wide', sans-serif;
    font-weight: 700; /* VURGULU YAZI: 700 */
    background: #4169e1;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
}

.hint-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #4169e1;
    margin-left: 20px;
}

@keyframes hintFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.sticker-container {
    padding: 15px;
    background-color: #f4f4f4;
    border: 2px dashed #4169e1;
    border-radius: 12px;
}

.sticker-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; /* Görseller farklı boyuttaysa hizalamayı düzeltir */
}

.draggable-icon {
    /* 1. Görselin orijinal piksel boyutlarını zorlar */
    width: auto !important;
    height: auto !important;
    /* 2. Dış kısıtlamaları (framework'lerden gelen) kaldırır */
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    /* 3. Ölçeklendirmeyi kapatır, görsel neyse onu basar */
    object-fit: none;
    /* 4. Flexbox içinde sıkışmayı (küçülmeyi) engeller */
    flex-shrink: 0 !important;
    /* 5. Etkileşim Ayarları */
    cursor: grab;
    touch-action: none;
    z-index: 100;
}

    .draggable-icon:active {
        cursor: grabbing;
    }

/* --- Mobil Uyumluluk --- */
@media (max-width: 768px) {
    .draggable-icon {
        /* Mobilde görselin orijinal boyutunun %50'si gibi bir ölçek 
           kullanmak istersen transform kullanabilirsin. 
           Ama farklı dosya kullanıyorsan width: auto kalmalı. */
        width: auto !important;
        height: auto !important;
    }
}

    .draggable-icon:active {
        cursor: grabbing;
    }

/* Ayrı bir blok olarak tanımlanmalı */
.about-btn {
    font-family: 'proxima-nova-extra-wide', sans-serif;
    font-weight: 700;
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}
