/* public/assets/css/custom-menu.css */

/* === Genel Ayarlar === */
.menu-section {
    scroll-margin-top: 150px;
    margin-bottom: 50px;
}

/* === Navigasyon Linkleri === */
.menu-category-nav {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.menu-category-nav .nav-link {
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    padding: 0.5rem 0.8rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.menu-category-nav .nav-link:hover {
    color: #d9534f;
    border-bottom-color: #d9534f;
}

/* === Bölüm Başlıkları === */
.menu-section-title {
    text-align: left;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-right: 20px;
}

/* === Menü Grid Yapısı === */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 20px;
}

@media (min-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr); /* Desktopta 2 sütun */
        gap: 50px; /* Masaüstü boşlukları */
    }
}

/* === Menü Öğesi Kartı (List View + Card Style) === */
.menu-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border: 1px solid #eee; /* Desktop için standart hafif çerçeve */
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

/* === DESKTOP HOVER EFFECT === */
.menu-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: transparent;
}

/* === Sol Taraf: Yemek Resmi === */
.menu-item-image-wrapper {
    flex-shrink: 0;
    margin-right: 15px;
}

.menu-item-image {
    /* %20 Büyütüldü (Eski: 100px) */
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* === Sağ Taraf: Detaylar === */
.menu-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Başlık ve Fiyat Satırı */
.menu-item-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
}

.menu-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #333;
    text-transform: uppercase;
    line-height: 1.2;
    padding-right: 5px;
}

.menu-item-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.menu-item-title a:hover { color: #d9534f; }

/* --- NOKTALI ÇİZGİ --- */
.menu-item-dots {
    flex-grow: 1;
    border-bottom: 2px dotted #ccc;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    min-width: 20px;
    opacity: 0.7;
}

.menu-item-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #c4453e;
    white-space: nowrap;
    padding-left: 5px;
}

.menu-item-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* === Mobil Uyumluluk === */
@media (max-width: 576px) {
    .menu-item {
        padding: 10px;
        /* MOBİL KENARLIK AYARI: Çok silik, varla yok arası */
        border-color: rgba(0,0,0,0.04);
    }

    .menu-item-image {
        /* %20 Büyütüldü (Eski: 80px) */
        width: 100px;
        height: 100px;
    }

    .menu-item-title {
        font-size: 1rem;
    }

    .menu-item-price {
        font-size: 1rem;
    }

    .menu-item-header {
        align-items: flex-end;
    }

    .menu-item-dots {
        margin-bottom: 4px;
    }
}
