/* ═══════════════════════════════════════════════
   CORAL COAST — SHARED RESPONSIVE STYLESHEET
   Logo palette:
   --deep   #071828   darkest bg
   --navy   #0d2b50   ring/bg
   --ocean  #1565a8   water blue
   --teal   #1a9eb8   wave
   --sky    #37c6d0   wave highlight
   --flame  #d94217   sunset/CTA
   --orange #f06325   glow
   --gold   #f5c842   text highlight
═══════════════════════════════════════════════ */

:root {
    --deep: #071828;
    --navy: #0d2b50;
    --ocean: #1565a8;
    --teal: #1a9eb8;
    --sky: #37c6d0;
    --flame: #d94217;
    --orange: #f06325;
    --gold: #f5c842;
    --white: #ffffff;
    --card: rgba(21, 101, 168, 0.09);
    --border: rgba(55, 198, 208, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--deep);
    color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--deep);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 4px;
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
    background: rgba(7, 24, 40, 0.97) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 200, 66, 0.18);
    padding: 10px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}

.nb-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nb-brand img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 200, 66, 0.4);
    flex-shrink: 0;
}

.nb-brand .bt1 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.35rem;
    color: var(--white);
    display: block;
    line-height: 1.1;
}

.nb-brand .bt2 {
    font-size: 0.58rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 8px 12px !important;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active-page {
    color: var(--gold) !important;
}

.navbar-nav .nav-link.active-page {
    border-bottom: 2px solid var(--gold);
}

.nav-cta {
    background: linear-gradient(135deg, var(--flame), var(--orange)) !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 8px 18px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 18px rgba(217, 66, 23, 0.4);
    transition: transform 0.2s, box-shadow 0.2s !important;
    border-bottom: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(217, 66, 23, 0.6) !important;
}

.navbar-toggler {
    border-color: rgba(245, 200, 66, 0.5);
    padding: 5px 9px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* Mobile nav spacing */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 16px 0 10px;
    }

    .navbar-nav .nav-link {
        padding: 10px 16px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-nav .nav-link.active-page {
        border-bottom: 1px solid var(--gold);
    }

    .nav-cta {
        margin: 10px 16px 0 !important;
        display: block;
        text-align: center;
        border-bottom: none !important;
    }
}

/* ══════════════════════════════════════════
   PAGE BANNER (inner pages)
══════════════════════════════════════════ */
.page-banner {
    padding: 130px 0 65px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, #071828 0%, #0d2b50 50%, #071828 100%);
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60% 60% at 75% 20%, rgba(240, 99, 37, 0.15) 0%, transparent 65%),
        radial-gradient(ellipse 45% 50% at 20% 80%, rgba(26, 158, 184, 0.12) 0%, transparent 60%);
}

.page-banner .inner {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
}

.page-banner h1 span {
    color: var(--gold);
}

.page-banner .breadcrumb-bar {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.page-banner .breadcrumb-bar a {
    color: var(--teal);
    text-decoration: none;
}

.page-banner .breadcrumb-bar a:hover {
    color: var(--gold);
}

.banner-desc {
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.75;
}

.banner-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
}

