/*
 * Mariscos Cabo Seafood - Menu Page Styles
 * Beautiful, elegant menu presentation
 */

/* ==========================================================================
   Menu Page Header
   ========================================================================== */

.menu-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 80px;
}

/* Overlay is defined in style.css - no need to redefine */

.menu-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.menu-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.menu-hero .tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.menu-hero .subtitle {
    font-size: 1.1rem;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* ==========================================================================
   Menu Navigation / Categories
   ========================================================================== */

.menu-nav {
    position: sticky;
    top: 80px;
    background: white;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    display: block !important;
    visibility: visible !important;
}

.menu-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-nav-container::-webkit-scrollbar {
    display: none;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    min-width: max-content;
}

.menu-category-btn {
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.menu-category-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #d35400);
    transition: width 0.3s ease;
}

.menu-category-btn:hover,
.menu-category-btn.active {
    color: #e67e22;
}

.menu-category-btn:hover::after,
.menu-category-btn.active::after {
    width: 80%;
}

/* ==========================================================================
   Menu Sections
   ========================================================================== */

.menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.menu-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e67e22, #d35400);
}

.section-header p {
    color: #777;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* ==========================================================================
   Menu Items Grid
   ========================================================================== */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.menu-item:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(230, 126, 34, 0.2);
    transform: translateY(-2px);
}

.menu-item-info {
    flex: 1;
    padding-right: 1rem;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-item-name .badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    background: #e67e22;
    color: white;
    border-radius: 20px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.menu-item-desc {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.menu-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #e67e22;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.menu-item-price .price-label {
    font-size: 0.7rem;
    color: #999;
    font-weight: 400;
    text-transform: uppercase;
}

/* ==========================================================================
   Subsection Styles
   ========================================================================== */

.menu-subsection {
    margin-bottom: 3rem;
}

.menu-subsection:last-child {
    margin-bottom: 0;
}

.menu-subsection h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e67e22;
    display: inline-block;
}

/* ==========================================================================
   Drinks Menu Special Styles
   ========================================================================== */

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.drinks-category {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

.drinks-category h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e67e22;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.drinks-category h4 i {
    color: #e67e22;
}

.drinks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drinks-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #ddd;
}

.drinks-list li:last-child {
    border-bottom: none;
}

.drinks-list .drink-name {
    font-weight: 500;
    color: #2c3e50;
}

.drinks-list .drink-price {
    font-weight: 600;
    color: #e67e22;
}

/* ==========================================================================
   Sushi Menu Special Styles
   ========================================================================== */

.sushi-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    border-radius: 16px;
    color: white;
}

.sushi-header h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.sushi-header h2::after {
    background: white;
}

.sushi-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Price Notice
   ========================================================================== */

.price-notice {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    background: linear-gradient(135deg, #fef3e7 0%, #fde8d0 100%);
    border-radius: 12px;
    border: 1px solid rgba(230, 126, 34, 0.3);
}

.price-notice p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.price-notice strong {
    color: #e67e22;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.menu-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    margin-top: 4rem;
}

.menu-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.menu-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.menu-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        height: 40vh;
        min-height: 300px;
        margin-top: 70px;
    }
    
    .menu-hero h1 {
        font-size: 2.5rem;
    }
    
    .menu-hero .tagline {
        font-size: 1.1rem;
    }
    
    .menu-nav {
        padding: 0.5rem 0;
        min-height: 50px;
        z-index: 999;
    }
    
    .menu-nav-container {
        display: block;
        width: 100%;
    }
    
    .menu-categories {
        display: flex !important;
        justify-content: flex-start;
        padding: 0 0.5rem;
        gap: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    
    .menu-category-btn {
        padding: 0.75rem 0.6rem;
        font-size: 0.75rem;
        flex-shrink: 0;
    }
    
    .menu-content {
        padding: 2rem 1rem 4rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .menu-item-name {
        font-size: 1.1rem;
    }
    
    .drinks-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .menu-hero {
        margin-top: 60px;
    }
    
    .menu-hero h1 {
        font-size: 2rem;
    }
    
    .menu-hero .subtitle {
        font-size: 0.9rem;
    }
    
    .menu-nav {
        position: sticky !important;
        top: 75px;
        min-height: 45px;
    }
    
    .menu-category-btn {
        padding: 0.5rem 0.4rem;
        font-size: 0.65rem;
        letter-spacing: 0.3px;
    }
    
    .menu-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .menu-item-info {
        padding-right: 0;
    }
    
    .menu-item-price {
        align-items: flex-start;
        flex-direction: row;
        gap: 0.5rem;
    }
}

/* ==========================================================================
   Special Menu Item Cards (for featured items)
   ========================================================================== */

.featured-item {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5e6 100%);
    border: 2px solid rgba(230, 126, 34, 0.3);
    position: relative;
    overflow: hidden;
}

.featured-item::before {
    content: '★';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    color: #e67e22;
    font-size: 1.2rem;
}

/* ==========================================================================
   Dual Price Display (Tostada/Order)
   ========================================================================== */

.dual-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.dual-price .price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dual-price .price-type {
    font-size: 0.7rem;
    color: #999;
    font-weight: 400;
    min-width: 50px;
    text-align: right;
}

.dual-price .price-value {
    font-weight: 700;
    color: #e67e22;
    min-width: 60px;
    text-align: right;
}

