:root {
    --primary-color: #ff5e00; /* İştah açıcı turuncu */
    --bg-dark: #121212;
    --bg-card: #1e1e1e;
    --text-light: #f4f4f4;
    --text-gray: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* --- NAVİGASYON --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: 0.3s;
}

/* Yuvarlak Logo Tasarımı */
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    width: 80px; /* 50px'den 80px'e çıkardık (Kocaman oldu) */
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color); /* Çerçeveyi de kalınlaştırdık */
    transition: transform 0.3s;
}

.logo-img:hover {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 0 15px rgba(255, 94, 0, 0.5);
}

.logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem; /* 1.5rem'den 2.2rem'e çıkardık (Yazı devleşti) */
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

/* Linkler ve Butonlar */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center; /* Dikeyde ortala */
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Navbar Instagram Butonu */
.btn-insta-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px; 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.3s;
    box-shadow: 0 0 10px rgba(220, 39, 67, 0.4);
    border: 2px solid transparent;
}

.btn-insta-nav:hover {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.8);
    border-color: white;
}

/* Rezervasyon Butonu */
.btn-res {
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    color: white !important;
}

/* --- HERO BÖLÜMÜ (GİRİŞ) --- */
.hero {
    justify-content: space-between;
    min-height: 160vh;
    display: flex;
    align-items: flex-start;
    padding-top: 150px;
    padding-left: 5%;
    padding-right: 5%;
    
    background: linear-gradient(to right, rgba(18, 18, 18, 0.95) 30%, rgba(18, 18, 18, 0.4) 100%),
                url('dukkan.jpg');
    background-size: cover;
    background-position: top center;
    background-attachment: scroll;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
}

.hero-content p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s;
}

.btn-secondary {
    padding: 15px 30px;
    border: 2px solid var(--text-light);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 94, 0, 0.3);
}

/* Toptan Satış Kutusu */
.toptan-box {
    background: rgba(255, 94, 0, 0.1);
    border-left: 6px solid var(--primary-color);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 500px;
    animation: slideIn 1s ease-out;
}

.badge-toptan {
    background: var(--primary-color);
    color: #000;
    font-weight: 900;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.toptan-text {
    color: #fff;
    font-size: 1.4rem;
    margin: 15px 0 20px 0;
    line-height: 1.4;
    font-weight: 500;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.6rem;
}

.btn-toptan {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-toptan:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 94, 0, 0.6);
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --- MENÜ BÖLÜMÜ --- */
.menu-section {
    padding: 80px 5%;
}

.menu-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

.card {
    background: var(--bg-card);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-img-real {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
    background-color: var(--bg-card);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    display: inline-block;
    margin-top: 15px;
    padding: 5px 15px;
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 5px;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
    cursor: pointer;
}

/* --- HİKAYEMİZ BÖLÜMÜ --- */
.story-section {
    padding: 100px 5%;
    background-color: #1a1a1a;
    text-align: center;
    position: relative;
}

.story-section::before {
    content: '"';
    font-family: 'Oswald', sans-serif;
    font-size: 20rem;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 94, 0, 0.05);
    z-index: 0;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.story-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
}

.story-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-intro {
    font-size: 1.3rem !important;
    color: white !important;
    font-weight: 500;
}

.story-conclusion {
    color: var(--primary-color) !important;
    font-weight: bold;
    font-size: 1.2rem !important;
    margin-top: 30px;
}

.story-signature-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-top: 30px;
    opacity: 0.8;
}

/* --- MOBİL UYUMLULUK VE DÜZELTMELER --- */

/* Tablet Ayarı */
@media (max-width: 1100px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Telefon Ayarı (GENEL) */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px; 
        height: auto;
    }
