:root {
    --bg-color: #0c0c0c;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #ffffff; /* Premium white/silver accent */
    --accent-hover: #e0e0e0;
    --card-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
}

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

body {
    background-color: #000000;
    background-image: 
        linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
        url('https://images.unsplash.com/photo-1558591710-4b4a1ae0f04d?auto=format&fit=crop&q=80&w=2000'); /* Abstract Grayscale Designer Background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    padding: 100px 0;
}

#app {
    width: 95%;
    max-width: 1300px;
    background-color: var(--bg-color);
    background-image: url('https://www.transparenttextures.com/patterns/dark-leather.png');
    border-radius: 80px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 span {
    color: var(--accent-color);
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Navbar */
.navbar {
    padding: 2.5rem 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
    z-index: 1000;
    padding: 10px;
    margin-right: -10px; /* Offset padding to align with edge */
}

.menu-toggle span {
    display: block;
    width: 32px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    padding: 10rem 0 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 1;
    padding-left: 4rem;
}

.hero-content h1 {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 2.5rem;
    letter-spacing: -3px;
    font-style: italic;
}

.hero-content p {
    color: var(--text-secondary);
    max-width: 380px;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-image {
    flex: 1.5;
    position: relative;
    right: -150px; /* Force overlap */
    z-index: 50;
}

.main-food {
    width: 140%;
    max-width: 900px;
    filter: brightness(1.1) contrast(1.1);
    /* Removed screen blend mode for more realism */
    animation: float 12s ease-in-out infinite;
    -webkit-mask-image: radial-gradient(circle at 48% 48%, black 50%, transparent 70%);
    mask-image: radial-gradient(circle at 48% 48%, black 50%, transparent 70%);
}

/* Special Offer Section */
.special-offer {
    padding: 4rem 0 4rem;
    position: relative;
}

.special-offer .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.offer-image {
    flex: 1.2;
    position: relative;
    left: -80px;
    z-index: 50;
}

.plate-image {
    width: 120%;
    max-width: 650px;
    filter: brightness(1.1) contrast(1.1);
    /* Removed screen blend mode to keep the plate visible */
    animation: float 8s ease-in-out infinite alternate;
    -webkit-mask-image: radial-gradient(circle at center, black 55%, transparent 75%);
    mask-image: radial-gradient(circle at center, black 55%, transparent 75%);
}

.chef-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

.chef-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.discount-tag {
    position: absolute;
    top: 50%;
    left: -20px;
    background-color: var(--accent-color);
    color: #000;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transform: rotate(-15deg) translateY(-50%);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
    z-index: 20;
}

.offer-content {
    flex: 1;
}

.tagline {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.offer-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Menu Exploration */
.menu-explore {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.menu-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 4rem;
}

.menu-categories ul {
    list-style: none;
}

.menu-categories li {
    margin-bottom: 1.5rem;
}

.menu-categories a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.menu-categories a:hover, .menu-categories a.active {
    color: var(--accent-color);
    padding-left: 10px;
    border-left: 2px solid var(--accent-color);
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    transition: transform 0.3s;
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.menu-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.menu-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.item-info {
    flex: 1;
}

.item-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.item-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating {
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Special Deals */
.special-deals {
    padding: 4rem 0;
    background: radial-gradient(circle at 0% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.deal-card {
    background: var(--card-bg);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.deal-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.deal-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.deal-info {
    padding: 1.5rem;
}

.deal-info .top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.deal-info .category {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.deal-info .bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deal-info .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.deal-info .old-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* Booking Section */
.booking {
    padding: 4rem 0;
    position: relative;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.booking-form h2 {
    margin-bottom: 1rem;
}

.booking-form p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-form input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    outline: none;
}

.booking-form input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-visual {
    text-align: center;
}

.table-3d {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.9));
}

/* Floating Elements */
.floating {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.mint-1 {
    width: 150px;
    top: 20%;
    left: 5%;
    transform: rotate(15deg);
    animation: float 8s ease-in-out infinite;
    mix-blend-mode: screen; /* Removes black box */
    filter: brightness(1.2) contrast(1.2);
}

.pumpkin-1 {
    width: 120px;
    bottom: 10%;
    right: 10%;
    animation: float 7s ease-in-out infinite reverse;
    mix-blend-mode: screen; /* Removes black box */
    filter: brightness(1.2) contrast(1.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Background Curve Lines */
.bg-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1; /* Subtler */
}

.bg-line path {
    stroke: var(--accent-color);
    stroke-dasharray: 10, 15; /* More spaced out dash */
    fill: none;
}

/* Responsive */
/* Page Specific Styles */
.reveal { opacity: 1 !important; transform: translateY(0) !important; }
section { opacity: 0; transform: translateY(20px); transition: all 0.8s ease-out; }

/* Menu Page */
.page-header { padding: 12rem 0 4rem; text-align: center; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; padding-bottom: 8rem; }
.category-title { grid-column: 1 / -1; margin: 2rem 0 1rem; border-bottom: 1px solid var(--accent-color); padding-bottom: 0.5rem; }

/* Chef Page */
.chef-page { padding: 12rem 0 8rem; }
.chef-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.chef-image-container { position: relative; }
.chef-image-container img { width: 100%; border-radius: 40px; filter: drop-shadow(0 20px 50px rgba(0,0,0,0.8)); transition: transform 0.5s ease; }
.chef-image-container:hover img { transform: scale(1.02); }
.chef-badge { position: absolute; bottom: -20px; right: -20px; background: var(--accent-color); color: #000; padding: 20px 30px; border-radius: 20px; font-weight: 700; transform: rotate(5deg); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }
.chef-content h1 { font-size: 4rem; margin-bottom: 0.5rem; }
.chef-title { color: var(--accent-color); font-size: 1.2rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 2rem; display: block; }
.chef-bio { color: var(--text-secondary); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; }
.signature-dish { display: flex; align-items: center; gap: 1.5rem; background: var(--card-bg); padding: 1.5rem; border-radius: 20px; margin-top: 3rem; border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); }
.signature-dish img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }

/* Booking Page */
.booking-page { padding: 12rem 0 8rem; max-width: 800px; margin: 0 auto; text-align: center; }
.form-card { background: var(--card-bg); padding: 3rem; border-radius: 30px; backdrop-filter: blur(20px); text-align: left; border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-secondary); }
.form-group input, .form-group select, .form-group textarea { 
    width: 100%; padding: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); 
    border-radius: 10px; color: white; outline: none; 
}
.form-group input:focus { border-color: var(--accent-color); }

/* Map Page */
.map-page { padding: 12rem 0 8rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.map-container { background: var(--card-bg); height: 400px; border-radius: 30px; overflow: hidden; display: flex; align-items: center; justify-content: center; border: 1px solid var(--glass-border); box-shadow: var(--glass-shadow); }
.info-list { list-style: none; margin-top: 2rem; }
.info-list li { margin-bottom: 1.5rem; display: flex; gap: 1rem; color: var(--text-secondary); }
.info-list span { color: var(--accent-color); font-weight: 600; min-width: 80px; }

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 5rem; }
    .hero-image { right: -50px; }
}

@media (max-width: 992px) {
    body { padding: 0; } /* Remove body padding on mobile for cleaner look */
    #app { border-radius: 0; width: 100%; max-width: 100%; } /* Full width on mobile */
    
    .navbar { padding: 1.2rem 0; position: fixed; background: rgba(12, 12, 12, 0.98); backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255,255,255,0.05); }
    .navbar .container { 
        display: flex !important;
        flex-direction: row !important; 
        justify-content: space-between !important; 
        align-items: center !important;
        padding: 0 25px !important; 
        max-width: 100% !important;
    }
    .logo { position: static !important; margin: 0 !important; z-index: 1001; }
    
    .menu-toggle { display: flex; }
    
    nav { display: contents; } /* Use contents to prevent the wrapper from interfering with flex spacing */
    
    .nav-links {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #0c0c0c;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.5s ease;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }

    .menu-toggle.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

    h1 { font-size: 3.5rem !important; }
    h2 { font-size: 2.5rem; }
    
    .hero { padding: 10rem 0 4rem; }
    .hero .container, .special-offer .container, .booking-layout {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .chef-layout, .contact-grid {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content, .offer-content { padding: 0; }
    .hero-content p, .offer-content p { margin: 0 auto 2rem; }
    
    .hero-image, .offer-image { right: 0; left: 0; width: 100%; }
    .main-food, .plate-image { width: 90%; max-width: 450px; }
    
    .menu-layout { grid-template-columns: 1fr; }
    .menu-categories ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
    
    .form-row, .chef-stats { grid-template-columns: 1fr; display: flex; flex-direction: column; }
    
    .page-header { padding: 10rem 0 3rem; }
}

@media (max-width: 600px) {
    .nav-links { 
        gap: 0.8rem; 
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-links a { font-size: 0.65rem; }
    
    h1 { font-size: 2.8rem !important; }
    
    .btn { padding: 10px 24px; font-size: 0.9rem; }
    
    .discount-tag { width: 80px; height: 80px; font-size: 0.7rem; }
    
    .menu-item { flex-direction: column; text-align: center; gap: 1rem; }
    .menu-item img { width: 100px; height: 100px; }
    
    .chef-layout { gap: 2rem; }

    /* Hide distracting elements on small mobile */
    .floating, .bg-line { display: none; }
    
    .menu-grid { grid-template-columns: 1fr !important; }
}
