@font-face{
    font-family: "Elms Sans";
    src: url("../font/ElmsSans-VariableFont_wght.woff2") format('woff2'),url("../font/ElmsSans-VariableFont_wght.woff") format('woff');
    font-weight: 100 900;
    font-style: normal;
    }

@font-face{
    font-family: "playfair display";
    src: url("../font/PlayfairDisplay-VariableFont_wght.woff2") format('woff2'),url("../font/PlayfairDisplay-VariableFont_wght.woff") format('woff');
    font-weight: 100 900;
    font-style: normal;
    }

body {
    background-image: url("../images/background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }

/* HEADER STYLING */
.header-background {
    background-image: url("../images/header/navbar_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 1.5px 12px rgba(0, 0, 0, 2);
    }    

.navbar {
    padding-top: 0rem;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0rem;
    height: 78px;
    overflow: visible;
    }

.company-logo {
    height: 53px;
    }

.d-flex.align-items-center.ml-auto {
    gap: 26px;
    flex-wrap: nowrap;
    }

.phone-contact-link span {
    font-family: 'Elms Sans';
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: black;
    }

.phone-contact-link {
    color: black;
    text-decoration: none;
    background-color: #ffffff;
    padding: 3px 15px;
    border-radius: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }

.phone-contact-link:hover {
    color: black;
    text-decoration: none;
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

.phone-spacing {
    margin-right: 0.3rem;
    }

.round-button {
    width: 40px;
    height: 40px;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: visible; 
    }

.round-button img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 0;
    display: block;
    border: none;
    }

.round-button:hover {
    background-color: #fff; 
    color: #1e2e4f; 
    border-color: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    }

.edge-button-spacing {
    margin-right: 30px;
    }

.mobile-button-spacing {
    margin-right: 1.3rem;
    }

body {
    padding-top: 78px; 
    }

/* HERO CAROUSEL STYLING */
:root {
    --indicator-v-offset: 2rem;
}

.carousel-item img {
    object-fit: cover;
    }

#heroCarousel .carousel-item img { /* originall height 770px */
    max-height: 680px; 
    }

#heroCarousel .carousel-indicators {
    bottom: var(--indicator-v-offset);
    margin-bottom: -10px;
    }

#heroCarousel .carousel-indicators li {
    width: 15px;
    height: 15px;
    margin: 0 3px;
    border-radius: 50%;
    background-color: white;
    border: 1.5px solid rgba(0,0,0,0.50);
    }

#heroCarousel .carousel-indicators .active {
    background-color: #D4AF37;
    }

.carousel-control-prev,
.carousel-control-next {
    width: 38px;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    }    

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.8); 
    opacity: 0.7;
    }    

.carousel-control-prev {
    left: 20px;
    }

.carousel-control-next {
    right: 20px;
    }

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 37px;
    height: 37px;
    background-size: 55%, 55%;
    }

/* CONTENT SECTION - MENU AND ABOUT */
.content-section {
    padding: 8px 3px;
    background-color: transparent;
    margin-top: 3px;
    margin-bottom: 3px;
    }

.tab-navigation {
    display: flex;
    justify-content: center;
    }

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
    display: inline-flex;
    margin-bottom: 10px;
    }

.nav-tabs .nav-link {
    border: none;
    padding: 6px 20px;
    font-size: 1.1rem;
    font-weight: 450;
    letter-spacing: 1px;
    color: #3E4449;
    background: transparent;
    transition: all 0.3s ease;
    font-family:'playfair display';
    }

.nav-tabs .nav-link.active {
    color: #D4AF37;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #D4AF37;
    font-family:'playfair display';
    font-weight: 450;
    letter-spacing: 1px;
    padding-right: 20px;
    padding-top: 6px;
    }

.menu-item-content{
    display: flex;
    flex-direction: column;
    height: 75%;
    padding: 15px;
    }

.menu-item-content P{
    margin-bottom: 0.5rem;
    margin-top: 0;
    }

.menu-price-display{
    width: 100%;
    margin-top: auto !important;
    text-align: center !important;
    padding-right: 15px;
    margin-bottom: 13px !important;
    }

.menu-price-display strong{
    font-size: 1rem;
    color: "#333";
}

.thin-separator-card{
    width: 100%;
    height: 1px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: 0;
    border-top: 1px solid #ccc;
    }

.tab-content {
    padding: 10px 0;
    }

.tab-pane {
    display: none;
    }

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
    }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
    }

/* MENU SLIDER STYLES */
.menu-slider-container,
.about-slider-container {
    position: relative;
    padding: 0 50px;
    }

.menu-cards,
.about-cards {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 8px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    }

.menu-cards::-webkit-scrollbar,
.about-cards::-webkit-scrollbar {
    display: none;
    }

