/* --- MODERN ASYMMETRICAL STRUCTURAL CONFIGURATION --- */
:root {
    --primary-color: #1c1816;
    --secondary-color: #cca47e;
    --bg-hero: #f4eae1;
    --bg-dark-section: #221d1b;
    --bg-light-section: #faf6f0;
    --text-light-base: #f4eae1;
    --text-dark-base: #1c1816;
    --text-dark-muted: #5e534c;
    --font-family-sans: "Helvetica Neue", Arial, sans-serif;
    --header-height: 80px;
    --transition-standard: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius-ui: 4px;
}

/* --- SYSTEM RESET --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-family-sans);
    background-color: var(--bg-light-section);
    color: var(--text-dark-base);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-standard);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

.section-heading-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading-centered h2 {
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.section-subtext {
    color: var(--text-dark-muted);
    margin-top: 10px;
    font-size: 1rem;
}

/* --- DYNAMIC ACTION UTILITIES --- */
.btn-solid-dark {
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--border-radius-ui);
    display: inline-block;
    border: 1px solid var(--primary-color);
}

.btn-solid-dark:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    border-color: var(--secondary-color);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color);
    padding: 12px 26px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--border-radius-ui);
    display: inline-block;
}

.btn-outline-dark:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
}

.btn-navbar-order {
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--border-radius-ui);
    white-space: nowrap;
}

.btn-navbar-order:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
}

/* --- HEADER NAVIGATION LAYER --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--bg-hero);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header-container {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 32px;
    width: 32px;
    object-fit: contain;
}

.nav-brand-name {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark-base);
    opacity: 0.85;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--secondary-color);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.35rem;
    cursor: pointer;
    color: var(--text-dark-base);
    padding: 5px;
}

.mobile-cta-wrapper {
    display: none;
}

/* --- HERO COMPONENT --- */
.hero-section {
    background-color: var(--bg-hero);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: 40px;
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-dark-base);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-dark-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btn-group {
    display: flex;
    gap: 14px;
}

.hero-visual-block {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper {
    width: 380px;
    height: 380px;
    background-color: #ffffff;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(28, 24, 22, 0.08);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- ASYMMETRICAL STORY ROW ARCHITECTURE --- */
.story-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.story-row:last-child {
    margin-bottom: 0;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-ui);
}

.story-text-pane h2 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.story-text-pane p {
    font-size: 1.05rem;
    color: var(--text-dark-muted);
    margin-bottom: 16px;
}

.story-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    padding: 8px 18px;
    border-radius: 20px;
    margin-top: 10px;
}

.story-link-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
}

.story-row.reverse .story-image-pane {
    order: 2;
}

.story-row.reverse .story-text-pane {
    order: 1;
}

/* --- SOCIAL STRIP BLOCK --- */
.social-banner-strip {
    background-color: var(--bg-dark-section);
    padding: 40px 0;
}

.social-strip-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 0 24px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-light-base);
}

.strip-item i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.handle-title {
    display: block;
    font-size: 1.35rem;
    font-weight: 400;
}

.handle-sub {
    display: block;
    font-size: 0.85rem;
    color: #a89f98;
}

/* --- PREMIUM MENU GRID --- */
/* --- CLEAN MODERN MENU LIST WORK --- */
.menu-dual-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 20px;
}

.menu-category-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    border-bottom: 1px solid #e6ded7;
    padding-bottom: 12px;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.menu-item-row {
    display: flex;
    align-items: flex-start;
}

.menu-item-info {
    width: 100%;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 6px;
}

.menu-item-name {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-color);
    padding-right: 12px;
    white-space: nowrap;
}

.menu-item-spacer {
    flex-grow: 1;
    border-bottom: 1px dotted #d1c7bd;
    margin: 0 4px;
    position: relative;
    top: -4px;
}

.menu-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    padding-left: 12px;
    white-space: nowrap;
}

.menu-item-description {
    font-size: 0.95rem;
    color: var(--text-dark-muted);
    line-height: 1.5;
    max-width: 90%;
}

/* Call Action Button Layout Optimization */
.btn-call-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Provides precise spacing between the telephone icon and numbers */
    white-space: nowrap;
}

.btn-call-action i {
    font-size: 0.9rem;
    transition: var(--transition-standard);
}

/* Subtle feedback hover accent variation */
.btn-call-action:hover i {
    transform: scale(1.1) rotate(-10deg);
}

/* --- FIRE HDX & MOBILE RESPONSIBILITY FIXES --- */
@media (max-width: 1024px) {
    .menu-dual-column-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .menu-item-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .menu-item-name {
        font-size: 1.05rem;
    }

    .menu-item-price {
        font-size: 1.05rem;
    }
}