@media (max-width: 767px) {
    .page-banner {
        padding: 110px 0 50px;
    }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-flame {
    background: linear-gradient(135deg, var(--flame), var(--orange));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 32px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(217, 66, 23, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-flame:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(217, 66, 23, 0.6);
    color: #fff;
}

.btn-teal {
    background: linear-gradient(135deg, var(--teal), var(--sky));
    color: var(--deep);
    border: none;
    border-radius: 50px;
    padding: 13px 32px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(26, 158, 184, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-teal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(26, 158, 184, 0.55);
    color: var(--deep);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-ghost:hover {
    background: var(--gold);
    color: var(--deep);
}

@media (max-width: 480px) {

    .btn-flame,
    .btn-teal,
    .btn-ghost {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* ══════════════════════════════════════════
   SECTION LABELS
══════════════════════════════════════════ */
.eyebrow {
    display: inline-block;
    background: rgba(245, 200, 66, 0.1);
    border: 1px solid rgba(245, 200, 66, 0.35);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.15;
}

.sec-title span {
    color: var(--gold);
}

.title-rule {
    width: 52px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--flame), var(--gold));
    margin: 14px auto 0;
}

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.card-dark {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
}

.card-dark:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 55px rgba(26, 158, 184, 0.18);
    border-color: rgba(245, 200, 66, 0.35);
}

/* ══════════════════════════════════════════
   MENU ITEMS
══════════════════════════════════════════ */
.mrow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 10px;
    transition: all 0.22s;
}

.mrow:hover {
    background: rgba(55, 198, 208, 0.06);
    border-color: rgba(55, 198, 208, 0.25);
    transform: translateX(4px);
}

.mrow h5 {
    font-weight: 800;
    font-size: 0.96rem;
    color: var(--white);
    margin-bottom: 3px;
}

.mrow p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.mprice {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 2px;
}

@media (max-width: 480px) {
    .mrow {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mprice {
        font-size: 1rem;
    }
}

.mcat {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 14px;
}

.mcat::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(26, 158, 184, 0.4), transparent);
}

.nbox {
    background: rgba(245, 200, 66, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 12px 16px;
    margin: 12px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    line-height: 1.65;
}

/* Responsive price table */
.ptable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
}

.ptable thead tr {
    background: rgba(245, 200, 66, 0.1);
}

.ptable thead th {
    color: var(--gold);
    font-weight: 800;
    padding: 11px 14px;
    font-size: 0.83rem;
}

.ptable tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.ptable tbody tr:hover {
    background: rgba(55, 198, 208, 0.05);
}

.ptable tbody td {
    padding: 11px 14px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.ptable tbody td:first-child {
    font-weight: 700;
    color: var(--white);
}

.ptable tbody td.price {
    color: var(--gold);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 575px) {

    .ptable thead th,
    .ptable tbody td {
        padding: 9px 10px;
        font-size: 0.8rem;
    }
}

/* ══════════════════════════════════════════
   CONTACT INFO ROWS
══════════════════════════════════════════ */
.ci {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ci:last-of-type {
    border-bottom: none;
}

.ci-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--flame), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 5px 18px rgba(217, 66, 23, 0.32);
}

.ci-text h5 {
    color: var(--gold);
    font-weight: 800;
    font-size: 0.76rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ci-text p,
.ci-text a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
    text-decoration: none;
}

.ci-text a:hover {
    color: var(--gold);
}

/* ══════════════════════════════════════════
   STATS PILLS
══════════════════════════════════════════ */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 13px 18px;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-pill .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--gold);
}

.stat-pill .lbl {
    font-size: 0.68rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

@media (max-width: 480px) {
    .stats-row {
        gap: 10px;
    }

    .stat-pill {
        min-width: calc(50% - 5px);
        flex: none;
        padding: 11px 14px;
    }

    .stat-pill .num {
        font-size: 1.35rem;
    }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
    background: #030b14;
    border-top: 1px solid rgba(245, 200, 66, 0.12);
    padding: 50px 0 22px;
}

.footer-logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.86rem;
    line-height: 1.75;
}

.flink {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.86rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s, padding-left 0.2s;
}

.flink:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-col-title {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.78rem;
    margin-bottom: 16px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
    margin-right: 7px;
}

.social-btn:hover {
    background: var(--flame);
    border-color: var(--flame);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 30px;
    padding-top: 18px;
}

/* ══════════════════════════════════════════
   FLOATING CALL BUTTON
══════════════════════════════════════════ */
.float-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, var(--flame), var(--orange));
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 0.88rem;
    box-shadow: 0 7px 28px rgba(217, 66, 23, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s;
    animation: callpulse 3s infinite;
    max-width: calc(100vw - 40px);
}

.float-call:hover {
    transform: scale(1.06);
    color: #fff;
}

@keyframes callpulse {

    0%,
    100% {
        box-shadow: 0 7px 28px rgba(217, 66, 23, 0.55);
    }

    50% {
        box-shadow: 0 7px 44px rgba(217, 66, 23, 0.8), 0 0 0 8px rgba(217, 66, 23, 0.1);
    }
}