/* MOBİLDE LOGO ESKİ KİBAR HALİNE DÖNSÜN */
    .logo-img {
        width: 55px; /* Mobilde ideal boy */
        height: 55px;
    }

    .logo-text {
        font-size: 1.6rem; /* Mobilde ideal yazı boyutu */
    }
    .hero-content {
        margin-bottom: 50px;
    }

    .buttons {
        justify-content: center;
    }

    .toptan-box {
        margin: 0 auto 30px auto;
        border-left: none;
        border-top: 6px solid var(--primary-color);
        border-radius: 15px;
        text-align: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ÖZEL MOBİL MENÜ DÜZENLEMESİ (İstediğin Kısım) --- */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Alt alta diz */
        padding: 15px 5%;
        height: auto;
    }

    .logo-link {
        margin-bottom: 20px; /* Logo ile menü arasına boşluk */
    }

    .nav-links {
        width: 100%;
        justify-content: center; /* Linkleri ortala */
        flex-wrap: wrap; /* Sığmazsa aşağı kaysın */
        gap: 15px;
    }

    /* Mobilde linkler biraz küçülsün */
    .nav-links a {
        font-size: 0.9rem;
    }

    .btn-res {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
/* --- SİPARİŞ BUTONLARI (GERİ GELDİ) --- */
.order-section {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(to bottom, #1a1a1a, #121212);
    border-top: 1px solid #333;
}

.order-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.order-subtext {
    color: #b0b0b0;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.order-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Genel Buton Ayarı */
.app-btn {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center; /* Ortala */
    gap: 10px;
    transition: 0.3s;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.app-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

/* MARKA RENKLERİ */
.btn-yemeksepeti { background-color: #ea004b; border: 2px solid #ea004b; }
.btn-trendyol { background-color: #f27a1a; border: 2px solid #f27a1a; }
.btn-getir { background-color: #5d3eb2; border: 2px solid #5d3eb2; color: #ffd300; }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* Mobilde Butonlar Tam Genişlik Olsun */
@media (max-width: 768px) {
    .app-btn {
        width: 100%;
        max-width: 350px;
    }
}
/* --- SAĞ TARAFTAKİ SİPARİŞ KUTUSU --- */
.hero-ordering {
    background: rgba(0, 0, 0, 0.75); /* Arkası koyu şeffaf */
    backdrop-filter: blur(10px); /* Buzlu cam etkisi */
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 94, 0, 0.3); /* İnce turuncu çerçeve */
    text-align: center;
    min-width: 320px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    animation: slideInRight 1s ease-out;
    margin-top: 20px;
}

.hero-ordering h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.hero-ordering p {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.order-buttons-hero {
    display: flex;
    flex-direction: column; /* Alt alta diz */
    gap: 12px; /* Butonlar arası boşluk */
}

/* Butonların Ortak Özelliği */
.hero-btn {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Yazıları sola hizala */
    padding-left: 30px; /* İkonlar hizalı dursun */
    gap: 15px;
    transition: 0.3s;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* MARKA RENKLERİ */
.btn-yemeksepeti { background-color: #ea004b; border: 1px solid #ea004b; }
.btn-trendyol { background-color: #f27a1a; border: 1px solid #f27a1a; }
.btn-getir { background-color: #5d3eb2; border: 1px solid #5d3eb2; color: #ffd300; }
.btn-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

/* Animasyon */
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* MOBİL AYARI */
@media (max-width: 968px) {
    .hero-ordering {
        margin-top: 40px;
        width: 100%; /* Telefondaysa tam genişlik */
    }
}
/* --- SAĞ ÜST KARE VİDEO KUTUSU --- */
.hero-video-box {
    width: 350px;  /* KARE GENİŞLİK (İstediğin boyuta göre değiştir) */
    height: 350px; /* KARE YÜKSEKLİK (Genişlikle aynı yap) */
    border-radius: 25px; /* Köşeleri yuvarla */
    overflow: hidden; /* Videonun taşan kısımlarını kes */
    border: 3px solid var(--primary-color); /* Kalın turuncu çerçeve */
    box-shadow: 0 15px 40px rgba(255, 94, 0, 0.4); /* Güçlü turuncu gölge */
    position: relative; /* İçindeki yazıyı konumlandırmak için */
    margin-top: 50px; /* Yazılarla aynı hizaya gelmesi için biraz aşağı al */
    animation: fadeInRight 1s ease-out; /* Sağdan gelme efekti */
}

.hero-video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videoyu kare kutunun içine tam oturt, ASLA yamultma */
    filter: brightness(0.9); /* Çok hafif karart ki yazı okunsun */
}



/* Sağdan gelme animasyonu */
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* MOBİL AYARI (Telefonlarda nasıl görünsün?) */
@media (max-width: 968px) {
    .hero-video-box {
        margin-top: 40px; /* Mobilde yazının altına iner */
        width: 280px; /* Mobilde biraz daha küçük kare olsun */
        height: 280px;
    }
}
/* --- SİLİNEN VİDEO EFEKTİ (GERİ GELDİ) --- */
.hero-video-box {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; /* Zıplama efekti için özel ayar */
}

.hero-video-box:hover {
    transform: translateY(-10px) scale(1.03); /* Yukarı zıpla ve hafifçe büyü */
    box-shadow: 0 20px 50px rgba(255, 94, 0, 0.5); /* Gölgeyi güçlendir ve parlat */
    border-color: #fff; /* Çerçeve beyaz olsun dikkat çeksin */
    cursor: pointer;
}

/* Videonun üzerine gelince ortadaki "Lezzet Show" yazısı da hareketlensin */
.hero-video-box:hover .video-overlay-hero {
    background: var(--primary-color); /* Arka plan turuncu olsun */
    color: white; /* Yazı beyaz olsun */
    border-color: white;
    transform: translateX(-50%) scale(1.1); /* Yazı biraz büyüsün */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
/* --- MOBİL VE TABLET DÜZELTMESİ --- */
@media (max-width: 968px) {
    /* Menü uzadığı için içeriği daha çok aşağı itiyoruz */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 250px; /* BURAYI ARTTIRDIK (Eskiden 150px idi) */
        height: auto;
    }

    .hero-right {
        width: 100%;
        margin-top: 40px;
    }
    
    .hero-ordering, .hero-video-box {
        width: 100%; 
        max-width: 350px;
        margin: 0 auto; /* Kutuları ortala */
    }
    
    .hero-video-box {
        height: 300px;
    }

    .toptan-box {
        margin: 0 auto 30px auto;
        border-left: none;
        border-top: 6px solid var(--primary-color);
        border-radius: 15px;
        text-align: center;
    }
}
/* --- LOGO YAZISI DÜZELTMESİ --- */
.logo-text .highlight-text {
    font-size: inherit !important; /* Yanındaki Şırdancı yazısı kaçsa bu da o olsun */
    font-weight: 800; /* Biraz daha kalın dursun */
    line-height: 1; /* Satır yüksekliğini hizala */
}