.menu-item-card,
.about-content-card { /*about us cards background*/
    flex: 0 0 300px;
    border-radius: 10px;
    border: 1px solid rgba(227,227,227,0.10);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(227,225,225,0.10);
}

.menu-item-image {
    width: 100%;
    height: 176px;
    object-fit: cover;
    }

#menu .menu-item-image {
    width: 97%;
    margin: 4px auto 3px auto;
    display: block;
    border: 2.5px solid #D4AF37;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }

#menu .menu-item-card { /*Menu Card Background*/
    border: 1.5px solid rgba(95,95,95,0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    }

/* ABOUT SLIDER STYLES */

.featured-about-image {
    border: 3px solid #D4AF37; /* Gold border */
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

.review-link-style {
    display: inline-flex; 
    align-items: center;
    text-decoration: none;
    font-family: 'Elms Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1a73e8;
    transition: color 0.3s;
    }

.review-link-style:hover {
    color: #004d99;
    text-decoration: none;
    }

.review-arrow-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 19px; 
    height: 19px;
    border-radius: 50%; 
    background-color: rgba(26,115,232,0.1);
    border: thin;
    border-color: brown;
    margin-left: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

.review-arrow-circle .fas {
    color: #131313;
    font-size: 0.6rem;
    font-weight: 900;
    margin-left: 1px;
    }

.google-review p {
    font-weight: normal;
    margin-bottom: 0.8px;
    }

.review-link-style:hover .review-arrow-circle {
    background-color: rgba(0,77,153,0.25);
    }    

.short-description {
    padding: 5px;
    margin: 5px 0;
   }

/*.highlight-text {
    font-weight: 400;
    color: #2c3e50;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 0;
    }
*/

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    }

.img-border-review {
    border: 2px solid rgba(109,109,109,0.23);
    border-radius: 15px;
    margin-top: 2px;
    padding-right: 1px;
    padding-left: 1px;
    padding-top: 0px;
    padding-bottom: 0px;
    margin-left: 0px;
    margin-right: 4px;
    }

.menu-item-content,
.about-content {
    padding-top: 10px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 5px;
    }

.menu-item-content h4,
.about-content h4 {
    color: #D4AF37;
    margin-bottom: 18px;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'playfair display';
    letter-spacing: 0.8px;
    
    }

.menu-item-content p,
.about-content p {
    color: #3E4449;
    line-height: 1.2;
    margin-bottom: 0px;
    font-family: 'elms sans';
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    }

.menu-separator,
.about-separator {
    border: 0;
    height: 1px;
    background-color: #ced4da;
    width: 70%;
    margin: 15px auto;
    }

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(47,47,47,0.24);
    border: thin;
    opacity: 1px;
    box-shadow: 0 1px 6px rgba(203,203,203,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease;;
    z-index: 10;
    color: rgba(66,66,66,1.00);
    }

.slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0.7px;
    color: white;
    }

.slider-nav.prev {
    left: 0px;
    }

.slider-nav.next {
    right: 0px;
    }

.slider-nav i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    }

.slider-nav:focus {
    outline: none;
    box-shadow: none;
    }

/* FAQ SECTION STYLING */
.collapse{
    height: 0.3s ease-in-out, opacity 0.3 ease-in-out;
    opacity: 0;
    visibility: hidden;
    }

.collapsing{
   opacity: 1 !important;
    visibility: visible!important;
    transition: height 0.3 ease-in-out;
    }

.collapse.show{
    opacity: 1;
    visibility: visible;
    }

.icon-bullets {
    list-style: none;
    padding-left: 0;
    }

.icon-bullets li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 13px;
    padding-left: 0;
    }

.icon-bullets li i {
    color: #FE9251;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
    }

.icon-bullets li span {
    flex: 1;
    }

.faq-numbered-list {
    margin: 20px 0;
    padding-left: 25px;
    color: #495057;
    }

.faq-numbered-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    padding-left: 8px;
    }

.faq-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    }

.faq-title {
    font-family: 'playfair display';
    color: #3E4449;
    font-weight: 400;
    margin-bottom: 25px; /* Increased margin to compensate for removed subtitle */
    font-size: 1.8rem;
    }

/* Remove or comment out the subtitle styles
.faq-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
*/

.faq-bullets.icon-bullets li a {
    color: dodgerblue;
    text-decoration: none;
    font-weight: 400;
    border-bottom: 0px solid transparent;
    transition: all 0.3s ease;
    display: inline; /* Keep it inline */
    }

.faq-bullets.icon-bullets li a:hover {
    color: dodgerblue;
    border-bottom: 0px;
    text-decoration: none;
    }

/* Ensure the span content wraps properly */
.faq-bullets.icon-bullets li span {
    flex: 1;
    color: #495057;
    line-height: 1.6;
    }

/* Specific fix for links breaking alignment */
.faq-bullets.icon-bullets li span a {
    white-space: nowrap; /* Prevent link from breaking across lines */
    word-break: keep-all;
    }

