/*
Theme Name: Fazehospitality
Theme URI: http://fazehospitality.local
Author: Your Name
Description: Custom theme for Faze Hospitality using ACF.
Version: 1.0
Text Domain: fazehospitality
*/

/* ==========================================================================
   1. GOOGLE FONTS IMPORT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Saira+Condensed:wght@300;400;500;600;700&family=Saira+Semi+Condensed:wght@300;400;500;600;700&family=Yusei+Magic&display=swap');

/* ==========================================================================
   2. ROOT VARIABLES (Colors & Core Settings)
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #1F2A44;
    --color-secondary: #005B8D;
    --color-accent: #CFA86E;
    /* Slate / Button / Highlights */
    --color-text-dark: #1F2A44;
    --color-text-light: #CFA86E;
    --color-cream-btn: #FCFCD4;
    /* Typography */
    --font-heading: 'Yusei Magic', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-saira: 'Saira', sans-serif;
    --font-saira-condensed: 'Saira Condensed', sans-serif;
    --font-saira-semicondensed: 'Saira Semi Condensed', sans-serif;
}

/* ==========================================================================
   3. BASE & TYPOGRAPHY STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    min-width: 320px;
    /* Safe minimum for modern mobile displays */
    background-color: var(--color-primary);
    line-height: 1.6;
}

.font-inter {
    font-family: var(--font-body);
}

.font-yusei {
    font-family: var(--font-heading);
}

.text-cream {
    color: var(--color-cream-btn);
}

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

.text-secondary {
    color: var(--color-secondary);
}

