
/* ============================================
   FOOD MENU CUSTOM STYLES
   Prefix: .food-menu-* 
   All styles are isolated and won't affect other page elements
   ============================================ */

/* ===== FOOD MENU CONTAINER - Main wrapper for the entire menu section ===== */
.food-menu-container {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ===== FOOD MENU WRAPPER - Centers content with max-width ===== */
.food-menu-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== FOOD MENU HEADER - Title section for the menu ===== */
.food-menu-header {
    text-align: center;
    margin-bottom: 50px;
}

.food-menu-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Decorative underline for title */
.food-menu-header__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    border-radius: 2px;
}

.food-menu-header__subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-top: 20px;
}

/* ===== FOOD MENU GRID - 3-column layout for menu cards ===== */
.food-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 30px; /* Space between cards */
    margin-bottom: 40px;
}

/* ===== FOOD MENU CARD - Individual menu item card ===== */
.food-menu-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Hover effect - lifts card and increases shadow */
.food-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== CARD IMAGE WRAPPER - Contains the food image ===== */
.food-menu-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e2e8f0;
}

.food-menu-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Image zoom effect on hover */
.food-menu-card:hover .food-menu-card__image {
    transform: scale(1.1);
}

/* ===== CARD BADGE - Optional label (e.g., "New", "Popular") ===== */
.food-menu-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    z-index: 10;
}

/* ===== CARD CONTENT - Text content area ===== */
.food-menu-card__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.food-menu-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.3;
}

.food-menu-card__description {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ===== CARD FOOTER - Bottom section with button ===== */
.food-menu-card__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

/* ===== CARD BUTTON - Call-to-action button ===== */
.food-menu-card__btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.food-menu-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 2 columns */
@media (max-width: 968px) {
    .food-menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .food-menu-header__title {
        font-size: 2rem;
    }

    .food-menu-card__image-wrapper {
        height: 200px;
    }
}

/* Mobile - 1 column */
@media (max-width: 640px) {
    .food-menu-container {
        padding: 40px 15px;
    }

    .food-menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .food-menu-header__title {
        font-size: 1.75rem;
    }

    .food-menu-header__subtitle {
        font-size: 1rem;
    }

    .food-menu-card__image-wrapper {
        height: 180px;
    }

    .food-menu-card__content {
        padding: 20px;
    }

    .food-menu-card__title {
        font-size: 1.2rem;
    }

    .food-menu-card__btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

/* Extra small mobile */
@media (max-width: 400px) {
    .food-menu-header__title {
        font-size: 1.5rem;
    }

    .food-menu-card__image-wrapper {
        height: 160px;
    }
}
 