/* Genel Sıfırlamalar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

.section {
    padding: 50px 0;
    text-align: center;
}

.bg-light {
    background-color: #f9f9f9;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #c0392b;
}

/* Header & Navigasyon */
header {
    background: #2c3e50;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Stil Alanı */
.logo img {
    height: 55px; /* Logo yüksekliği */
    width: auto;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    background: #e74c3c;
}

/* Hero / Kapak Alanı (Anasayfa) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero h2 {
    color: #fff;
    font-size: 2.5rem;
}

/* Butonlar */
.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #c0392b;
}

.btn-navigation {
    background-color: #27ae60;
    font-size: 1.2rem;
    padding: 15px 30px;
}

.btn-navigation:hover {
    background-color: #219653;
}

/* Menü Tasarımı */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.menu-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.menu-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.1rem;
}

/* İletişim Düzeni */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.contact-info, .map {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    margin-bottom: 12px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}