/* --- LANDSCAPE PANORAMA GALLERY --- */
.gallery-section {
    padding: 0;
}

.gallery-fluid-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-tile {
    height: 300px;
    overflow: hidden;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-standard);
}

.gallery-tile:hover img {
    transform: scale(1.04);
}

/* --- LOCATIONS & CONTACT FRAMEWORK --- */
.locations-contact-section {
    background: linear-gradient(135deg, #1b1614 0%, #110d0c 100%);
    color: var(--text-light-base);
    position: relative;
}

.locations-contact-section .section-heading-centered h2 {
    color: var(--text-light-base);
}

.locations-distribution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 60px;
}

.location-hub-node {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 40px 30px;
    transition: var(--transition-standard);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location-hub-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 6px 6px 0 0;
    opacity: 0;
    transition: var(--transition-standard);
}

.location-hub-node:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(204, 164, 126, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.location-hub-node:hover::before {
    opacity: 1;
}

.location-badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(204, 164, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: var(--transition-standard);
}

.location-hub-node:hover .location-badge-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.location-hub-node h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.address-paragraph {
    font-size: 0.95rem;
    color: #c4b9b1;
    line-height: 1.6;
}

.interactive-contact-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-methods-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-standard);
}

.contact-methods-card:hover {
    border-color: rgba(204, 164, 126, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.contact-methods-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.channel-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.channel-row:last-child {
    margin-bottom: 0;
}

.channel-row i {
    color: var(--secondary-color);
    background: rgba(204, 164, 126, 0.1);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-standard);
}

.channel-row:hover i {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.channel-row a {
    color: #c4b9b1;
    text-decoration: none;
    transition: var(--transition-standard);
}

.channel-row a:hover {
    color: var(--secondary-color);
}

.contact-form-box {
    background: linear-gradient(135deg, rgba(204, 164, 126, 0.04) 0%, rgba(204, 164, 126, 0.01) 100%);
    border: 1px solid rgba(204, 164, 126, 0.1);
    padding: 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-standard);
}

.contact-form-box:hover {
    border-color: rgba(204, 164, 126, 0.25);
    box-shadow: 0 10px 30px rgba(204, 164, 126, 0.03);
}

.contact-form-box h3 {
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 25px;
}

.contact-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group-row {
    display: flex;
    gap: 15px;
}

.contact-interactive-form .input-field,
.contact-interactive-form .textarea-field {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-standard);
}

.form-group-row .input-field {
    flex: 1;
    width: 50%;
}

.contact-interactive-form .textarea-field {
    resize: none;
    width: 100%;
}

.contact-interactive-form .input-field:focus,
.contact-interactive-form .textarea-field:focus {
    border-color: var(--secondary-color);
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(204, 164, 126, 0.1);
}

.contact-interactive-form .btn-submit {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-ui);
    cursor: pointer;
    align-self: flex-start;
    transition: var(--transition-standard);
}

.contact-interactive-form .btn-submit:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* --- WHATSAPP FLOATING ACTION BUTTON --- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: var(--transition-standard);
}

.whatsapp-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- MAIN FOOTER LAYER --- */
.main-footer {
    background-color: #161312;
    color: #a89f98;
    padding: 60px 0 20px;
    border-top: 1px solid #221d1b;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 28px;
    width: 28px;
    object-fit: contain;
}

.footer-brand-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.9rem;
}

.footer-right-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-social-circle-links {
    display: flex;
    gap: 10px;
}

.footer-social-circle-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #362f2c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-social-circle-links a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.footer-bottom-bar {
    border-top: 1px solid #221d1b;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #5e534c;
}

/* --- TARGETED BREAKPOINT RESOLUTION ENGINE (Fixes Kindle Fire HDX 800px Layout) --- */
@media (max-width: 1024px) {
    :root {
        --header-height: 70px;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    /* Transforms the squished header navbar into an elegant full screen overlay */
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-hero);
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition-standard);
        box-shadow: 0 15px 20px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-cta-wrapper {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .mobile-cta-wrapper .btn-navbar-order {
        display: block;
        padding: 12px;
    }

    /* Fixes Hero sizing rules on tablets/Fire HDX screen profiles */
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 24px;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image-wrapper {
        width: 320px;
        height: 320px;
    }

    /* Fluid columns adjustment */
    .story-row,
    .story-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-row.reverse .story-image-pane,
    .story-row.reverse .story-text-pane {
        order: 0;
    }

    .story-img {
        height: 340px;
    }

    .gallery-fluid-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-distribution-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .interactive-contact-frame {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-image-wrapper {
        width: 260px;
        height: 260px;
    }

    .social-strip-container {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .form-group-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-group-row .input-field {
        width: 100%;
    }

    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .footer-right-controls {
        align-items: flex-start;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 8px;
    }
}