@media (max-width: 480px) {
    .float-call {
        padding: 11px 16px;
        font-size: 0.82rem;
        bottom: 16px;
        right: 16px;
    }
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.shown {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════
   HIGHLIGHTS BAR
══════════════════════════════════════════ */
.highlights-bar {
    background:
        radial-gradient(circle at 12% 15%, rgba(240, 99, 37, 0.16), transparent 35%),
        radial-gradient(circle at 90% 80%, rgba(55, 198, 208, 0.14), transparent 38%),
        linear-gradient(180deg, #071a2d 0%, #060f1c 100%);
    padding: 44px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hl-item {
    text-align: center;
    padding: 18px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hl-item:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 200, 66, 0.36);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hl-item i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.hl-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    letter-spacing: 0.2px;
    line-height: 1.45;
    margin: 0;
}

@media (max-width: 767px) {
    .highlights-bar {
        padding: 32px 0;
    }

    .hl-item {
        min-height: 120px;
        padding: 16px 10px;
    }

    .hl-item i {
        font-size: 1.7rem;
    }

    .hl-item p {
        font-size: 0.88rem;
    }
}

/* ══════════════════════════════════════════
   GALLERY ITEMS
══════════════════════════════════════════ */
.gitem {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.gitem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.menu-gallery-item {
    aspect-ratio: auto;
    height: 400px;
    border-radius: 14px;
}

.gitem:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 48px rgba(26, 158, 184, 0.25);
}

.gitem:hover img {
    transform: scale(1.08);
}

.gitem .goverlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 24, 40, 0.82);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 14px;
    text-align: center;
}

.gitem:hover .goverlay {
    opacity: 1;
}

.gitem .goverlay h5 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0 0 4px;
}

.gitem .goverlay p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    margin: 0;
}

.gallery-feature-grid .gallery-feature-card {
    aspect-ratio: 4/3;
    border-radius: 18px;
    border: 1px solid rgba(245, 200, 66, 0.2);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.gallery-feature-grid .gallery-feature-card .goverlay {
    background: linear-gradient(180deg, rgba(7, 24, 40, 0.2) 0%, rgba(7, 24, 40, 0.86) 70%);
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    padding: 16px;
}

.gallery-feature-grid .gallery-feature-card .goverlay h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.gallery-feature-grid .gallery-feature-card .goverlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 480px) {
    .gitem {
        font-size: 2.6rem;
    }

    .menu-gallery-item {
        height: 170px;
    }

    .gitem .goverlay h5 {
        font-size: 0.82rem;
    }

    .gitem .goverlay p {
        font-size: 0.72rem;
    }
}

/* ══════════════════════════════════════════
   REVIEW CARDS
══════════════════════════════════════════ */
.review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 158, 184, 0.15);
}

.review-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
}

.review-author {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 800;
    font-size: 0.86rem;
}

.review-source {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.73rem;
}

/* ══════════════════════════════════════════
   CTA STRIP
══════════════════════════════════════════ */
.cta-strip {
    padding: 60px 0;
    background: linear-gradient(135deg, #0d2b50, #1565a8);
}

.cta-strip h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    font-weight: 900;
}

.cta-strip h3 span {
    color: var(--gold);
}

.cta-strip .sub {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-size: 0.93rem;
}

@media (max-width: 767px) {
    .cta-strip {
        text-align: center;
    }

    .cta-strip .cta-btns {
        margin-top: 20px;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════
   HOURS TABLE
══════════════════════════════════════════ */
.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-table td {
    padding: 10px 0;
    font-size: 0.88rem;
}

.hours-table td:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hours-table td:last-child {
    color: var(--gold);
    font-weight: 700;
    text-align: right;
}

/* ══════════════════════════════════════════
   MENU PAGE TABS
══════════════════════════════════════════ */
.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 44px;
}

.mtab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 9px 18px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.22s;
    white-space: nowrap;
}

.mtab:hover {
    border-color: rgba(245, 200, 66, 0.4);
    color: var(--gold);
}

.mtab.active {
    background: linear-gradient(135deg, var(--flame), var(--orange));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 22px rgba(217, 66, 23, 0.4);
}

.mpanel {
    display: none;
    animation: fadeUp 0.4s ease;
}

.mpanel.active {
    display: block;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 575px) {
    .mtab {
        font-size: 0.76rem;
        padding: 8px 14px;
    }
}