.text-accent {
    color: var(--color-accent);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* Fluid type sizing scales */
h1 {
    font-size: clamp(2.5rem, 2.5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 2vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 1.8vw, 2.25rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   4. LAYOUT CONTAINERS
   ========================================================================== */
.container-max {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 5vw, 4rem);
    /* Keeps layout safe from sticking to the bezel on wide monitors */
    padding-right: clamp(1rem, 5vw, 4rem);
}

/* ==========================================================================
   5. UTILITY CLASSES (Single Line Blueprint Layout Helpers)
   ========================================================================== */
/* Display Flex Helpers */
.d-flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Display Grid Helpers */
.d-grid {
    display: grid;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.header-split-grid {
    grid-template-columns: 1fr auto 1fr;
}

/* Custom fit for your exact header setup */

/* Gaps, Alignments & Colors */
.gap-05 {
    gap: 0.5rem;
}

.gap-1 {
    gap: 1rem;
}

.gap-2 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.text-accent {
    color: var(--color-accent);
}

/* Buttons */
.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    display: inline-block;
}

/* ==========================================================================
   7. SINGLE-LINE UTILITY SPACING ENGINE (0px to 50px)
   ========================================================================== */

/* --- MARGIN BOTTOM (mb) --- */
.mb-0 {
    margin-bottom: 0px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* --- PADDING BOTTOM (pb) --- */
.pb-0 {
    padding-bottom: 0px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

/* --- PADDING TOP (pt) --- */
.pt-0 {
    padding-top: 0px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-100 {
    padding-top: 100px;
}

/* --- PADDING RIGHT (pr) --- */
.pr-0 {
    padding-right: 0px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

/* --- PADDING LEFT (pl) --- */
.pl-0 {
    padding-left: 0px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

/* --- MARGIN TOP (mt) --- */
.mt-0 {
    margin-top: 0px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

/* --- MARGIN RIGHT (mr) --- */
.mr-0 {
    margin-right: 0px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

/* --- MARGIN LEFT (ml) --- */
.ml-0 {
    margin-left: 0px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

/* ==========================================================================
   6. HEADER LAYOUT STYLES
   ========================================================================== */
.site-header {
    background-color: var(--color-primary);
    /* Sets background to #1F2A44 */
    padding: 0.25rem 0;
    width: 100%;
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
}

/* Grid 1: Left Menu */
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    padding: 0;
}

.header-nav a {
    font-family: var(--font-body);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--color-accent);
    /* Highlights to CFA86E */
}

/* Grid 2: Center Logo */
.grid-center {
    display: flex;
    justify-content: center;
}

.site-logo img {
    display: block;
    height: auto;
}

/* Grid 3: Right Contact Items */
.grid-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.call-btn {}

.opening-hours {
    font-family: var(--font-body);
    color: var(--color-accent);
    /* #CFA86E text matching layout design */
    font-size: 0.95rem;
    font-weight: 500;
}

/* Top Call Button Style Customization */
.opening-hours {
    background-color: #FCFCD4;
    /* New custom premium cream color variable applied */
    color: var(--color-primary);
    /* #1F2A44 text */
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.8rem 2rem;
    border-radius: 0px;
    /* Kept sharp/clean as per modern minimal aesthetic guidelines */
    transition: background-color 0.3s ease, transform 0.2s ease;
    padding-left: 50px;
}

.opening-hours:hover {
    background-color: var(--color-accent);
    /* Shifts cleanly to gold accent color on hover */
    color: #ffffff;
}

.dot-head {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dot-head::before {
    content: '';
    height: 15px;
    width: 15px;
    background-color: var(--color-accent);
    display: block;
    margin-bottom: 0;
    position: absolute;
    border-radius: 50%;
    top: 38%;
    left: 15px;
    /* Move the animation property here so it targets the pseudo-element directly */
    animation: dotColorPulse 3s infinite ease-in-out;
}

@keyframes dotColorPulse {
    0% {
        background-color: var(--color-accent);
        /* #CFA86E Gold */
    }

    50% {
        background-color: var(--color-secondary);
        /* #005B8D Secondary accent pop */
    }

    100% {
        background-color: var(--color-accent);
        /* #CFA86E Gold */
    }
}

/* ==========================================================================
   9. FOOTER GRID LAYOUT & BORDERS
   ========================================================================== */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 3rem clamp(1rem, 5vw, 4rem);
}

/* Base styles for columns */
.footer-col {
    padding-right: 3rem;
    list-style: none;
    text-align: center;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    justify-content: center;
    align-items: center;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--color-cream-btn);
    /* Golden headers */
    margin-bottom: 1.5rem;
}

.footer-col li,
.footer-col p {
    font-family: var(--font-saira);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-cream-btn);
    /* #CFA86E text for footer items */
}

.footer-col a.text-accent {
    font-size: 1.25rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Selects the first 2 columns to give them the right separator border */
.footer-col:nth-child(1),
.footer-col:nth-child(2) {
    border-right: 2px solid var(--color-accent);
    /* Gold color line separator */
    border-radius: 0 4px 4px 0;
    /* Smooth rounded edge right-side border */
}

.footer-link-icon {
    display: flex;
    align-items: center;
    /* Centers icon perfectly with the text height */
    justify-content: flex-start;
    gap: 12px;
    /* Fixed side distance from image to text */
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    /* CRITICAL: Prevents text from breaking onto a second line */
}

/* Special alignment fix for the Multi-line Address blocks */
.footer-link-icon.align-start {
    align-items: flex-start;
    white-space: normal;
    /* Permits the address description to wrap naturally */
}

/* Icon constraint safeguards */
.footer-icon {
    width: 20px;
    /* Exact clean display size */
    height: 20px;
    /* Keeps proportional bounding aspect boxes matching */
    object-fit: contain;
    flex-shrink: 0;
    /* CRITICAL: Stops browser from compressing the icon on tiny screens */
    display: block;
}

/* Helper layout for links without icons (like 'View Map ->') */
.pl-30 {
    padding-left: 32px;
    /* Exact match alignment to line up under column text text */
    display: inline-block;
}

/* Clean mobile fallback so it drops to 1 column on smaller monitors */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col:nth-child(1),
    .footer-col:nth-child(2) {
        border-right: none;
        border-bottom: 2px solid var(--color-accent);
        padding-right: 0;
        padding-bottom: 1.5rem;
        border-radius: 0 0 4px 4px;
    }
}

/* ==========================================================================
   12. BACK TO TOP SCROLL COMPONENT (With Complex Dual Animations)
   ========================================================================== */
.back-to-top-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    cursor: pointer;
}

/* Continuously Rotating Black Dotted Outer Ring */
.rotating-dotted-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px dashed var(--color-accent);
    /* Dotted/dashed black circle format */
    border-radius: 50%;
    animation: continuousRotate 8s linear infinite;
    /* Spin effect loop */
}

/* Floating Up Arrow Asset */
.floating-arrow {
    width: 22px;
    height: 22px;
    display: block;
    z-index: 2;
    position: relative;
    /* Bobbing up and down smoothly offset by 5px */
    animation: verticalBob 2s infinite ease-in-out;
}

/* --- ANIMATIONS KEYFRAMES --- */

/* 1. Spin the dotted outer circle 360 degrees infinitely */
@keyframes continuousRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 2. Move the arrow up and down precisely by 5px */
@keyframes verticalBob {

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

    50% {
        transform: translateY(-5px);
        /* Bobs up 5px at the midpoint */
    }
}

/* ==========================================================================
   13. FOOTER LOGO DIVIDER (Winged 4px Lines) & COPYRIGHT
   ========================================================================== */
.footer-logo-divider,
.menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    margin: 3rem auto 2rem auto;
    padding: 0 clamp(1rem, 5vw, 4rem);
    gap: 2rem;
    /* Distance between the logo edge and where the lines start */
}

.menu-header h1,
body .menu-header {
    margin-bottom: 10px;
}

/* The 4px Cream Horizontal Extended Lines */
.divider-line {
    flex: 1;
    /* Instructs both lines to expand completely to the edge of the screen */
    height: 4px;
    background-color: var(--color-accent);
    /* #FCFCD4 Cream Variable */
}

.footer-logo-center {
    flex-shrink: 0;
}

.footer-logo-center img {
    display: block;
    max-width: 158px;
    /* Matching your main header setup dimension rules */
    height: auto;
}

/* Copyright Row Styling */
.footer-copyright {
    text-align: center;
    width: 100%;
    padding-bottom: 2rem;
}

.footer-copyright p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.7;
    /* Subtly subdues the legal text */
    letter-spacing: 0.05em;
    margin: 0;
}

/* Helper fix to make map icon stay side-by-side cleanly */
.inline-flex {
    display: inline-flex !important;
    white-space: nowrap;
}

.banner-hero-image img {
    height: 50vw;
    width: 100%;
    object-fit: cover;
}

.banner-text-center p {
    width: 75%;
    margin: auto;
    font-size: 1.6vw;
    margin-bottom: 2vw;
}

.banner-text-center {
    border-bottom: 2px solid var(--color-cream-btn);
    padding: 1rem clamp(1rem, 4vw, 4rem);
}

.dining-left-image img {
    max-width: 50vw;
    height: 50vw;
}

.dining-right-content {
    max-width: 500px;
    width: 100%;
}

.menu-categories-nav p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.menu-categories-nav p button {
    background-color: unset;
    border: unset;
    flex: 1 1 0%;
    max-width: 110px;
    width: 100%;
    line-height: 28px;
}

.menu-categories-nav p button.active {
    border-bottom: 2px solid var(--color-accent);
}

.menu-categories-nav p button svg {
    width: 50px;
    height: 50px;
}

.menu-categories-nav p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.menu-categories-nav p span {
    font-size: 22px;
    color: var(--color-cream-btn);
}

.menu-item-card {
    position: relative;
}

.menu-item-card img{
    width: 100%;
    max-height: 25vw;
    border-radius: 12px 12px 0px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.menu-item-card {
    width: 100%;
    border-radius: 12px 12px 0px 0;
    display: flex;
    flex-direction: column;
    gap: o;
}
.menu-items-grid {
    row-gap: 0;
}
.menu-item-card img {
    object-fit: cover;
}
.menu-item-card .menu-item-meta {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.menu-item-card .menu-item-meta p{margin-bottom: 0;font-family: var(--font-heading);font-size:1.2vw;color: var(--color-primary);}
.menu-item-card .menu-item-meta {
    padding: 10px;
    background-color: #FCFCD4;
    border-radius: 0 0 12px 12px;
    color: #000000;
}

.menu-item-card .menu-item-meta h3 {

    color: #000000;
    font-size: 1.8vw;

}

.menu-categories-nav {
    margin-bottom: 5vw;
    border-bottom: 4px solid var(--color-accent);
    padding-bottom: 2vw;
    padding-top: 2vw;
}

.menu-item-grid {
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: auto;
}

button.menu-toggle-btn {
    font-size: 1.8vw;
    text-transform: uppercase;
    border: 2px solid var(--color-accent);
    text-align: center;
    justify-content: center;
    display: flex;
    margin: auto;
    padding: 10px 30px;
    background: none;
    color: #ffffff;
    font-family: 'Yusei Magic';
    border-radius: 6px;
}
.wpcf7-response-output{
    position: absolute;
  bottom: -5vw;
  font-size: 1.6vw;
}
@media screen and (max-width:768px) {
    .site-logo img {
        width: 100%;
        max-width: 50px;
    }

    .header-grid .grid-center {
        justify-content: left;
    }

    .grid-left,
    .grid-right {
        display: none;
    }

    .dining-container {
        flex-direction: column;
        padding: 10px;
    }

    .menu-items-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-item-card img{
         max-width: 100%;
        width: 100%;
        max-height: 180px;
    }
    .menu-item-card {
        max-width: 100%;
        width: 100%;
    }

    .menu-item-card .menu-item-meta h3 {
        font-size: 3.8vw;
    }

    .menu-categories-nav p {
        margin: 20px 0;
        justify-content: left;
        gap: 30px;
    }

    .menu-categories-nav {
        overflow: scroll;
    }

    .banner-text-center h1 {
        font-size: 32px
    }

    .banner-text-center p {
        width: 100%;
        font-size: 2vw;
        margin-bottom: 2vw;
    }

    .banner-text-center {
        padding-top: 15px;
    }

    .banner-hero-image img {
        height: 70vw;
    }

    button.menu-toggle-btn {
        font-size: 3.5vw;
    }

    .menu-categories-nav p br {
        display: none;
    }

    .whytable-flex {
        flex-direction: column-reverse;
    }

    body .whytable-section {
        padding-top: 50px;
    }

    body .whytable-flex .whyimage-col img.whymain-img {
 		bottom: 0;
        width: 100%;
        border-radius: 8px;
    }

    body .whycontent-col {
        bottom: 50px;
        position: relative;
    }

    body h2.whytitle {
        font-size: 28px;
        text-transform: uppercase;
        line-height: 42px;
    }

    body .whydescription li {
        font-size: 3.8vw;

    }

    body .whyaction a {
        font-size: 3.5vw;
        padding: 10px 20px;
    }

    .banner-text-center p {
        font-size: 4vw;
        margin-bottom: 4vw;
    }

    .wpcf7-response-output{
    bottom: -5vw;
    font-size: 2.8vw;
    }

    .dining-left-image img {
        max-width: 100%;
        max-height: 450px;
        height: 100%;
    }

    body .dining-right-content p {
        font-size: 4vw;
    }

    .reserve-table-flex {
        flex-direction: column-reverse
    }

    .reserve-table-flex {
        position: relative;
    }

    body .reserve-table-flex img,
    .reserve-image-col {
        display: none;
    }

    body .reserve-form-container form>div>p,
    body .reserve-form-container form>div>p input,
    body .reserve-form-container form>div>p select,
    section.reserve-table-section input[type="submit"] {
        max-width: 200px;
        max-height: 40px;
        width: 100%;
        height: 100%;
        font-size: 12px;
    }

    body .reserve-table-section>div {
        padding: 50px 0;
    }

    body .reserve-form-container form p input::placeholder {
        font-size: 12px;
    }

    body .reserve-table-flex>div.reserve-content-col {
        margin: 20px;
    }

    body .follow-us-header svg {
        width: 35px;
        height: 35px;
    }

    body .follow-us-header h2 {
        font-size: 28px;
    }

    body .reserve-form-container form>p {
        margin-bottom: 0;
    }

    body .follow-us-section {
        margin-top: 50px;
        background-position: 65%;
    }

    body .follow-us-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .follow-us-gallery p:nth-last-child(-n+2) {
        display: none;
    }

    body .reserve--bg-overlay {
        opacity: 0.2;
        z-index: 0;
    }

    body .follow-us-header {
        gap: 1rem;
    }

    .menu-mob {
        height: 4px;
        background-color: var(--color-accent);
        display: block;
        transition: all .3s ease;
    }

    .menu-mob-top {
        width: 50px;
    }

    .menu-mob-bottom {
        width: 30px;
        margin-left: auto;
    }

    body .nav-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        cursor: pointer;
    }

    .header-grid {
        justify-content: space-between;
        display: flex;
    }

    .nav-mobile.active {
        position: relative;
    }

    .nav-mobile.active .menu-mob-top {
        transform: translateY(7px) rotate(45deg);
        width: 50px;
    }

    .nav-mobile.active .menu-mob-bottom {
        transform: translateY(-7px) rotate(-45deg);
        width: 50px;
        margin-left: 0;
    }

    body.nav-active .grid-left,
    header.active .grid-left {
        display: block;
        transition: all .3s ease;
        ;
    }

    body.nav-active {
        overflow: hidden;
    }

    .site-header {
        position: relative;
    }

    body.nav-active .grid-left .header-nav ul {
        display: flex;
        flex-direction: column;
    }

    .grid-left {
        position: absolute;
        top: 94px;
        left: 0;
        padding: 10px;
        background-color: #1f2a44fa;

        opacity: 0;
        visibility: hidden;
        transform: translateX(-30px);

        transition: opacity .3s ease,
            transform .3s ease,
            visibility .3s ease;
            width: 100%;
            height: 100vh;
            text-align: center;
            text-transform: uppercase;
            font-family: var(--font-heading);
    }

    body.nav-active .grid-left {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    body.nav-active .grid-left .header-nav ul {
        display: flex;
        flex-direction: column;
    }
    .grid-left .header-nav ul li a{
        font-family: var(--font-heading);
        font-size: 32px;
    }
    body.nav-active {
        overflow: hidden;
    }
    body #offers .best-offer-wrapper{
        width: 100%;
        margin-top: 25px;
    }
    body .menu-item-card .menu-item-meta p{font-size: 2.8vw;}
    .menu-categories-nav p span{font-size: 3.8vw;}
}

.hide-desktop {
    display: none;
}

.whytable-flex .whycontent-col {
    flex: 2 1 0%;
    margin: 4vw 0;
}

.whytable-flex .whyimage-col {
    flex: 4 1 0%;
}

.whydescription ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    list-style-type: none;
}

.dining-right-content p {
    font-size: 1.6vw;
}

.whydescription li {
    margin-bottom: 0.5rem;
    font-size: 1.6vw;
    font-family: Inter;
}

.whytable-flex .whyimage-col img.whymain-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    bottom: 0px;
}

.whytable-flex {
    background-color: #0000007c;
    position: relative;
}

h2.whytitle {
    font-size: 3.5vw;
    margin-bottom: 1rem;
    line-height: 5.5vw;
}

.whyaction a {
    padding: 10px 30px;
    border: 2px solid var(--color-accent);
    font-family: 'Yusei Magic';
    text-transform: uppercase;
    margin-top: 20px;
    border-radius: 6px;
    font-size: 1.8vw;
}

.reserve-image-col img {
    height: 100%;
    width: 100%;
}

.reserve-table-flex {
    width: 85%;
    height: 80%;
    margin: auto;
}

.reserve-table-section>div {
    padding: 5vw;
}

.reserve-form-container form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 equal columns per grid row */
    gap: 10px;
    width: 100%;
}