.faq-card {
    border: none;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    }

.faq-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    }

.faq-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid #e9ecef;
    padding: 0;
    }

.faq-button {
    width: 100%;
    font-family: 'elms sans';
    letter-spacing: 0px;
    text-align: left;
    padding: 10px 25px;
    background: none;
    border: none;
    color: #3E4449;
    font-weight: 550;
    font-size: 1rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    }

.faq-button:focus {
    outline: none;
    box-shadow: none;
    }

.faq-button:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    text-decoration: none;
    }

.faq-button:not(.collapsed) {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
    border-bottom: 2px solid #D4AF37;
    }

.faq-icon {
    transition: transform 0.3s ease;
    color: #6c757d;
    font-size: 0.9rem;
    }

.faq-button:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
    color: #D4AF37;
    }

.faq-body {
    padding: 15px;
    background: #ffffff;
    color: #3E4449;
    line-height: 1.2;
    font-family: 'elms sans';
    font-weight: 500;
    font-size: 1rem;
    }

/* FOOTER STYLING */

.company-footer {
    background: rgba(41,41,41,0.88);
    color: #ffffff;
    padding: 10px 0;
    margin-top: 30px;
    border-top: 2px solid #D4AF37;
    text-align: center;
    }

.footer-logo {
    height: 13px;
    width: auto;
    margin-bottom: 8px;
    filter: brightness(0) invert(1);
    }

.company-address {
    color: #ecf0f1;
    line-height: 1.3;
    font-family: 'elms sans';
    font-size: 0.6rem;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    }


/* ------------ MOBILE RESPONSIVE STYLES ------------ */


@media (min-width: 320px) and (max-width: 480px) {
    
.header-background {
    height: 63px !important;
    }
    
.navbar {
    min-height: 63px !important;
    padding-top: 0.5rem;
    padding-right: 1rem;
    padding-left: 2rem;
    padding-bottom: 0.5rem;
    }
            
.d-flex.align-items-center.ml-auto {
    gap: 8px;
    }
          
body {
    padding-top: 63px !important;
    }

.company-logo {
    height: 50px !important;
    width: 55% !important;
    }
            
.round-button {
    width: 35px !important;
    height: 35px !important;
    font-size: 0.2rem !important;
    }
    
.round-button img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 0;
    display: block;
    border: none;
    }
            
.mobile-button-spacing {
    margin-right: 1.3rem !important;
    }

.edge-button-spacing {
    margin-right: 5px !important;
    }
            
/* Carousel adjustments for mobile */
#heroCarousel .carousel-item img {
    height: auto; 
    }
            
.carousel-control-prev,
.carousel-control-next {
    width: 30px !important;
    height: 30px !important;
    }
            
.carousel-control-prev {
    left: 5px !important;
    }
            
.carousel-control-next {
    right: 5px !important;
    }
            
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 28px !important;
    height: 28px !important;
    }

#heroCarousel .carousel-indicators li {
    width: 8px !important;
    height: 8px !important;
    margin: 0 1.5px !important;
    }
            
#heroCarousel .carousel-indicators {
    bottom: 1.2rem !important;
    }
    
.nav-tabs .nav-link {
    border: none;
    padding: 6px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #3E4449;
    background: transparent;
    transition: all 0.3s ease;
    font-family: 'playfair display';
    }
    
.nav-tabs .nav-link.active {
    color: #D4AF37;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #D4AF37;
    font-family:'playfair display';
    font-size: 1rem;
    font-weight: 550;
    padding-right: 20px;
    padding-top: 6px;
    }
         
.menu-slider-container,
.about-slider-container {
    padding: 0 6px !important;
    }
            
.menu-item-card,
.about-content-card {
    flex: 0 0 95% !important;
    }
            
.slider-nav {
    position: absolute !important;
    top: 29% !important;
    width: 30px !important;
    height: 30px !important;
    }
            
.menu-cards,
.about-cards {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    }
    
.menu-item-card,
.about-content-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    }
    
.menu-item-card,
.about-content-card {
    flex: 0 0 85% !important;
    margin: 0 7.5%;
    }
    
.faq-title {
    font-family: 'playfair display';
    color: #3E4449;
    font-weight: 400;
    margin-bottom: 25px; /* Increased margin to compensate for removed subtitle */
    font-size: 1.3rem;
    }
    
.company-footer {
    background: rgba(41,41,41,0.88);
    color: #ffffff;
    padding: 10px 0;
    margin-top: 30px;
    border-top: 2px solid #D4AF37;
    text-align: center;
    }

.footer-logo {
    height: 11px;
    width: auto;
    margin-bottom: 5px;
    filter: brightness(0) invert(1);
    }

.company-address {
    color: #ecf0f1;
    line-height: 1.3;
    font-size: 0.55rem;
    margin-bottom: 0;
    }
    
    
}
