/* Satirdan special CSS */
:root {
    --primary-color: #b91d1d; /* Koyu Kırmızı - İştah açıcı */
    --secondary-color: #1f2937; /* Koyu Gri - Modern Kurumsal */
    --accent-color: #f59e0b; /* Altın Sarısı - Premium his */
    --light-bg: #f9fafb;
    --text-color: #374151;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
}

.bg-brand-red { background-color: #D32F2F; } /* Logo kırmızısı örneği */
.text-brand-red { color: #D32F2F; }
.frozen-gradient { background: linear-gradient(135deg, #e0f2f1 0%, #ffffff 100%); }

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-order {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.btn-order:hover {
    transform: translateY(-2px);
    background-color: #991b1b;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1626844131082-256783844137?q=80&w=1935&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    /*margin-top: 80px;*/
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero-badge {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #e5e7eb;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #991b1b;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* --- New Service Section (Frozen) --- */
.frozen-service {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header .line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.frozen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.frozen-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.frozen-features {
    list-style: none;
    margin-top: 20px;
}

.frozen-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.frozen-features i {
    color: var(--accent-color);
}

.frozen-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Menü Tab Stilleri */
.tab-content { display: none; }
.tab-content.active { display: grid; animation: fadeInUp 0.5s ease forwards; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cat-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Oswald', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
    background: transparent;
    color: #4b5563;
    font-weight: 600;
}

.cat-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(185, 29, 29, 0.3);
}

/* Zenginleştirilmiş Ürün Kartı */
.menu-item {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.menu-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.menu-img {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    object-fit: cover;
    background: #f9f9f9;
}

/* --- About Stats --- */
.stats {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

/* --- Contact / Footer --- */
footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li i {
    width: 25px;
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    font-size: 0.9rem;
}

/* --- Slider Styles (Güncellenmiş Boyut) --- */
.hero {
    position: relative;
    height: 80vh; /* Yükseklik yaklaşık 1/3 oranında düşürüldü */
    min-height: 450px; /* İçeriğin kaybolmaması için minimum yükseklik */
    /*margin-top: 80px; /* Header yüksekliği kadar boşluk */
    overflow: hidden;
    margin-top: 0 !important; /* Mesaj alanı gelince çakışmaması için */
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

/* Hero içerik yerleşimi */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 20;
}

/* Görselin üzerine karanlık katman ekleyen kısım */
.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    /* %50 oranında siyahlık verir, istersen 0.5 rakamını değiştirerek koyuluğu ayarlayabilirsin */
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

/* İçeriğin karanlık katmanın üstünde kalması için */
.slide .container {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 2.8rem; /* Boyut daraldığı için fontu biraz küçülttük */
    margin-bottom: 15px;
}
.social-section { padding: 80px 0; background: #fff; }
.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    justify-items: center;
}
/* Embed kutularının boyutunu sabitlemek için */
.insta-item {
    width: 100%;
    max-width: 320px;
    min-height: 450px;
    border: 1px solid #efefef;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafa;
}
/* Mesaj Section Ayarı */
.message-banner {
    background: linear-gradient(135deg, #b91d1d 0%, #831010 100%);
    color: white;
    width: 100%;
    padding: 15px 0;
    margin-top: 80px; /* HEADER YÜKSEKLİĞİ KADAR BOŞLUK (Header fixed ise şart) */
    position: relative;
    z-index: 99;
    border-bottom: 3px solid var(--accent-color);
}

.message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.message-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0 40px;
}

/* Slider'ın (Hero) Mesaj Alanından Sonra Başlaması İçin */
.hero {
    margin-top: 0 !important; /* Slider'da margin-top varsa sıfırlıyoruz */
}

.close-btn {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

/* --- Hamburger Menü Stilleri --- */
.hamburger {
    display: none; /* Masaüstünde gizli */
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
    z-index: 1001;
}

/* --- Nasıl Hazırlanır Bölümü Stilleri --- */
.preparation-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    border-top: 1px solid #e5e7eb;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.prep-step {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.prep-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.step-icon {
    width: 90px;
    height: 90px;
    line-height: 90px; /* Dikey hizalama için */
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 2.8rem;
    margin: 0 auto 25px;
    display: flex; /* İkonu ortalamak için */
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border: 3px solid var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.prep-step h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.prep-step p {
    color: #6b7280;
    font-size: 1rem;
}

/* Ok işareti - Sadece masaüstünde */
.prep-step:not(:last-child)::after {
    content: "\f061"; /* FontAwesome arrow-right icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: -50px; /* Adımlar arasına yerleştir */
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.6;
    z-index: 1;
    display: none; /* Varsayılan olarak gizli */
}

/* Slider Alanı Stilleri */
.influencer-slider-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.video-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px;
    scrollbar-width: none; /* Firefox */
}

.video-track::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.video-card {
    min-width: 320px;
    max-width: 320px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    padding-bottom: 177.77%; 
    /* 177.77% 9:16 Shorts oranı (Eğer Reels/Shorts tarzıysa) */
    /* Eğer standart 16:9 video ise: padding-bottom: 56.25% yapın */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.nav-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* Restoran Kartı Özel Stilleri */
#locations .group {
    /* Kartın genel geçiş yumuşaklığı */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#locations iframe {
    filter: grayscale(0.2) contrast(1.1); /* Haritayı site tasarımına uydurmak için hafif efekt */
    transition: all 0.5s ease;
}

#locations .group:hover iframe {
    filter: grayscale(0); /* Üzerine gelince harita canlansın */
}

/* Sipariş Platformları Bandı */
.order-platforms-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    z-index: 998;
    position: relative;
    top:80px;
}

.platform-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1;
}

.platform-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.platform-item img {
    height: 24px; /* Logoların yüksekliği */
    width: auto;
    /*filter: grayscale(100%);*/
    transition: 0.3s;
}

.platform-item:hover img {
    filter: grayscale(0%);
}

.platform-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsive */
@media (max-width: 1279px) { /* Tablet ve Mobil için */
    .hamburger {
        display: block; /* Mobilde görünür */
    }

    .nav-links {
        position: fixed;
        right: -100%; /* Başlangıçta ekranın dışında */
        top: 80px;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column; /* Linkleri alt alta diz */
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 40px !important;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0; /* Menü açıldığında ekrana gelir */
    }

    .nav-links.active::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(4px); /* Arkayı hafif buzlu yapar */
        z-index: -1;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) { /* Sadece geniş ekranlarda okları göster */
    .prep-step:not(:last-child)::after {
        display: block;
    }
    .preparation-grid {
        position: relative;
    }
    #locations iframe {
        height: 200px;
    }
    .nav-links.active {
        right: 0 !important;
    }
    
    /* Menü linklerine hafif bir giriş animasyonu */
    .nav-links.active li {
        animation: fadeInRight 0.5s ease forwards;
        opacity: 0;
    }
    
    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
    .nav-links li:nth-child(4) { animation-delay: 0.4s; }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh; /* Mobilde biraz daha daraltılabilir */
        min-height: 400px;
    }
    .hero h1 {
        font-size: 2rem;
    }

    .logo { font-size: 1.2rem; }
    .logo img { width: 150px; }
    .message-text { font-size: 0.9rem; }
    .message-banner { margin-top: 70px; } /* Mobilde header daha kısaysa ayarlanabilir */
    .platform-container { gap: 15px; }
    .platform-text { display: none; } /* Mobilde sadece logolar kalsın */

    /* Menünün mobildeki başlangıç hali (Ekranın sağında gizli) */
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%; /* Ekranın %80'ini kaplar */
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
        display: flex; /* Tailwind gizlediyse geri açar */
    }

    /* JavaScript tıklandığında bu sınıf eklenir ve menü içeri girer */
    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        z-index: 1100; /* Menünün üstünde kalmalı */
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-size: 1.2rem;
        font-weight: 600;
        display: block;
        padding: 10px;
    }

    .btn-order {
        margin: 0 auto;
        width: fit-content;
    }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}