.reserve-table-flex {
    background-color: #005B8D;
    border-radius: 12px;
}

.reserve-form-container form>div>p,
.reserve-form-container form>div>p input {
    max-width: 20vw;
    width: 100%;

}

.reserve-table-flex>div {
    flex: 1;
    min-width: 0;
    z-index: 9;
}

.reserve-table-flex>div.reserve-content-col {
    z-index: 99;
    margin: 5vw 0vw 2vw 2vw;
}

.reserve-table-flex img {
    object-fit: cover;
    display: block;
}

.reserve-form-container input,
.reserve-form-container select {
    height: 5vw;
    border-radius: 6px;
    width: 100%;
    padding: 10px;
    background-color: var(--color-cream-btn);
}

.reserve-table-section {
    background-size: cover;
    position: relative;
    background-position: center center;
}

section.reserve-table-section p input,
section.reserve-table-section p select {
    font-size: 16px;
    font-family: yusei magic, sans-serif;
}

section.reserve-table-section p input:focus-visible,
section.reserve-table-section p select:focus-visible {
    outline: 2px solid var(--color-accent);
    font-weight: 500;
    font-family: yusei magic, sans-serif;
}

section.reserve-table-section p input::placeholder,
section.reserve-table-section p select::placeholder {
    font-size: 1.6vw;
    font-family: yusei magic, sans-serif;
    color: #000;

}

