* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #f8f9fa; /* Kırık, yumuşak beyaz */
    color: #2b2b2b;
    line-height: 1.6;
    padding: 20px;
    max-width: 650px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #e0e0e0;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #d35400; /* Sıcak iştah açıcı turuncu/kiremit */
    letter-spacing: 1px;
}

.subtitle {
    color: #7f8c8d;
    font-weight: 500;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

/* Animasyonlar */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Menü Kartları */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-item {
    display: flex;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f2f6;
}

/* Kartların üzerine gelince / dokununca havaya kalkma efekti */
.menu-item:hover, .menu-item:active {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(211, 84, 0, 0.15);
}

.image-placeholder {
    width: 120px;
    min-width: 120px;
    background-color: #ecf0f1;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .image-placeholder img {
    transform: scale(1.1); /* Resme hafif zoom atar */
}

.item-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.desc {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 8px;
    line-height: 1.3;
}

.price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #d35400;
}

/* Ekstralar kutusu */
.extras-box {
    background-color: #fff3e0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 25px;
    border: 1px dashed #ffb300;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.extras-box h4 {
    color: #d35400;
    margin-bottom: 5px;
}

/* İçecekler Listesi */
.drink-list {
    list-style: none;
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #f1f2f6;
}

.drink-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 1.05rem;
    color: #2c3e50;
    transition: background-color 0.2s ease;
}

.drink-list li:hover {
    background-color: #fcfcfc;
}

.drink-list li:last-child {
    border-bottom: none;
}

.drink-price {
    font-weight: bold;
    color: #d35400;
}
/* Logo Tasarımı */
        .brand-logo {
            max-width: 220px; /* Logonun büyüklüğünü buradan ayarlayabilirsin, 220px genelde idealdir */
            height: auto;
            display: block;
            margin: 0 auto 10px auto; /* Logoyu tam ortaya ortalar */
        }