@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* Main Container */
.app-container {
    width: 100%;
    max-width: 480px; /* Mobile width simulation */
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin: 20px;
}
.menu-section {
    padding: 5px 5px 0px 0px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 10px;
}

/* Menu Item Styling */
.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #444;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-3px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Specific Colors for Icons */
.bg-blue { background-color: #1e88e5; color: white; }
.bg-red { background-color: #e53935; color: white; }
.bg-green { background-color: #43a047; color: white; }
.bg-orange { background-color: #fb8c00; color: white; }
.bg-purple { background-color: #8e24aa; color: white; }
.bg-teal { background-color: #00897b; color: white; }
.bg-indigo { background-color: #3949ab; color: white; }
.bg-pink { background-color: #d81b60; color: white; }

.icon-wrapper i {
    font-size: 22px;
}

.menu-label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    color: #333;
}

/* Promo Banner Section (Optional Visual) */
.promo-section {
    padding: 0 16px 24px 16px;
}

.promo-card {
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-icon {
    background: #ffca28;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.promo-text h4 {
    font-size: 14px;
    color: #5d4037;
    margin-bottom: 4px;
}

.promo-text p {
    font-size: 11px;
    color: #8d6e63;
}

/* Responsive adjustments */
@media (max-width: 350px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
