@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

body {
    background-image: url('arkaplan.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.090); 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo-area {
    text-align: center;
    margin-bottom: 50px;
}

.logo-area img {
    max-width: 200px;
}

#menu-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.category-block {
    width: 45%; 
    min-width: 300px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .category-block { width: 100%; }
}

.category-title {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 700;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    transition: 0.3s;
}

.item-info {
    flex: 1;
    padding-right: 10px;
}

.item-name {
    font-weight: 700;
    font-size: 15px;
}

.item-desc {
    font-size: 12px;
    color: #666;
    margin: 3px 0 0 0;
    line-height: 1.4;
}

.item-price {
    font-weight: 400;
    font-size: 15px;
}

/* --- TÜKENDİ ÖZELLİĞİ --- */
.out-of-stock {
    color: #e74c3c;
    font-size: 13px;
    font-weight: 700;
    font-style: italic;
    white-space: nowrap;
}

.item-disabled {
    opacity: 0.5; /* Sadece biraz sönük görünür */
}

.item-disabled .item-name {
    text-decoration: none; /* Üstü çizili efektini buradan KALDIRDIK */
    color: inherit; /* Rengini orijinal bırakır */
}

/* --- KARŞILAMA MESAJI --- */
#welcome-message {
    padding: 10px;
    border-radius: 5px;
}