/* CSS RESET & VARIABLES */
:root {
    --primary-color: #5C181B;
    /* Deep Burgundy / Oriental Red */
    --primary-light: #7E262B;
    --accent-color: #D8A03F;
    /* Gold / Ochre Accent */
    --accent-hover: #b8852e;
    --text-dark: #2A2A2A;
    /* Dark Charcoal */
    --text-light: #F7F5F0;
    /* Warm Off-White / Cream */
    --bg-color: #FFFCF5;
    /* Warm background */
    --bg-alt: #F2EBE1;
    /* Slightly darker warm tone for sections */

    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.highlight {
    color: var(--accent-color);
    font-style: italic;
}

.center {
    text-align: center;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-family: var(--font-main);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(216, 160, 63, 0.4);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(92, 24, 27, 0.4);
}

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

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 252, 245, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 999;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* HERO SECTION */
.hero {
    background: var(--bg-color);
    margin-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
    min-height: 80vh;
    padding: 3rem 0;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(92, 24, 27, 0.05) 0%, rgba(216, 160, 63, 0.05) 100%);
}

.hero-content {
    flex: 1.2;
    color: var(--text-dark);
    min-width: 0;
}

.hero-image {
    flex: 0.8;
    max-width: 450px;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-title {
    color: var(--primary-color);
    font-size: 4.5rem;
    text-shadow: none;
}

.hero-subtitle {
    color: #444;
}

.badge {
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.decor-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20" preserveAspectRatio="none"><path d="M0,20 Q25,0 50,20 T100,20" fill="%23FFFCF5"/></svg>');
    background-size: 100px 100%;
    z-index: 2;
}

/* ABOUT SECTION */
.about {
    padding: 6rem 0;
    background-color: var(--bg-alt);
}

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

.about-container.center {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.features.center {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.features.center .feature-item {
    flex-direction: column;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    background-color: var(--bg-alt);
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

.feature-item h4 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.feature-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

.image-wrapper {
    position: relative;
}

.main-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

/* Removed decor-box as requested */

.no-shadow {
    box-shadow: none !important;
}

.no-radius {
    border-radius: 0 !important;
}

/* MENU HIGHLIGHT / GALLERY */
.menu-highlight {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

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

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    aspect-ratio: 1 / 1.2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 24, 27, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.view-icon {
    font-size: 2.5rem;
    color: var(--text-light);
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .view-icon {
    transform: scale(1);
}

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

/* Modal Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(216, 160, 63, 0.3);
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 40px;
    color: var(--text-light);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-lightbox:hover {
    color: var(--accent-color);
}

.menu-cta {
    margin-top: 3rem;
    font-style: italic;
    color: #555;
}

/* CATERING SECTION */
.catering {
    padding: 6rem 0;
    position: relative;
    background: url('https://images.unsplash.com/photo-1541544741938-0af808871cc0?q=80&w=2669&auto=format&fit=crop') center/cover no-repeat;
    color: var(--text-light);
}

.catering-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(92, 24, 27, 0.95);
}

.catering-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.catering-content h2 {
    color: var(--text-light);
}

.catering-list {
    list-style: none;
    margin-bottom: 2rem;
}

.catering-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* CONTACT SECTION */
.contact {
    padding: 6rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item > div {
    flex: 1;
    min-width: 0;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.location-card {
    margin-top: 2.5rem;
    background-color: var(--bg-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.location-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location-card-header h3 {
    margin-bottom: 0;
}

.map-frame {
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid rgba(92, 24, 27, 0.12);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 320px;
    border: 0;
}

.custom-form {
    background-color: var(--bg-alt);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-main);
    background-color: var(--bg-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(216, 160, 63, 0.2);
}

.btn-submit {
    width: 100%;
    border: none;
}

/* FOOTER */
.footer {
    background-color: #1a1a1a;
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: var(--text-light);
}

.footer-links h4 {
    color: var(--accent-color);
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

.text-link {
    color: var(--primary-color);
    text-decoration: underline;
}

/* SCROLL REVEAL ANIMATIONS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.right {
    transform: translateX(40px);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {

    .container {
        padding: 0 1.5rem;
    }

    .hero-container {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        min-height: auto;
        padding: 2.5rem 0 4rem;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image {
        max-width: 360px;
        width: min(82vw, 360px);
    }

    .badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .about-image {
        order: -1;
    }

    .contact {
        padding: 5rem 0;
    }

    .contact-info,
    .contact-form-container {
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }

    .map-frame iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {

    .container {
        padding: 0 1.1rem;
    }

    .nav-links,
    .btn-outline {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-content {
        height: 72px;
    }

    .logo {
        font-size: 1.45rem;
        letter-spacing: 0.4px;
    }

    .hero {
        margin-top: 72px;
    }

    .hero-container {
        gap: 1.5rem;
        padding: 2rem 0 3.5rem;
    }

    .hero-title {
        font-size: clamp(2.4rem, 10vw, 3.25rem);
        line-height: 1.05;
        text-wrap: balance;
    }

    .hero-subtitle {
        max-width: 32rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    h2 {
        font-size: 2rem;
    }

    .about,
    .menu-highlight,
    .catering,
    .contact {
        padding: 4.5rem 0;
    }

    .features.center {
        gap: 1.5rem;
    }

    .feature-item {
        width: min(100%, 220px);
    }

    .menu-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .info-details {
        gap: 1.25rem;
    }

    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .info-item .icon {
        flex: 0 0 1.1rem;
        width: 1.1rem;
        font-size: 1.15rem;
        margin-top: 0.15rem;
        margin-bottom: 0;
    }

    .info-item .icon+div {
        padding-top: 0.28rem;
    }

    .location-card {
        margin-top: 0.5rem;
        padding: 1rem;
    }

    .location-card-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 0.85rem;
    }

    .map-frame iframe {
        height: 260px;
    }

    .custom-form {
        padding: 1.35rem;
    }
}

@media (max-width: 480px) {

    .hero-container {
        padding-top: 1.5rem;
    }

    .badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.75rem;
    }

    .hero-image {
        width: min(88vw, 320px);
    }

    .hero-subtitle,
    .about-text p,
    .catering-list li,
    .contact-info p {
        font-size: 1rem;
    }

    .menu-gallery {
        grid-template-columns: 1fr;
    }

    .map-frame iframe {
        height: 220px;
    }
}
