/* ==========================================
   LOCAL FONTS (Montserrat & Poppins)
   ========================================== */

/* Montserrat */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('../asset/fonts/montserrat-v31-latin-100.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../asset/fonts/montserrat-v31-latin-200.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../asset/fonts/montserrat-v31-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../asset/fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../asset/fonts/montserrat-v31-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../asset/fonts/montserrat-v31-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../asset/fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../asset/fonts/montserrat-v31-latin-800.woff2') format('woff2');
}

/* Poppins */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url('../asset/fonts/poppins-v21-latin-100.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../asset/fonts/poppins-v21-latin-200.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../asset/fonts/poppins-v21-latin-300.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../asset/fonts/poppins-v21-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../asset/fonts/poppins-v21-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../asset/fonts/poppins-v21-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../asset/fonts/poppins-v21-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../asset/fonts/poppins-v21-latin-800.woff2') format('woff2');
}




:root {
    /* Brand Theme Colors matched directly to the UI images */
    --bg-color: #F8F5EE;         /* Warm Ivory / Cream page canvas */
    --bg-alt: #EFE9DC;           /* Soft muted warm cream for alternating sections */
    --dark-pill: #1D3A2A;        /* Signature Deep Coastal Forest Green (Primary Base) */
    --dark-pill-hover: #12241B;  /* Deeper green for hover states */
    
    --accent-gold: #BFA069;      /* Warm Muted Brass / Gold from hero button & tags */
    --accent-gold-hover: #AA8B54;/* Darker brass hover */
    --accent-red: #BFA069;       /* Accent fallback */
    --accent-orange: #BFA069;    /* Accent fallback */
    
    --text-dark: #242B27;        /* Soft Charcoal Text */
    --text-muted: #677069;       /* Muted Charcoal / Olive-Gray */
    --text-main: #FFFFFF;        /* Crisp White / Ivory text */
    
    --border-color: #E2DBD0;     /* Subtle cream border */
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}








/* ========================================================================== 
   White Rock Bistro - Floating Capsule Navbar Stylesheet
   ========================================================================== */

/* Keep navbar typography identical even when individual pages load other fonts. */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); */

.navbar-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 24px;
    transition: all 0.3s ease;
}

.nav-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(27, 53, 40, 0.94); /* Deep Coastal Forest Green */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(18, 36, 27, 0.35);
    border: 1px solid rgba(191, 160, 105, 0.3); /* Warm Brass Border */
    transition: all 0.3s ease;
}

/* Brand Title & Subtitle */
.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-height: 42px;
}

