/* GENEL SIFIRLAMA VE FONT AYARLARI */
:root {
    --primary-color: #C62828; /* Kırmızı (İştah açıcı ve sıcak) */
    --secondary-color: #FFB300; /* Sarı/Turuncu (Enerji ve lezzet) */
    --text-color: #333;
    --bg-light: #f4f4f4;
    --font-family: 'Arial', sans-serif; /* Gerçek projede Google Fonts kullanılabilir */
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    scroll-behavior: smooth; /* Tek sayfa navigasyonu için akıcı geçiş */
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

/* NAVİGASYON (HEADER) */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links li a {
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

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


/* HERO SECTION (ANA BAŞLIK) */
.hero-section {
    /* *** ARKA PLAN GÖRSELİ BURADA TANIMLANDI *** */
    background-image: url('https://canlimacizletv.com.tr/keyfet/hero-bg.jpg'); 
    background-size: cover; /* Görüntüyü kapsayacak şekilde ölçeklendirir */
    background-position: center; /* Görüntüyü ortalar */
    background-repeat: no-repeat; /* Görüntünün tekrarlanmasını engeller */
    background-color: rgba(0, 0, 0, 0.6); /* Metin okunurluğu için siyah overlay */
    background-blend-mode: overlay; /* Görüntü ile arka plan rengini karıştırır */
    
    color: var(--primary-color); /* Metin rengini beyaza çeviriyoruz */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    min-height: 400px; /* Görselin görünmesi için minimum yükseklik */
    min-height: 80vh; /* Orijinal vh değeri korundu */
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Daha görünür hale getirildi */
	color: var(--primary-color);
}

.slogan {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 15px;
}


/* GENEL SECTİON STİLLERİ */
.section {
    padding: 60px 5%;
    text-align: center;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

/* BUTONLAR */
.btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

.secondary-btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.secondary-btn:hover {
    background-color: #FFD54F;
}

/* HAKKIMIZDA */
.about-section {
    background-color: var(--bg-light);
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 15px auto;
}

.signature {
    font-style: italic;
    font-weight: bold;
    margin-top: 20px;
}

/* MENÜ ÖZETİ */
.menu-section {
    background-color: white;
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.menu-card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
}

.menu-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 10px;
}

.menu-card ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.menu-card i {
    color: var(--primary-color);
    margin-right: 8px;
}

.full-menu-btn {
    margin-top: 40px;
}


/* SİPARİŞ VE İLETİŞİM */
.contact-section {
    background-color: #fceceb; /* Açık Kırmızı Tonu */
}

.order-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.siparis-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.yemeksepeti-btn {
    background-color: #E60023; /* Yemek Sepeti Kırmızısı */
}

.getir-btn {
    background-color: #FFC300; /* Getir Sarısı */
    color: var(--text-color);
}

.contact-info {
    max-width: 600px;
    margin: 40px auto 0 auto;
    text-align: left;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
}

.contact-info h3 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-info ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* FOOTER VE HARİTA */
.footer {
    background-color: #222;
    color: white;
    padding: 40px 5%;
    text-align: center;
}

.map-container {
    margin-bottom: 30px;
}

.map-container h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.map-link {
    display: block;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.map-link:hover {
    color: var(--secondary-color);
}

.footer iframe {
    border-radius: 8px;
}

.social-media a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: white;
    transition: color 0.3s;
}

.social-media a:hover {
    color: var(--secondary-color);
}

.footer p {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* RESPONSIVE TASARIM İÇİN MİNİ DÜZENLEMELER */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }

    .section {
        padding: 40px 5%;
    }
}

  .seo-content {
        max-width: 900px;
        margin: 40px auto;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-family: Arial, sans-serif;
        line-height: 1.6;
        background: #fff;
      }
      .seo-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
        color: #222;
      }
      .seo-content h2 {
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 10px;
        color: #333;
      }
      .seo-content h3 {
        font-size: 18px;
        margin-top: 15px;
        color: #444;
      }
      .seo-content p {
        margin-bottom: 15px;
      }