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

body {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d; /* Siyah arka plan */
    color: #d9d9d9; /* Hafif kırık beyaz metin */
    line-height: 1.6;
}

/* Header (Başlık) Stilleri */
header {
    background-color: #1a1a1a; /* Koyu gri arka plan */
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1); /* Hafif beyaz gölge */
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    width: 75px;
    height: auto;
    object-fit: contain;
}

/* Sosyal Medya İkonları */
.social-icons {
    list-style: none;
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* Banner (Yaz Menüsü) Stilleri */
.summer-menu-banner {
    background-image: url('../images/arkaplan.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 40px 0;
    color: #f0f0f0; /* Beyaza yakın gri */
}

.summer-menu-banner h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.summer-menu-banner p {
    font-size: 0.9em;
    color: #ccc; /* Açık gri */
}

/* Yaz Menüsü Listeleme Stili */
.summer-menu-list {
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    background-color: #1a1a1a; /* Koyu arka plan */
    border-radius: 8px;
    color: #e0e0e0; /* Açık gri metin */
}

.summer-menu-item {
    background-color: #262626; /* Koyu gri */
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); /* Beyaz gölge */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.menu-photo {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 5px;
    object-fit: cover;
    border: 2px solid #fff; /* Beyaz çerçeve */
}

.menu-details {
    flex-grow: 1;
}

.menu-details h2 {
    font-size: 1.2em;
    margin-bottom: 5px;
    color: #f5f5f5; /* Beyaza yakın başlık */
}

.menu-details .price {
    font-size: 1.1em;
    font-weight: bold;
    color: #ff6b6b; /* Kırmızı fiyat rengi */
    display: block;
    margin-bottom: 10px;
}

.menu-details p {
    font-size: 0.9em;
    color: #bfbfbf; /* Daha açık gri açıklama metni */
}

.summer-menu-item:hover {
    background-color: #333333; /* Koyu gri hover efekti */
}

/* Footer Stilleri */
footer {
    background-color: #0d0d0d; /* Siyah arka plan */
    color: #f5f5f5; /* Beyaz metin */
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 0.8em;
}

a {
    text-decoration: none;
    color: #f5f5f5; /* Beyaz linkler */
}

a:hover {
    color: #ff6b6b; /* Kırmızı hover efekti */
}