/* ══════════════════════════════════════════
   ABOUT PAGE FEATURE ROWS
══════════════════════════════════════════ */
.feat-row {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.feat-icon-sm {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   MAP
══════════════════════════════════════════ */
.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.map-wrap iframe {
    width: 100%;
    display: block;
    border: 0;
}

/* ══════════════════════════════════════════
   LOGO FLOAT ANIMATION
══════════════════════════════════════════ */
@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.logo-float {
    animation: floatLogo 5s ease-in-out infinite;
}

/* ══════════════════════════════════════════
   HERO SECTION (home only)
══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(155deg, #071828 0%, #0d2b50 40%, #102e58 65%, #071828 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 65% 55% at 72% 18%, rgba(240, 99, 37, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 45% 45% at 18% 85%, rgba(26, 158, 184, 0.14) 0%, transparent 60%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.logo-ring {
    display: inline-block;
    border-radius: 50%;
    padding: 5px;
    background: conic-gradient(from 0deg, var(--gold), var(--flame), var(--teal), var(--ocean), var(--gold));
    box-shadow: 0 0 55px rgba(245, 200, 66, 0.35), 0 0 110px rgba(26, 158, 184, 0.2);
}

.logo-ring img {
    display: block;
    border-radius: 50%;
    object-fit: cover;
    background: var(--navy);
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(3rem, 10vw, 5.8rem);
    line-height: 1.05;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(0.65rem, 2vw, 0.78rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 800;
    margin-top: 4px;
}

.hero-addr {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.86rem;
    margin-top: 10px;
}

.hero-addr i {
    color: var(--flame);
    margin-right: 6px;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 90px;
    }

    .hero-text-col {
        text-align: center !important;
    }

    .hero-text-col .stats-row {
        justify-content: center;
    }

    .hero-text-col .hero-btns {
        justify-content: center;
    }

    .logo-ring img {
        width: 220px !important;
        height: 220px !important;
    }
}

@media (max-width: 575px) {
    .logo-ring img {
        width: 180px !important;
        height: 180px !important;
    }

    .hero {
        min-height: auto;
        padding: 90px 0 50px;
    }
}

/* ══════════════════════════════════════════
   ABOUT PAGE STORY TEXT
══════════════════════════════════════════ */
.story-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    font-size: 0.96rem;
}

.story-text+.story-text {
    margin-top: 14px;
}

/* ══════════════════════════════════════════
   HOME PAGE VISUAL BOOST
   Bigger icon cards + clearer logo
══════════════════════════════════════════ */

/* Improve navbar logo clarity and prominence */
.nb-brand img {
    height: 58px;
    width: 58px;
    border: 2px solid rgba(245, 200, 66, 0.65);
    box-shadow: 0 0 0 3px rgba(13, 43, 80, 0.7), 0 8px 20px rgba(0, 0, 0, 0.35);
    filter: contrast(1.08) saturate(1.12) brightness(1.04);
}

/* Make hero logo cleaner and more attractive */
.logo-ring {
    padding: 8px;
    box-shadow: 0 0 70px rgba(245, 200, 66, 0.42), 0 0 130px rgba(26, 158, 184, 0.28);
}

.logo-ring img {
    width: 300px !important;
    height: 300px !important;
    border: 3px solid rgba(255, 255, 255, 0.2);
    filter: contrast(1.1) saturate(1.14) brightness(1.05);
}

/* Main page menu-preview icons bigger */
.card-dark>div[style*="font-size"] {
    font-size: 3.1rem !important;
    margin-bottom: 16px !important;
    line-height: 1;
}

/* Main page card titles and text below icons bigger */
.card-dark h4[style*="Playfair Display"] {
    font-size: 1.35rem !important;
    margin-bottom: 10px !important;
}

.card-dark p[style*="line-height:1.7"] {
    font-size: 1rem !important;
    line-height: 1.85 !important;
    color: rgba(255, 255, 255, 0.78) !important;
}

@media (max-width: 991px) {
    .logo-ring img {
        width: 240px !important;
        height: 240px !important;
    }

    .card-dark>div[style*="font-size"] {
        font-size: 2.75rem !important;
    }

    .card-dark h4[style*="Playfair Display"] {
        font-size: 1.2rem !important;
    }

    .card-dark p[style*="line-height:1.7"] {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 575px) {
    .logo-ring img {
        width: 200px !important;
        height: 200px !important;
    }

    .nb-brand img {
        height: 52px;
        width: 52px;
    }
}

@media (max-width: 991px) {
    .menu-gallery-item {
        height: 200px;
    }
}