body {
    font-family: 'Roboto', sans-serif;
    background-color: #FDFDFD;
    color: #333;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #4A3F35;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

.custom-btn {
    background-color: #8D7B68;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.custom-btn:hover {
    background-color: #A4907C;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.navbar {
    transition: background-color 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 20px 0;
    background-color: transparent;
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.4s ease-in-out;
}

.navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar.scrolled .navbar-nav .nav-link,
.navbar.logo-is-small .navbar-nav .nav-link {
    color: #4A3F35;
}

.navbar.scrolled .navbar-nav .nav-link:hover,
.navbar.logo-is-small .navbar-nav .nav-link:hover {
    color: #8D7B68;
}

.navbar.scrolled .navbar-toggler-icon,
.navbar.logo-is-small .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74, 63, 53, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar .navbar-brand img {
    height: 150px;
    transition: height 0.4s ease-in-out;
}

.navbar.scrolled .navbar-brand img,
.navbar.logo-is-small .navbar-brand img {
    height: 52px;
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero-content .custom-btn {
    background-color: #FDFDFD;
    color: #4A3F35;
}

.hero-content .custom-btn:hover {
    background-color: #F8F4F0;
    color: #4A3F35;
}

/* --- NEW HERO ROTATOR STYLES --- */

.hero-media-stage {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

.hero-media-slot {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 800ms ease;
    overflow: hidden;
}

.hero-media-slot.is-active {
    opacity: 1;
}

.hero-media-slot .fg-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    z-index: 1;
}

.hero-media-slot .fg-media.fit-cover {
    object-fit: cover;
}

.hero-media-slot .fg-media.fit-contain {
    object-fit: contain;
}

.hero-media-slot .bg-blur {
    position: absolute;
    inset: -6%;
    width: 112%;
    height: 112%;
    object-fit: cover;
    object-position: center;
    filter: blur(24px) brightness(0.65) saturate(1.05);
    transform: scale(1.05);
    will-change: transform, filter;
    pointer-events: none;
    z-index: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-media-slot {
        transition: none;
    }
}

/* --- END HERO ROTATOR STYLES --- */

.our-story {
    background-color: #F8F4F0;
}

.our-story img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.our-story h2 {
    margin-bottom: 20px;
}

.our-story p {
    line-height: 1.8;
    color: #555;
}

.menu-item {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 5px;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-grid {
    margin: 0 auto;
}

.gallery-grid-sizer,
.gallery-item {
    width: 32%;
    margin-bottom: 1.5rem;
    padding: 0 5px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s, filter 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

@media (max-width: 992px) {

    .gallery-grid-sizer,
    .gallery-item {
        width: 48%;
    }
}

@media (max-width: 767px) {

    .gallery-grid-sizer,
    .gallery-item {
        width: 100%;
    }
}

.visit-us {
    background-color: #4A3F35;
    color: #fff;
}

.visit-us h2 {
    color: #fff;
}

.visit-us p {
    color: #ccc;
}

.visit-us .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #8D7B68;
}

#map-placeholder {
    width: 100%;
    height: 350px;
    border-radius: 5px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #888;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

footer .social-icons a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #8D7B68;
}

.modal {
    background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

#imageModal .image-modal-close {
    position: fixed;
    top: 20px;
    right: 20px;

    z-index: 1060;

    width: 44px;
    height: 44px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: none;

    color: #fff;
    font-size: 2rem;
    font-weight: normal;
    text-shadow: none;
    opacity: 0.8;

    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;

    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}

#imageModal .image-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: scale(1.1);
}

.promotion-popup-content {
    background-color: #F8F4F0;
    border-radius: 5px;
    border: none;
    text-align: center;
    padding: 20px;
}

.promotion-popup-content .modal-header {
    border-bottom: none;
    padding: 0;
}

.promotion-popup-content .modal-footer {
    border-top: none;
    justify-content: center;
}

.promotion-popup-content .modal-title {
    font-family: 'Playfair Display', serif;
    color: #4A3F35;
    width: 100%;
}

.promotion-popup-content .modal-body p {
    color: #555;
    margin-top: 15px;
}

.promotion-popup-content .custom-btn {
    background-color: #8D7B68;
    color: #fff;
}

.promotion-popup-content .custom-btn:hover {
    background-color: #A4907C;
}

.page-header {
    padding-top: 150px;
    padding-bottom: 70px;
    background-color: #F8F4F0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #4A3F35;
}

.floating-ig-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #8D7B68;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    z-index: 1000;
}

