:root {
    --navy: #071A2F;
    --white: #FFFFFF;
    --dark-green: #123D2C;
    --gold: #C9A45C;
    --bg: #F7F5F2;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--navy);
    background-color: var(--bg);
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

a {
    color: inherit;
}

/* ---------- Navbar ---------- */
.site-navbar {
    background-color: var(--navy);
    padding: 0.9rem 0;
}

.site-navbar .navbar-brand {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
}

.site-navbar__logo {
    height: 56px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.15s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--gold);
}

.site-navbar .btn-gold {
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.5rem 1.3rem;
}

.site-navbar .btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

@media (min-width: 992px) {
    .site-navbar .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ---------- Page hero (generic, used by Menu/About/Gallery/Contact/Reservations) ---------- */
.page-hero {
    background-color: var(--navy);
    color: var(--white);
    padding: 4.5rem 1.5rem 3.5rem;
    text-align: center;
}

.page-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.page-hero__title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 0.75rem;
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- Home page hero (photo background, Home page only) ---------- */
.home-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--white);
    padding: 4.5rem 1.5rem 3.5rem;
}

.home-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-hero__gallery {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
    background-color: var(--navy);
}

.home-hero__gallery-row {
    display: flex;
    flex: 1;
    gap: 6px;
    width: max-content;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.home-hero__gallery-row--left {
    animation-name: home-hero-scroll-left;
}

.home-hero__gallery-row--right {
    animation-name: home-hero-scroll-right;
}

.home-hero__gallery-cell {
    flex-shrink: 0;
    width: 280px;
    height: 100%;
}

.home-hero__gallery-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #0f2438;
}

@keyframes home-hero-scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes home-hero-scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__gallery-row {
        animation: none;
    }
}

@media (max-width: 576px) {
    .home-hero__gallery-cell {
        width: 170px;
    }
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 26, 47, 0.2) 0%, rgba(7, 26, 47, 0.15) 35%, rgba(7, 26, 47, 0.3) 70%, rgba(7, 26, 47, 0.55) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.home-hero .page-hero__eyebrow,
.home-hero .page-hero__title,
.home-hero .page-hero__subtitle {
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75), 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ---------- Buttons ---------- */
.btn-gold {
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.75rem 2rem;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline-navy {
    background-color: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.btn-outline-navy:hover {
    background-color: var(--navy);
    color: var(--white);
}

/* ---------- Sections ---------- */
.section {
    padding: 4rem 1.5rem;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* ---------- Menu ---------- */
.menu-category {
    max-width: 900px;
    margin: 0 auto 3.5rem;
}

.menu-category__title {
    font-size: 1.6rem;
    color: var(--dark-green);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e1d8;
}

.menu-item__name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.menu-item__description {
    color: #6a6a6a;
    font-size: 0.9rem;
}

.menu-item__price {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.1rem;
    white-space: nowrap;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-grid picture {
    display: block;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #eae6db;
}

/* ---------- Smooth image loading ---------- */
.img-fade {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.img-fade.is-loaded {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .img-fade {
        transition: none;
        opacity: 1;
    }
}

/* ---------- Menu item thumbnails ---------- */
.menu-item__thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    background-color: #eae6db;
    flex-shrink: 0;
}

/* ---------- Forms ---------- */
.site-form {
    max-width: 560px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* ---------- Footer (shared with Coming Soon page styling) ---------- */
.site-footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logo {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.site-footer__columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
}

.site-footer__col {
    min-width: 200px;
}

.site-footer__col-label {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.site-footer__line {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.site-footer__line i {
    color: var(--gold);
    margin-right: 0.4rem;
    width: 1rem;
    display: inline-block;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.2s ease;
}

.social-icons a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.site-footer__copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}
