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-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
}

.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;
}

.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) {

    /* Fix for the main navigation menu */
    .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;
    }

    /* Fix for the interactive menu items */
    .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;
    }
}