.menu-hero {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.menu-hero .hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.menu-hero .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.menu-hero .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.menu-hero .hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
    line-height: 1.5;
    width: 100%;
    text-align: center;
    display: block;
}

.menu-page {
    padding: 4rem 5% 4rem;
    background-color: #FFE5B4; /* Main peach background */
}

.menu-page h1 {
    text-align: center;
    color: #1a1a1a; /* Black text */
    margin-bottom: 2rem;
}

.section-title {
    text-align: left;
    color: #1a1a1a; /* Black text */
    margin: 3rem 0 2rem;
    font-size: 1.8rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid #ff6b00;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background-color: #FFDAB9; /* Lighter peach for buttons */
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.category-btn.active,
.category-btn:hover {
    background-color: #ff6b00;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.category-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: #FFDAB9; /* Lighter peach for menu items */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: transparent;
}

.menu-item h3 {
    padding: 1rem 1rem 0.5rem;
    color: #1a1a1a; /* Black text */
}

.menu-item p {
    padding: 0 1rem;
    color: #333; /* Dark gray text */
    font-size: 0.9rem;
    min-height: 40px;
}

.menu-item .price {
    display: block;
    padding: 0.5rem 1rem;
    color: #ff6b00;
    font-weight: 600;
    font-size: 1.2rem;
}

.order-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    background-color: #ff6b00;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.order-btn:hover {
    background-color: #e65100;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.order-btn:active {
    transform: scale(0.98);
}

/* Order Modal Styles */
.order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #FFE5B4;
    border-radius: 15px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ff6b00;
}

#orderDetails {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #FFDAB9;
    padding-bottom: 1.5rem;
}

#orderDetails img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: transparent;
    border-radius: 10px;
    margin-bottom: 1rem;
}

#orderDetails h3 {
    margin: 0.5rem 0;
    color: #1a1a1a;
}

#orderDetails p {
    margin: 0.5rem 0;
    color: #333;
    text-align: center;
}

#orderDetails .price {
    color: #ff6b00;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.order-form .form-group {
    margin-bottom: 1.5rem;
}

.order-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.order-form input,
.order-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #FFDAB9;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

.order-form textarea {
    min-height: 100px;
    resize: vertical;
}

#addToCartBtn {
    margin-top: 1rem;
    width: 100%;
}

@media (max-width: 768px) {
    .menu-categories {
        flex-wrap: wrap;
    }
    
    .menu-item {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }
} 