:root {
    --bg-color: #0c0a09;
    --surface-color: #161412;
    --surface-hover: #1f1c1a;
    --accent-color: #d4af37;
    --accent-hover: #f1d570;
    --text-primary: #fafaf9;
    --text-secondary: #d6d3d1;
    --text-muted: #a8a29e;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(12, 10, 9, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-fast);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo img {
    height: 70px;
    width: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    padding: 2px;
    background-color: #f9f6ef; /* Matches the logo's cream background */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 6px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../img/hero-bg.png') center/cover no-repeat;
    text-align: center;
    padding-top: 90px;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(12, 10, 9, 0.7) 0%, rgba(12, 10, 9, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeIn 1.2s ease-out;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    color: var(--accent-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 0;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-slow);
    cursor: pointer;
    background: transparent;
}

.btn-primary {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Hero button group */
.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Nav Order Now button */
.nav-cta {
    padding: 0.6rem 1.6rem;
    font-size: 0.85rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 54px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    z-index: 2;
    display: flex;
    justify-content: center;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    border-color: rgba(212, 175, 55, 0.8);
}

.scroll-indicator span {
    width: 4px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-top: 10px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* Section Shared */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    opacity: 0.3;
}

section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 2.5rem;
}

.about-text p {
    margin-bottom: 1.8rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image-placeholder {
    position: relative;
    padding: 0;
    margin: 2rem;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-color);
    border-radius: 16px;
    opacity: 0.4;
    z-index: 0;
    transition: var(--transition-slow);
}

.about-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-image-placeholder img {
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.7);
    position: relative;
    z-index: 2;
    filter: brightness(0.95) contrast(1.1);
    transition: var(--transition-slow);
}

.about-image-placeholder:hover::before {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    opacity: 0.8;
    background: rgba(212, 175, 55, 0.03);
}

.about-image-placeholder:hover img {
    transform: scale(1.02);
    box-shadow: 0 35px 60px rgba(0,0,0,0.9);
}

/* Menu Section */
.menu {
    padding: 8rem 0;
    background-color: var(--surface-color);
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.category-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 0;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
    position: relative;
}

.category-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.category-btn:hover {
    color: var(--text-primary);
}

.category-btn.active {
    color: var(--accent-color);
}

.category-btn.active::after {
    width: 100%;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

/* Menu Photo Cards */
.menu-card {
    background: var(--surface-color);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.menu-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.menu-card__body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-card__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.menu-card__desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 0.75rem;
}

.menu-card__price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.menu-item {
    transition: var(--transition-fast);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 2px solid transparent;
    background: transparent;
}

.menu-item:hover {
    transform: translateX(10px);
    border-left: 2px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.8rem;
}

.menu-item-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.menu-item-dots {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.3);
    margin: 0 15px;
    position: relative;
    top: -6px;
    min-width: 15px;
}

.menu-item-price {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-right: 3rem;
}

/* Modern Hours Section */
.hours-modern {
    padding: 6rem 0 2rem;
    text-align: center;
}

.hours-list-modern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
    margin-top: 3rem;
}

.hours-list-modern li {
    background: var(--surface-color);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 160px;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hours-list-modern li:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.02);
}

.hours-list-modern li span {
    display: block;
}

.hours-list-modern li span:first-child {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.hours-list-modern li span:last-child {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 300;
}

.hours-list-modern li.closed span:last-child {
    color: #ef4444;
    font-weight: 500;
}

/* Compact Contact Map Section */
.contact-compact {
    padding: 6rem 0;
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.map-wrapper iframe {
    border: 0;
    display: block;
    width: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(12, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    max-width: 400px;
}

.map-overlay-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-overlay-card .contact-details {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .map-overlay-card {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 1.5rem;
    }
}

/* Footer */
footer {
    background-color: #080706;
    padding: 4rem 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    height: 50px;
    margin-bottom: 2rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-content, .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-cta {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(12, 10, 9, 0.98);
        flex-direction: column;
        padding: 3rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }
    
    .about-image-placeholder {
        margin: 1rem 0;
    }

    .menu-item-header {
        flex-wrap: wrap;
    }

    .menu-item-dots {
        display: none;
    }
    
    .menu-item-price {
        width: 100%;
        margin-top: 0.5rem;
    }

    .hours-list-modern {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hours-list-modern li {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem;
    }

    .map-overlay-card {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 1.5rem;
    }
}
