/* =================================================================== */
/* 1. MENÜ SAYFASI (menu.html) STİLLERİ */
/* =================================================================== */

.full-menu-page {
    background: rgba(255, 255, 255, 0.9);
}

/* Menü kartlarını içeren ana kapsayıcı */
.menu-page .container {
    padding-top: 5rem; /* Header'dan gelen üst boşluğu dengelemek için */
    padding-bottom: 5rem;
}

.menu-category {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.menu-category h3 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c1810;
    margin-bottom: 2rem;
    font-weight: 700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Her satırda otomatik olarak 2 veya daha fazla kart */
    gap: 2rem; /* Kartlar arası boşluk */
    max-width: 1200px; /* Opsiyonel: Gridin maksimum genişliği */
    margin: 0 auto; /* Gridi ortalar */
}

.menu-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.menu-item-image {
    width: 100%;
    height: 400px;
    object-fit: cover;       /* Bu, görseli sığmak için sündürmeden kaplamasını sağlar */
    object-position: center; /* BU SATIR GÖRSELİ ORTALAR */
    display: block;
}

.menu-item-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.menu-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

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

.menu-item-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-top: auto;
    padding-top: 5px;
}


/* =================================================================== */
/* 2. MENÜ SAYFASI RESPONSIVE */
/* =================================================================== */

@media (max-width: 1024px) {
    .menu-category h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .full-menu-page {
        padding: 2rem 0;
    }
    
    .full-menu-page .section-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .menu-category {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .menu-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .menu-grid {
        max-width: 100%;
        padding: 0;
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        margin-bottom: 1rem;
    }
    
    .menu-item-name {
        font-size: 1rem;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .menu-item-price {
        padding-left: 0;
        align-self: flex-end;
        font-size: 1rem;
    }
    
    .menu-item-description {
        font-size: 0.85rem;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .menu-category {
        padding: 1rem;
    }
    
    .menu-category h3 {
        font-size: 1.3rem;
    }
    
    .menu-item-name,
    .menu-item-price {
        font-size: 0.9rem;
    }
}