:root {
    --gold: #D4AF37;
    --gold-light: #F4E5B2;
    --dark: #1a1a1a;
    --brown: #3E2723;
    --cream: #FAFAFA;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

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

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title span {
    color: var(--gold);
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--brown);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 1px solid var(--brown);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gold);
    z-index: -1;
    transition: var(--transition);
}

.btn:hover {
    color: var(--brown);
    border-color: var(--gold);
}

.btn:hover::before {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown);
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-text {
    flex: 1;
    padding-right: 4rem;
}

.hero-text h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text .subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-image {
    flex: 1.2;
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: morph 8s infinite ease-in-out;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Cards (Specials & Menu) */
.grid {
    display: grid;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.card-img {
    height: 300px;
    overflow: hidden;
}

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

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

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

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-price {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Menu Page */
.menu-layout {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 2rem 5rem;
}

.menu-sidebar {
    width: 250px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.menu-cat-link {
    display: block;
    padding: 1rem 0;
    color: var(--dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.menu-cat-link:hover,
.menu-cat-link.active {
    color: var(--gold);
    padding-left: 10px;
}

.menu-content {
    flex: 1;
}

.menu-category {
    margin-bottom: 5rem;
}

.menu-category h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

/* Gallery */
.gallery-grid {
    column-count: 3;
    column-gap: 2rem;
    padding: 150px 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* Reviews */
.reviews-section {
    background: var(--brown);
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    position: relative;
}

.reviews-section h2 {
    color: var(--gold);
}

.review-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.review-card {
    padding: 2rem;
}

.review-text {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.review-author {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 100vh;
}

.contact-info-panel {
    background: var(--cream);
    padding: 150px 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map-panel {
    position: relative;
}

.contact-map-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .menu-layout {
        flex-direction: column;
    }

    .menu-sidebar {
        position: relative;
        top: 0;
        width: 100%;
        overflow-x: auto;
        display: flex;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .gallery-grid {
        column-count: 1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-map-panel {
        height: 400px;
    }

    .nav-links {
        display: none;
    }

    /* Simplified for now */
}
/* Logo Image Support */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust based on navbar height */
    width: auto;
    object-fit: contain;
}

