/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfaf5; /* Krem/Beyaz yumuşak arkaplan */
    color: #333;
}

/* Üst Başlık Alanı */
.menu-header {
    background: linear-gradient(135deg, #8b0000 0%, #5e0000 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.3rem;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.menu-header p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Menü Konteynırı */
.menu-container {
    max-width: 500px; /* Mobil odaklı genişlik */
    margin: 20px auto;
    padding: 0 15px;
}

/* Kategori Başlıkları */
.category-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #8b0000;
    font-size: 1.3rem;
    margin: 35px 0 15px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #8b000022;
    padding-bottom: 8px;
}

/* Ürün Kartları */
.menu-item {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s;
}

.menu-item:active {
    transform: scale(0.97); /* Tıklama efekti */
}

.item-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: #333;
    padding-right: 10px;
}

.item-price {
    background-color: #fff4f4;
    color: #8b0000;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Alt Kısım */
.menu-footer {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Masaüstü için ufak dokunuş */
@media (min-width: 600px) {
    .menu-container {
        max-width: 600px;
    }
}