.logo-img {
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logo-container:hover .logo-img {
    transform: scale(1.03);
}

/* Tablet sizing */
@media (max-width: 1024px) {
    .logo-img {
        height: 36px;
    }

    .logo-container {
        min-height: 36px;
        height: 36px;
        justify-content: center;
    }
}

/* Mobile sizing */
@media (max-width: 480px) {
    .logo-img {
        height: 30px;
        max-width: 140px;
    }

    .logo-container {
        min-height: 30px;
        height: 30px;
    }
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    color: #E6EAE7;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.nav-link.active, 
.nav-link:hover {
    background-color: rgba(191, 160, 105, 0.18);
    color: var(--accent-gold, #BFA069);
}

.mobile-book-btn {
    display: none;
}

/* Right Action: Reserve Button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-book {
    background-color: var(--accent-gold, #BFA069);
    color: #1B3528;
    padding: 10px 22px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.btn-book:hover {
    background-color: var(--accent-gold-hover, #AA8B54);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--accent-gold, #BFA069);
    padding: 6px;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet & Mobile Screens (<= 1024px) */
@media (max-width: 1024px) {
    .navbar-wrapper {
        padding: 0 16px;
        top: 15px;
    }

    .nav-right .btn-book {
        display: none;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    /* Mobile Dropdown Drawer */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(27, 53, 40, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
        align-items: stretch;
        gap: 8px;
        border: 1px solid rgba(191, 160, 105, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        display: flex !important;
        animation: navSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav-link {
        width: 100%;
        color: #FFFFFF;
        padding: 12px 18px;
        font-size: 15px;
        border-radius: 8px;
        text-align: center;
    }

    .mobile-book-btn {
        display: block;
        background-color: var(--accent-gold, #BFA069) !important;
        color: #1B3528 !important;
        text-align: center;
        margin-top: 10px;
        font-weight: 700;
        border-radius: 30px;
    }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
    .navbar-wrapper {
        padding: 0 12px;
        top: 12px;
    }

    .nav-container {
        padding: 8px 16px;
        border-radius: 40px;
    }

    .logo-title {
        font-size: 15px;
    }

    .logo-subtitle {
        font-size: 8.5px;
    }

    .nav-links {
        top: 58px;
        padding: 16px;
    }
}

@keyframes navSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


















/* ==========================================================================
   White Rock Bistro - Footer Stylesheet (footer.css)
   Palette: Deep Coastal Forest Green (#1B3528 / #12241B) & Warm Brass (#BFA069)
   ========================================================================== */

.footer {
    background-color: var(--dark-pill, #12241B);
    color: var(--text-main, #FFFFFF);
    padding: 80px 8% 30px;
    border-top: 1px solid rgba(191, 160, 105, 0.25);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.1fr 1.1fr;
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Image Logo Handling */
.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    min-height: 46px;
}

.footer-logo img {
    height: 46px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.brand-description {
    font-family: var(--font-body, 'Karla', sans-serif);
    color: #CBD5CE;
    font-size: 14.4px; /* 0.9rem */
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 160, 105, 0.3);
    color: var(--accent-gold, #BFA069);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent-gold, #BFA069);
    color: var(--forest-dark, #12241B);
    transform: translateY(-3px);
}

/* Column Titles */
.footer-title {
    font-family: var(--font-heading, 'Fraunces', serif);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-main, #FFFFFF);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background-color: var(--accent-gold, #BFA069);
}

/* Links List */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    font-family: var(--font-body, 'Karla', sans-serif);
    color: #D6E0DA;
    font-size: 14.4px; /* 0.9rem */
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-gold, #BFA069);
    padding-left: 5px;
}

/* Contact Details */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 14px; /* 0.88rem */
    font-weight: 300;
    color: #D6E0DA;
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--accent-gold, #BFA069);
    margin-top: 3px;
    font-size: 15px;
}

.footer-contact-list a {
    color: #D6E0DA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--accent-gold, #BFA069);
}

/* Hours List */
.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-hours-list li {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 13.6px; /* 0.85rem */
    font-weight: 300;
    color: #D6E0DA;
    display: flex;
    justify-content: space-between;
    padding-bottom: 4px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.closed-text {
    color: var(--accent-gold, #BFA069);
    font-weight: 600;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.copyright {
    font-family: var(--font-body, 'Karla', sans-serif);
    color: #8C9990;
    font-size: 13.6px; /* 0.85rem */
    font-weight: 300;
}

/* Responsive Queries */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 5% 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}










/* ==========================================================================
   White Rock Bistro - Global CTA Section (global.css)
   ========================================================================== */

.global-cta-section {
    width: 100%;
    background-color: var(--bg-alt, #F8F5EE);
    padding: 100px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 1px solid var(--border-color, #E2DBD0);
}

.global-cta-container {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-cta-title {
    font-family: var(--font-heading, 'Fraunces', serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.18;
    color: var(--text-dark, #242B27);
    margin-bottom: 16px;
}

.global-cta-lead {
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted, #677069);
    margin-bottom: 36px;
}

.global-cta-btn {
    display: inline-block;
    background-color: var(--dark-pill, #1D3A2A);
    color: var(--text-main, #FFFFFF);
    padding: 14px 34px;
    border-radius: var(--radius, 2px);
    font-family: var(--font-body, 'Karla', sans-serif);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-pill, #1D3A2A);
}

.global-cta-btn:hover {
    background-color: var(--dark-pill-hover, #12241B);
    border-color: var(--dark-pill-hover, #12241B);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(18, 36, 27, 0.2);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .global-cta-section {
        padding: 70px 20px;
    }

    .global-cta-title {
        font-size: 32px;
    }

    .global-cta-lead {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .global-cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}