/* Menu page container */

.menu-container {
    width: 100%;
    margin: 0 auto;
    padding: 0.75rem 10px;
}

.menu-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;

    padding: 1rem 0;
    padding-top: 120px;
    font-weight: bold;
}


.menu-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.menu-section {
    margin-bottom: 2rem;
    padding: 0 10px;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.5rem;
    padding: 0 10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0;
}

.menu-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.menu-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.menu-details {
    padding: 0.75rem;
}

.menu-details h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
}

.text-muted {
    color: #666;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.15rem;
}

.menu-details p {
    font-size: 0.85rem;
    margin: 0.5rem 0;
    line-height: 1.4;
    color: #333;
}

.price {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 0.5rem;
    display: block;
}

.spice-level-info {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    margin: 0 10px 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.menu-notes {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    margin: 1rem 10px;
    font-size: 0.8rem;
}

/* Larger screens */
@media (min-width: 1024px) {
    .menu-container {
        max-width: 1200px;
        padding: 2rem;
    }

    .menu-grid {
        gap: 2rem;
        padding: 1rem;
    }

    .menu-item img {
        height: 200px;
    }

    .menu-details {
        padding: 1rem;
    }

    .menu-details h3 {
        font-size: 1.2rem;
    }

    .text-muted {
        font-size: 0.9rem;
    }

    .menu-details p {
        font-size: 1rem;
    }

    .price {
        font-size: 1.1rem;
    }
}

/* Animation for menu items */
.menu-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay each menu item animation */
.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.2s; }
.menu-item:nth-child(3) { animation-delay: 0.3s; }
.menu-item:nth-child(4) { animation-delay: 0.4s; }

/* Delivery Section Styles */
.delivery-section {
    background: var(--white-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

/* Notes Section */
.notes {
    background: #fff;
    padding: 3rem 0;
}

.notes-content {
    background: var(--white-color);
    padding: 2.5rem;
}

.notes-content ul {
    list-style: none;
    padding: 0;
}

.notes-content li {
    color: var(--text-color);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.notes-content li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Payment Methods Section */
.payment-methods {
    margin-bottom: 15px;
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9em;
}

.payment-option i {
    font-size: 1.2em;
}

.payment-option svg {
    width: 24px;
    height: 24px;
}

/* Menu Categories Section */
.menu-categories {
    background-color: var(--background-color);
    padding: 30px 10px;
    margin-top: -30px;
}

.menu-categories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    background: var(--white-color);
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    padding: 40px;
    text-decoration: none;
}

.menu-category-title {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.menu-category-title-text {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: "League Gothic", sans-serif;
    text-decoration: none;
}

.menu-category-subtitle-text {
    color: var(--subtext-color);
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive design for menu categories */
@media (max-width: 768px) {
    .menu-categories {
        padding: 40px 20px;
    }

    .menu-category {
        padding: 30px;
    }

    .menu-category-title-text {
        font-size: 1.3rem;
    }

    .menu-category-subtitle-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .menu-category {
        padding: 20px;
    }

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

    .menu-category-subtitle-text {
        font-size: 0.9rem;
    }

    .menu-category-title {
        gap: 3px;
    }
}

/* Existing media queries below */
@media (max-width: 768px) {
    .delivery-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .notes-content {
        padding: 0;
    }

    .notes-content li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        line-height: 1.5;
    }

    .payment-options {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .payment-option {
        justify-content: center;
        padding: 12px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .delivery-section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .payment-option {
        padding: 10px;
        font-size: 0.95rem;
    }
} 