/* ==========================================================================
   NOVA - MICHELIN STAR DEMO
   Dark Luxury / Onyx & Gold
   ========================================================================== */

:root {
    --bg-dark: #070707; /* Onyx Black */
    --bg-card: #111111; /* Charcoal */
    
    --accent-gold: #D4AF37; /* Pure Gold */
    --accent-gold-hover: #EED786;
    
    --text-main: #EAEAEA; /* Pearl White */
    --text-muted: #888888;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-main);
    letter-spacing: 4px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { width: 85%; max-width: 1400px; margin: 0 auto; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 35px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 400;
}

.btn-large { padding: 18px 45px; font-size: 0.85rem; }

.btn-primary { background: var(--accent-gold); color: #000; }
.btn-primary:hover { background: #FFF; color: #000; }

.btn-outline { background: transparent; color: var(--accent-gold); border: 1px solid var(--accent-gold); }
.btn-outline:hover { background: var(--accent-gold); color: #000; }

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 40px 0;
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(7, 7, 7, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-inner { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2rem; letter-spacing: 10px; color: var(--accent-gold); font-weight: 600; }

.nav { display: flex; gap: 50px; }
.nav-link { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); }
.nav-link:hover { color: var(--text-main); }

/* Hero */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7) contrast(1.1); }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(7,7,7,0.3) 0%, rgba(7,7,7,0.9) 100%);
    z-index: -1;
}

.hero-subtitle { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 6px; color: var(--accent-gold); display: block; margin-bottom: 30px; }
.hero-title { font-size: clamp(3rem, 7vw, 6rem); line-height: 1.1; margin-bottom: 40px; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.hero-desc { font-size: 1.1rem; color: var(--text-main); margin: 0 auto 50px; max-width: 500px; font-weight: 300; }

/* Sections */
.section { padding: 150px 0; }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.2; margin-bottom: 20px; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 50px; }

/* Philosophy */
.separator-gold { width: 1px; height: 60px; background-color: var(--accent-gold); margin: 40px auto; }
.section-text { font-size: 1.3rem; max-width: 800px; color: var(--text-muted); line-height: 2; font-style: italic; }

/* Menu Section */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

.menu-images { position: relative; height: 800px; }
.img-wrapper { position: absolute; overflow: hidden; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.img-1 { width: 70%; height: 60%; top: 0; left: 0; z-index: 2; border: 1px solid rgba(255,255,255,0.1); }
.img-2 { width: 60%; height: 50%; bottom: 0; right: 0; z-index: 1; filter: grayscale(50%); }

.accent-text { font-family: var(--font-heading); color: var(--accent-gold); font-size: 1.2rem; font-style: italic; margin-bottom: 10px; display: block; }

.menu-list { list-style: none; margin-top: 50px; display: flex; flex-direction: column; gap: 40px; border-left: 1px solid rgba(212, 175, 55, 0.2); padding-left: 40px; }
.menu-item h4 { font-size: 1.5rem; color: var(--text-main); margin-bottom: 10px; letter-spacing: 2px; }
.menu-item span { color: var(--text-muted); font-size: 0.95rem; }

/* Footer */
.footer { padding: 100px 0 50px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-title { font-size: 3rem; margin-bottom: 20px; }
.footer-desc { color: var(--text-muted); max-width: 400px; margin: 0 auto; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 80px; padding-top: 40px; display: flex; justify-content: space-between; align-items: center; }
.footer-info p { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 1px; }
.social-links a { color: var(--text-main); font-size: 1.2rem; margin-left: 20px; }
.social-links a:hover { color: var(--accent-gold); }

/* Responsive */
@media (max-width: 1000px) {
    .nav { display: none; }
    .btn-nav { padding: 10px 20px; font-size: 0.65rem; }
    .header { padding: 20px 0; }
    .menu-grid { grid-template-columns: 1fr; gap: 60px; }
    .menu-images { height: 500px; order: 2; }
    .menu-content { order: 1; }
    .footer-bottom { flex-direction: column; gap: 30px; text-align: center; }
}
