/* Menu Section */
.menu-section {
    padding: var(--section-padding);
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.menu-section .section-title {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Menu Categories */
.menu-category {
    max-width: var(--content-width);
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(25, 25, 25, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 209, 0, 0.1);
    backdrop-filter: blur(3px);
    position: relative;
    z-index: 2;
}

.menu-category:last-child {
    margin-bottom: 2rem;
}

.category-title {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-yellow);
    opacity: 0.5;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Menu Items */
.menu-item {
    position: relative;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 209, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(2px);
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.menu-item-image {
    height: 180px;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.1),
        transparent
    );
    transition: 0.5s;
}

.menu-item:hover {
    transform: translateY(-5px);
    background: rgba(25, 25, 25, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item-content {
    position: relative;
    z-index: 3;
}

.menu-item-title {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-item-price {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
}

.menu-item-description {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Special Tag */
.special-tag {
    display: inline-block;
    font-size: 0.8rem;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-weight: 600;
}

/* Packaging Notice */
.packaging-notice {
    max-width: var(--content-width);
    margin: 0 auto 2rem;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px dashed rgba(255, 209, 0, 0.3);
}

.packaging-notice p {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Zomato Button */
.zomato-btn {
    background: #cb202d;
    color: white;
}

.zomato-btn:hover {
    background: #e23744;
}

/* Restaurant Info Section */
.restaurant-info {
    max-width: var(--content-width);
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(25, 25, 25, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 209, 0, 0.1);
    backdrop-filter: blur(3px);
    text-align: center;
    position: relative;
    z-index: 2;
}

.info-title {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--primary-yellow);
    opacity: 0.5;
}

.restaurant-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.restaurant-info i {
    color: var(--primary-yellow);
    margin-right: 0.5rem;
}

/* Order Section */
.order-section {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(25, 25, 25, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 209, 0, 0.1);
    max-width: var(--content-width);
    margin: 0 auto;
    backdrop-filter: blur(3px);
    position: relative;
    z-index: 2;
}

.order-section h2 {
    color: var(--primary-yellow);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: var(--primary-yellow);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0 1rem 1rem;
}

.order-btn:hover {
    background: var(--secondary-yellow);
    transform: translateY(-3px);
}

.order-btn i {
    font-size: 1.2rem;
}

.swiggy-btn {
    background: #fc8019;
    color: white;
}

.swiggy-btn:hover {
    background: #e67215;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-category {
        padding: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .restaurant-info {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-section {
        padding: var(--section-padding);
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-category {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .menu-item-title {
        font-size: 1.2rem;
    }

    .menu-item-price {
        font-size: 1.1rem;
    }
    
    .restaurant-info {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .info-title {
        font-size: 1.8rem;
    }

    .order-section {
        padding: 3rem 1.5rem;
    }

    .order-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        margin: 0 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .menu-section {
        padding: 4rem 1rem 2rem;
    }

    .menu-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

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

    .menu-item {
        padding: 1.2rem;
    }

    .menu-item-title {
        font-size: 1.1rem;
    }

    .menu-item-price {
        font-size: 1rem;
        padding: 0.2rem 0.8rem;
    }

    .menu-item-description {
        font-size: 0.9rem;
    }
    
    .restaurant-info {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .info-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .restaurant-info p {
        font-size: 0.95rem;
    }

    .order-btn {
        width: 100%;
        justify-content: center;
        margin: 0 0 1rem;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--primary-yellow);
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: rotate(90deg);
}

.menu-img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-img:hover {
    transform: scale(1.05);
}
