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

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #161616;
    --amber: #d48d3b;
    --amber-muted: #a67b4c;
    --text-white: #f5f5f5;
    --text-muted: #a0a0a0;
    --border: rgba(212, 141, 59, 0.2);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', sans-serif;
}

/* Floating Embers */
#ember-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.ember {
    position: absolute;
    background: radial-gradient(circle, var(--amber), transparent);
    border-radius: 50%;
    opacity: 0;
    filter: blur(1px);
    animation: driftUp 10s linear infinite;
}

@keyframes driftUp {
    0% {
        transform: translateY(100vh) translateX(0) scale(1);
        opacity: 0;
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        transform: translateY(-20vh) translateX(100px) scale(0.5);
        opacity: 0;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.text-amber { color: var(--amber); }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 3rem;
    backdrop-filter: blur(10px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--amber);
    text-decoration: none;
    letter-spacing: 2px;
}

/* Header/Hero */
.hero {
    height: 100vh;
    width: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8)), 
                url('./assets/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards 0.3s;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--amber);
    color: var(--amber);
    font-family: var(--font-body);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.2s;
}

.btn:hover {
    background: var(--amber);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 141, 59, 0.4);
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: 0.8s;
}

.btn:hover::after {
    left: 120%;
}

/* Sections */
section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.section-title .divider {
    width: 60px;
    height: 2px;
    background: var(--amber);
    margin: 1.5rem auto;
}

/* Featured Dishes */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.dish-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.dish-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 141, 59, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dish-card:hover::before {
    opacity: 1;
}

.dish-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--amber);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dish-image {
    height: 350px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-content {
    padding: 2rem;
    text-align: center;
}

.dish-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--amber);
}

.dish-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section */
.about-split {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: -2rem;
    bottom: -2rem;
    border: 1px solid var(--amber);
    z-index: -1;
}

/* Opening Hours */
.hours-container {
    max-width: 600px;
    margin: 4rem auto;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid var(--border);
}

.hours-table td {
    padding: 1.5rem 0;
    font-size: 1.1rem;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--text-muted);
}

.hours-table tr:hover td {
    color: var(--amber);
}

/* Reservation CTA */
.reservation-cta {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)),
                url('./assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 10rem 2rem;
    text-align: center;
    max-width: 100%;
}

.cta-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    padding: 5rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    background: #050505;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--amber);
    margin-bottom: 2rem;
    display: block;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

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

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--amber);
}

.copyright {
    color: #444;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    nav { padding: 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .section-title h2 { font-size: 2.5rem; }
    .about-split { gap: 3rem; }
    .about-text h2 { font-size: 2.5rem; }
    .cta-content h2 { font-size: 2.5rem; }
}