section.reserve-table-section input[type="submit"] {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-family: yusei magic, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border: unset;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.reserve--bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.5;
    z-index: 0;
}

.follow-us-header h2 {
    font-size: 3.5vw;
    margin-bottom: 0.5rem;
    line-height: 5.5vw;
    text-align: center;
    color: var(--color-cream-btn);
}

.follow-us-header svg {
    width: 50px;
    height: 50px;
}

.follow-us-section {
    background-image: url(/wp-content/uploads/2026/07/Vector-7.svg);
    background-image: url(/wp-content/uploads/2026/07/Vector-7.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
}

.follow-us-gallery {
    padding-bottom: 20px;
}

.follow-us-gallery p {
    margin-bottom: 0px;
}

.follow-us-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer-card{
    position: relative;
}
#offers .best-offer-wrapper{width: 75%;margin:50px auto;}
#offers .owl-item{margin-bottom: 5vw;}
.offer-content{
    position: absolute;
    top: 30px;
    left: 20px;
    text-align: left;
    background-color: #61515178;
    padding: 10px;
    border-radius: 8px;
}
.offer-image img{
    width:100%;
    display:block;
    border-radius: 12px;
    box-shadow:
        0 8px 20px rgba(0,0,0,.18),
        0 2px 6px rgba(0,0,0,.12);

}
.menu-header.best-offer{
    padding: unset;
}
.offer-pricing{
    position: absolute;
  bottom: -5vw;
  width: 50%;
  left: 20px;
  height: 10vw;
  width: 10vw;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4vw;
  font-family: Yusei magic;
}
.best-offer-wrapper{
    display:flex;
    flex-wrap:wrap;
    margin-bottom: 0vw;
    /* padding: 0 20px; */
}
.offer-content p{
      font-family: Inter;
    width: 75%;
}
@media(max-width:768px){
    .owl-carousel .owl-item img{max-height: 270px;min-height:270px;height: 100%;object-fit: cover;}
    .offer-card{
        width:100%;
        margin-bottom: 50px;
    }
    .offer-pricing{
        height: 110px;
        width: 110px;
        font-size: 16px;
        bottom: -50px;
        padding: 10px;
    }
    .offer-content{
        width: 90%;
    }
    .site-header.active .grid-left{z-index: 99;}
    .menu-header h1{font-size: 32px;}
    .footer-col {padding-right: 0rem;}
    .footer-col h3{font-size: 22px;}
    .footer-col p,.footer-col a,.footer-col ul li{font-size: 16px;}
     body .whyimage-col{
        bottom: 30px;
        width: 100%;
        border-radius: 12px;
        padding: 10px;
    }
}

.banner-text-center h1,.menu-header h1,.reserve-title,.follow-us-header h2{
    text-transform: uppercase;
}
main#primary{overflow:hidden;}
.mfp-container .white-popup{
    display: flex;
}
body .mfp-close-btn-in .mfp-close{
    color: #ffffff;
}
.whyimage-col{
    bottom: 80px;
    position: relative;
    border-radius: 12px 0 0 12px;
}
.whymain-img,
.whymain-img video,
video.whymain-img {
    max-height: 500px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    bottom:50px;
}