/* ===== OCEAN BLUE LANDING PAGE STYLING ===== */
body {
    background: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #1e293b;
}

.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== SIMPLIFIED HEADER ===== */
.header {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.15);
    position: relative;
}

.header h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

.main-content {
    flex: 1;
    padding: 2rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* ===== PRIVACY BADGE ===== */
.privacy-badge {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #047857;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.privacy-badge-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.privacy-badge-text {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== QUICK STATS (hidden by default, shown when data exists) ===== */
.quick-stats {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid #10b981;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== MATERIAL SYMBOLS STYLING ===== */
.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    user-select: none;
    -webkit-user-select: none;
    font-feature-settings: 'liga' 1;
}

.menu-icon {
    font-size: 2.5rem;
    color: #0369a1;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48;
}

/* ===== MENU GRID WITH ENHANCED VISUAL DESIGN ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.menu-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 120px;
}

.menu-card:hover {
    border-color: #0ea5e9;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
}

.menu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
    text-align: center;
}

.menu-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
}

.menu-content {
    flex: 1;
    text-align: center;
}

.menu-description {
    color: #64748b;
    font-style: italic;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

/* Button style from index-previous.html - clean arrow format without emoji */
.menu-link {
    min-height: 44px;
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
}

.menu-card:hover .menu-link {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.menu-card:hover .menu-title {
    color: #0369a1;
}

.menu-card:hover .menu-description {
    color: #334155;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

.brand {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.875rem;
    color: #0284c7;
    font-style: italic;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }

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

    .menu-card {
        padding: 1rem;
        min-height: 140px;
    }

    .menu-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .menu-content {
        text-align: center;
    }

    .menu-link {
        min-width: 100%;
        align-self: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .header {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .stat-value {
        font-size: 1.5rem;
    }
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #0ea5e9;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 100;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles */
*:focus-visible {
    outline: 2px solid #0ea5e9;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
