/* ============================================
   MENU LANDING PAGE STYLES
============================================ */

/* Hero Section */
.menu-landing-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../assets/images/menu-hero.jpg') center/cover no-repeat;
    background-color: #1a1a1a;
    padding-top: 100px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.menu-landing-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.menu-landing-hero .hero-subtitle {
    display: inline-block;
    font-family: 'Pinyon Script', cursive;
    font-size: 1.8rem;
    color: #F5A623;
    margin-bottom: 15px;
}

.menu-landing-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.menu-landing-hero .hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* Menu Options Section */
.menu-options-section {
    background: #f4f1ea;
    padding: 100px 5%;
}

.menu-options-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Option Cards */
.menu-option-card {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.menu-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #F5A623, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: #F5A623;
    transform: scale(1.05);
}

/* Order Popup Overlay */
.order-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.order-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup */
.order-popup {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.order-popup-overlay.active .order-popup {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.popup-close:hover {
    color: #333;
}

.popup-header {
    text-align: center;
    margin-bottom: 35px;
}

.popup-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.popup-header p {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 0.95rem;
}

/* Popup Options */
.popup-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.popup-option {
    background: #f9f8f6;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-option:hover {
    border-color: #F5A623;
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.15);
}

.option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #F5A623, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.popup-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.popup-option p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.option-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #888;
}

.option-detail svg {
    color: #F5A623;
}

.doordash-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-options-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-option-card {
        padding: 40px 30px;
    }

    .popup-options {
        grid-template-columns: 1fr;
    }

    .order-popup {
        padding: 30px 25px;
        margin: 20px;
    }

    .menu-landing-hero {
        min-height: 50vh;
    }
}
