/* 
  Many More Asian Market - Imperial Noir Design System (v2.0)
  Theme: Luxury Asian Fusion
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Cormorant+Garamond:wght@400;600;700&family=Cinzel:wght@400;700&display=swap');

:root {
    /* Color Palette - Vibrant Upgrade */
    --noir: #050505;
    --noir-surface: #121212;
    --imperial-red: #8B0000; /* Richer Crimson */
    --gold: #FFD700; /* Electric Gold */
    --gold-bright: #FFF2A1;
    --gold-glow: rgba(255, 215, 0, 0.5);
    --white: #FFFFFF; /* Pure white for maximum contrast */
    --muted: #B0B0B0; /* Slightly lighter for readability */
    
    /* Variables */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Cinzel', serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: var(--noir); 
    color: var(--white); 
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { 
    font-family: var(--font-heading); 
    font-weight: 700; 
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
a { color: inherit; text-decoration: none; transition: var(--transition); }

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* Header SEO & Design */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; position: relative; gap: 15px; }
.logo { font-family: var(--font-accent); font-size: 1.6rem; letter-spacing: 2px; color: var(--gold); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 70%; }
.nav-links { display: flex; gap: 30px; list-style: none; align-items: center; }
.mobile-only-cta { display: none; }

/* Hamburger Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.9)), url('../images/hero_dark.png') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 { font-size: 6rem; line-height: 0.9; margin-bottom: 20px; animation: splitIn 1.5s ease; }
.hero p { font-size: 1.4rem; color: var(--muted); max-width: 700px; margin: 0 auto 40px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    text-align: center;
    line-height: 1.5;
    transition: var(--transition);
    text-decoration: none;
    box-sizing: border-box;
    overflow: hidden;
}

.btn-primary { 
    background: var(--imperial-red); 
    color: var(--white); 
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}
.btn-primary::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); transition: 0.5s; }
.btn-primary:hover { transform: scale(1.05); background: #A00000; box-shadow: 0 6px 20px rgba(139, 0, 0, 0.5); }
.btn-primary:hover::after { left: 100%; }

.btn-outline { 
    border: 2px solid var(--gold); 
    color: var(--gold); 
    background: transparent; 
    font-weight: bold;
}
.btn-outline:hover { 
    background: var(--gold-gradient); 
    color: var(--noir); 
    border-color: transparent;
    box-shadow: 0 0 20px var(--gold-glow);
}

/* Section Styling */
.section { padding: 120px 0; }
.section-title { font-size: 3.5rem; text-align: center; margin-bottom: 80px; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 2px; background: var(--gold); margin: 20px auto; }

/* Features (SEO Optimized Cards) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-card {
    background: var(--noir-surface);
    padding: 50px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card:hover { 
    border-color: var(--gold); 
    transform: translateY(-10px); 
    background: #1a1a1a; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 215, 0, 0.1); 
}
.feature-card h3 { 
    font-size: 2.2rem; 
    margin-bottom: 20px; 
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.feature-card p { color: var(--white); font-size: 1rem; opacity: 0.8; }

/* CTA Banner */
.cta-banner {
    background: var(--imperial-red);
    display: flex;
    align-items: center;
    gap: 0;
}
.cta-content { padding: 100px; flex: 1.2; }
.cta-image { flex: 1; height: 600px; background: url('../images/hot-food.png') center/cover; filter: grayscale(20%) contrast(110%); }

/* Long Content Styling */
.article-content {
    max-width: 900px;
    margin: 60px auto;
}
.article-content h2 {
    font-size: 2.8rem;
    margin: 60px 0 30px;
    color: var(--gold);
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding-bottom: 15px;
}
.article-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 40px 0 20px;
}
.article-content p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--muted);
    text-align: justify;
}

/* Ad Placeholders (Google Ads Ready) */
.ad-slot {
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(212,175,55,0.2);
    margin: 40px 0;
    padding: 20px;
    text-align: center;
    color: #333;
    font-family: var(--font-body);
    font-size: 0.7rem;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    display: none;
}
.ad-slot::after {
    content: "ADVERTISEMENT";
    position: absolute;
    top: 5px;
    left: 5px;
    opacity: 0.5;
}

/* Footer */
footer { padding: 100px 0 40px; background: #050505; border-top: 1px solid rgba(212, 175, 55, 0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; }
.footer-col h4 { font-family: var(--font-accent); color: var(--gold); font-size: 1rem; margin-bottom: 30px; letter-spacing: 2px; }
.footer-links li { list-style: none; margin-bottom: 15px; color: var(--muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); padding-left: 8px; }

/* Highlight Link for Suggestion Corner */
.highlight-footer-link {
    color: var(--gold) !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 15px;
    display: inline-block;
    margin-top: 5px;
    background: rgba(255, 215, 0, 0.05);
    transition: var(--transition);
}
.highlight-footer-link:hover {
    background: var(--gold-gradient);
    color: var(--noir) !important;
    border-color: transparent;
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px);
    padding-left: 15px !important; /* Override default hover padding */
}

/* Animations */
@keyframes splitIn {
    from { opacity: 0; transform: translateY(50px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 991px) {
    .nav-cta { display: none; }
    .logo { font-size: 1.1rem; max-width: 80%; white-space: normal; line-height: 1.2; }
    .menu-toggle { display: flex; margin-left: auto; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 40px;
    }
    
    .nav-links.active { right: 0; }
    .nav-links img { display: none; }
    .nav-links a { font-size: 1.2rem; width: 100%; text-align: center; padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }

    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; width: 100%; padding: 0 20px; gap: 10px; }
    .btn { width: 100%; display: block; padding: 18px 20px; margin-bottom: 0; box-sizing: border-box; }

    .feature-grid { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; }
    .cta-content { padding: 40px 20px; text-align: center; }
    .cta-image { height: 300px; width: 100%; }

    /* Fix image 2 issues: Force single column for all grids on mobile */
    .footer-grid, [style*="grid-template-columns"] { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important; 
    }

    .article-content h2 { font-size: 2rem; }
    .article-content p { text-align: left; font-size: 1rem; }
}
