/* ===================================
   MENU PAGE STYLES
   Premium 5-Star Restaurant Menu Card Design
   =================================== */

/* Menu Hero Section */
.menu-hero {
    background: linear-gradient(135deg, #2D7A3E 0%, #1a4d28 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 70 L25 90 L35 60 L10 40 L40 40 Z" fill="rgba(212,175,55,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.menu-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.menu-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.ornamental-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 1.5rem auto;
    position: relative;
}

.ornamental-line::before,
.ornamental-line::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #D4AF37;
    font-size: 0.75rem;
}

.ornamental-line::before {
    left: -15px;
}

.ornamental-line::after {
    right: -15px;
}

.menu-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin: 0.5rem 0;
    font-style: italic;
}

.menu-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0.5rem 0 2rem;
}

.veg-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: #2D7A3E;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.veg-symbol {
    font-size: 1.5rem;
}

/* Quick Navigation */
.menu-quick-nav {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.quick-nav-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #2D7A3E;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-nav-link:hover {
    background: linear-gradient(135deg, #2D7A3E 0%, #1a4d28 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(45, 122, 62, 0.3);
}

.quick-nav-link i {
    font-size: 1.5rem;
}

/* Menu Sections */
.menu-section {
    padding: 4rem 0;
    background: #FFFEF9;
}

.menu-section.alternate-bg {
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-menu {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #2D7A3E;
    margin: 0 0 1rem;
    font-weight: 700;
}

.section-subtitle-menu {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 1.5rem auto;
    position: relative;
}

.title-underline::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #D4AF37;
    font-size: 1rem;
    background: #FFFEF9;
    padding: 0 0.5rem;
}

/* Menu Categories */
.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2D7A3E;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.category-title i {
    color: #D4AF37;
    font-size: 1.75rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Menu Item Cards */
.menu-item-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.menu-item-card::before {
    content: '🌿';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.25rem;
    opacity: 0.3;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #D4AF37;
}

.menu-item-card.featured {
    border: 2px solid #D4AF37;
    background: linear-gradient(135deg, #fff9e6 0%, white 100%);
}

.chef-special {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    color: #2D7A3E;
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.dish-description {
    color: #555;
    line-height: 1.6;
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.dish-garnish {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.875rem;
    font-style: italic;
}

.dish-garnish i {
    color: #D4AF37;
}

/* Live Counter Cards */
.menu-item-card.live-counter {
    background: linear-gradient(135deg, #fff5e6 0%, white 100%);
    border-color: #ff6b35;
}

.live-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Package Cards */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.package-card.featured-package {
    border-color: #D4AF37;
    background: linear-gradient(135deg, #fff9e6 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.package-card.featured-package::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    transform: rotate(45deg) translate(50%, -50%);
    opacity: 0.1;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.package-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2D7A3E;
    margin: 0;
    font-weight: 700;
}

.package-badge {
    background: #2D7A3E;
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.package-badge.gold {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
}

.package-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-items li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.package-items li:last-child {
    border-bottom: none;
}

.package-items i {
    color: #D4AF37;
    font-size: 0.875rem;
}

/* Party Menu Grid */
.party-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.party-menu-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.party-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.party-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2D7A3E 0%, #1a4d28 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.party-menu-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2D7A3E;
    margin: 0 0 1rem;
}

.party-menu-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.party-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.party-highlights li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.party-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Specialties Grid */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialty-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #D4AF37;
}

.specialty-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.specialty-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #2D7A3E;
    margin: 0 0 1.5rem;
    text-align: center;
}

.specialty-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.specialty-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.specialty-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.specialty-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #2D7A3E;
    margin: 0 0 0.5rem;
}

.specialty-item p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.menu-cta {
    background: linear-gradient(135deg, #2D7A3E 0%, #1a4d28 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.menu-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="30" fill="rgba(212,175,55,0.05)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin: 0 0 1rem;
}

.cta-content>p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin: 0 0 2rem;
    line-height: 1.7;
}

.cta-note {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-note i {
    color: #D4AF37;
}

/* Active Nav Link */
.nav-menu a.active {
    background: linear-gradient(135deg, #2D7A3E 0%, #1a4d28 100%);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-main-title {
        font-size: 2.5rem;
    }

    .menu-subtitle {
        font-size: 1.25rem;
    }

    .section-title-menu {
        font-size: 2.25rem;
    }

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

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

    .menu-quick-nav {
        top: 70px;
        padding: 0.5rem 0;
    }

    .quick-nav-links {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 1rem 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .quick-nav-links::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .quick-nav-link {
        flex: 0 0 auto;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        flex-direction: row;
        gap: 0.5rem;
        background: #f8f9fa;
        white-space: nowrap;
    }

    .quick-nav-link i {
        font-size: 1rem;
    }

    .quick-nav-link span {
        font-weight: 600;
    }

    .package-grid,
    .party-menu-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }
}

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

    .menu-main-title {
        font-size: 2rem;
    }

    .section-title-menu {
        font-size: 1.875rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .menu-logo {
        width: 100px;
        height: 100px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .menu-quick-nav,
    .whatsapp-float,
    .menu-cta,
    .footer {
        display: none;
    }

    .menu-section {
        page-break-inside: avoid;
    }

    .menu-item-card {
        page-break-inside: avoid;
    }

    body {
        background: white;
    }

    .menu-hero {
        background: white;
        color: #2D7A3E;
    }

    .menu-main-title,
    .menu-subtitle,
    .menu-tagline {
        color: #2D7A3E;
    }
}