.floating-ig-btn:hover {
    background-color: #A4907C;
    color: #fff;
    transform: scale(1.1);
}

.custom-btn-delivery {
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-btn-delivery:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.postmates {
    background-color: #000000;
}

.ubereats {
    background-color: #06C167;
}

.doordash {
    background-color: #FF3008;
}

.menu-category {
    margin-bottom: 50px;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #4A3F35;
    border-bottom: 2px solid #A4907C;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.interactive-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.interactive-menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.interactive-menu-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.order-buttons .order-btn {
    background-color: #8D7B68;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.order-buttons .order-btn:hover {
    background-color: #4A3F35;
    color: #fff;
    text-decoration: none;
}

.order-online-section {
    padding: 50px 0;
}

.order-online-section .section-header {
    margin-bottom: 30px;
}

.menu-page-header {
    padding-top: 100px;
    padding-bottom: 25px;
}

.promotion-popup-content .close {
    position: absolute;
    top: 5px;
    right: 5px;

    width: 44px;
    height: 44px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.8rem;
    color: #000;
    opacity: 0.4;
    transition: opacity 0.2s ease-in-out;
}

.promotion-popup-content .close:hover {
    opacity: 0.8;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 100%;
    position: relative;
    height: 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

@media (max-width: 991.98px) {

    .navbar-collapse.show {
        background-color: #F8F4F0;
        padding: 1rem;
        border-radius: 5px;
        margin-top: 0.5rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar .navbar-nav .nav-link {
        color: #4A3F35;
        margin: 0;
        padding: 0.75rem 0.5rem;
    }

    .navbar .navbar-nav .nav-link:hover {
        color: #8D7B68;
    }

    .interactive-menu-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .interactive-menu-item span {
        margin-bottom: 1rem;
    }

    .order-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .order-buttons .order-btn {
        margin-left: 0;
    }
}


/* Ribbon fills the hero, sits behind overlay/content */
.hero-ribbon {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* below overlay (1) and content (2) */
    overflow: hidden;
    background: #000;
    /* nice backdrop while first items load */
}

/* Track that we translate left continuously */
.ribbon-track {
    display: flex;
    align-items: center;
    height: 100%;
    will-change: transform;
}

/* Group is one full set of items; we render two groups for seamless loop */
.ribbon-group {
    display: inline-flex;
    align-items: center;
    height: 100%;
}

/* Each item is as tall as the hero; width adapts to the media’s aspect */
.ribbon-item {
    position: relative;
    flex: 0 0 auto;
    height: 100%;
    margin-right: var(--ribbon-gap, 24px);
    overflow: hidden;
    /* hides bg blur edges */
}

/* Foreground media: show the whole thing (no cropping) */
.ribbon-item .fg-media {
    display: block;
    height: 100%;
    width: auto;
    /* width adjusts with aspect ratio */
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
}

/* Optional blurred background for portrait images to avoid empty sides */
.ribbon-item .bg-blur {
    position: absolute;
    inset: -6%;
    width: 112%;
    height: 112%;
    object-fit: cover;
    object-position: center;
    filter: blur(24px) brightness(0.65) saturate(1.05);
    transform: scale(1.04);
    z-index: 0;
    pointer-events: none;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .ribbon-track {
        transform: none !important;
    }
}

/* Hide ribbon until we mark it ready */
.hero-ribbon {
    opacity: 0;
    transition: opacity .35s ease;
}

.hero-ribbon.is-ready {
    opacity: 1;
}