/* Reset and Base Styles */
:root {
    --cream: #fbfaf3;
    --dark-purple: #231123;
    --rust: #c24b2b;
    --green: #a7ce39;
    --gold: #826338;
    --text-dark: #333333;
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 114px;
}

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

img {
    max-width: 100%;
    display: block;
}

/* Typography Utilities */
.section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--dark-purple);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark-purple);
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.pb-2 { padding-bottom: 1rem; }
.fw-normal { font-weight: 400; }

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

.bg-white { background-color: var(--white); }
.bg-cream { background-color: var(--cream); }
.bg-purple { background-color: var(--dark-purple); color: var(--white); }
.bg-rust { background-color: var(--rust); color: var(--white); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-white {
    background-color: var(--white);
    color: #000000;
}
.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-purple {
    background-color: var(--dark-purple);
    color: var(--white);
}
.btn-purple:hover {
    background-color: #381c38;
}

.btn-purple-small {
    background-color: var(--dark-purple);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
}
.btn-purple-small:hover {
    background-color: #381c38;
}

.btn-rust {
    background-color: var(--rust);
    color: var(--white);
    border-radius: 6px;
    padding: 14px 32px;
}
.btn-rust:hover {
    background-color: #a83d21;
}

.btn-green {
    background-color: var(--green);
    color: #000;
    border-radius: 6px;
    padding: 14px 40px;
    font-size: 1rem;
}
.btn-green:hover {
    background-color: #92b42d;
}

.btn-white-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 6px;
}
.btn-white-outline:hover {
    background-color: var(--white);
    color: var(--rust);
}

/* Navigation */
.navbar {
    background: var(--cream);
    padding: 1rem 0;
    position: fixed;
    top: 34px;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-logo-link {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #2b3940;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: capitalize;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark-purple);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 280px;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.about-text-col p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Menu Section */
.menu-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 3rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 3rem;
}

.menu-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.menu-image-container {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.menu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .menu-image-container img {
    transform: scale(1.05);
}

.menu-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--rust);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.menu-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-details h3 {
    font-size: 1.2rem;
    color: var(--dark-purple);
    font-family: var(--font-sans);
    font-weight: 700;
    margin: 0;
}

.menu-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.menu-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
}

.btn-primary {
    display: inline-block;
    background: var(--dark-purple);
    color: var(--white);
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary:hover {
    background: #381c38;
}

.menu-bottom-btn {
    text-align: center;
}

/* Order Section */
.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.order-dish-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.order-small-title {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: -10px;
}

.order-large-title {
    font-family: var(--font-serif);
    color: var(--gold);
    font-size: 5rem;
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.order-banner-strip {
    background-color: var(--rust);
    color: var(--white);
    display: inline-block;
    padding: 6px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.order-desc {
    color: #666;
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 2rem;
}

/* Reservation Section */
.reservation-desc {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Deals Section */
.deals-header {
    margin-bottom: 2rem;
}

.deals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.deals-dish-img {
    width: 100%;
    max-width: 550px;
    border-radius: 50%;
    margin: 0 auto;
}

.deals-text-col {
    text-align: left;
}

.deals-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.deals-desc {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.deals-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Catering Section */
.catering {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.overlay-catering {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.catering-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.text-cream { color: var(--cream) !important; }
.catering-desc {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}
.catering-contact {
    text-transform: uppercase;
}
.contact-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}
.contact-detail {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}
.contact-detail a {
    text-transform: lowercase;
}

/* Gallery Section */
.gallery-subtitle {
    font-family: var(--font-serif);
    color: var(--dark-purple);
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer Section */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-logo {
    height: 70px;
}

.footer-heading {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-col p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-col strong {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid, .order-grid, .deals-grid, .catering-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-images-col {
        display: flex;
        justify-content: center;
    }
    .about-us-img {
        max-width: 100%;
        height: auto;
    }
    .about-buttons {
        justify-content: center;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .deals-text-col {
        text-align: center;
    }
    .order-desc {
        margin: 0 auto 2rem auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-title { font-size: 3rem; }
    .order-large-title { font-size: 3.5rem; }
    .deals-title { font-size: 2rem; }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}