@import url("https://fonts.googleapis.com/css2?family=Metropolis:wght@300&display=swap");

body {
    font-family: "Metropolis", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

/* header {
    background-color: #0a2a31;
    color: #f4f4f4;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

/* header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 40px;
    margin-right: 15px;
} */

header nav {
    display: flex;
}

header nav a {
    color: #f4f4f4;
    text-decoration: none;
    margin: 0 7px;
    font-size: 0.95rem;
    font-weight: 300;
}

header nav a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: auto;
}
.res-main {
    display: flex;
    justify-content: space-between;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    padding: 11px;
}
.left-section {
    /* width: 50%; */
    padding-right: 40px;
}

.left-section h2 {
    font-size: 2.5rem;
    color: #0a2a31;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.left-section p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.resturent-main-wrap {
    padding-top: 3rem;
}
.description-text {
    font-size: 1rem;
    color: #0a2a31;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.left-section .price {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.left-section .price strong {
    color: #0a2a31;
}

.left-section .price p {
    margin: 5px 0;
}

.left-section .price em {
    color: #c8a97e; /* Gold color for text */
    font-style: italic;
}

.left-section a.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    text-decoration: none;
    color: #0a2a31;
    background-color: #fff;
    border: 2px solid #c49b84; /* Gold color for border */
    border-radius: 1px;
    transition: all 0.3s ease;
}

.left-section a.button:hover {
    color: #fff;
    background-color: #c8a97e; /* Gold color on hover */
}

.left-section a.link {
    color: #0a2a31;
    text-decoration: underline;
    font-size: 1rem;
    margin-top: 10px;
    display: inline-block;
}

.right-section {
    /* width: 45%; */
}

.default-video {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ccc;
    margin-bottom: 20px;
}

.default-video video,
.default-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnails video {
    width: 100%;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}

.thumbnails video:hover {
    transform: scale(1.1);
}

.thumbnails img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.2s;
}

.thumbnails img:hover {
    transform: scale(1.1);
}

/* Divider styles */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 40px auto; */
    width: 100%;
    /* padding-top: 5rem; */
    padding-bottom: 5rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #ccc;
}

.divider-icon {
    margin: 0 15px;
}

.divider-icon img {
    height: 30px;
    width: auto;
}

.popular-dishes-container {
    padding: 50px 20px;
    margin: auto;
    overflow: hidden;
}

/* Remove display: flex for Bootstrap compatibility */
.popular-dishes-container .row {
    display: flex; /* Default for large screens */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.dishes-text {
    flex: 1;
    /* max-width: 40%; */
    padding-right: 6rem;
}

.dishes-text h2 {
    font-size: 2.5rem;
    font-family: Arial, Helvetica, sans-serif;

    color: #0a2a31;
    margin-bottom: 15px;
}

.dishes-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.dishes-slider {
    flex: 1;
    /* max-width: 60%; */
    position: relative;
    overflow: hidden;
    height: 320px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(100% * (totalSlides + 2)); /* Account for clones */
}

.slide {
    flex: 0 0 33%;
    /* opacity: 0.5; */
    transform: scale(0.8);
    transition: all 0.5s ease;
    text-align: center;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}



.slide img {

    height: 190px;
    object-fit: cover;    /* crops to fill without stretching */
    object-position: center;

    display: block;
}


.slide p {
    margin-top: 10px;
    font-size: 1rem;
    color: #0a2a31;
}

.slide.active {
    flex: 0 0 50%; /* Larger size for the active slide */
    opacity: 1;
    transform: scale(1); /* Full size */
    z-index: 1; /* Ensure it is on top */
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
    background-color: #c8a97e;
}

/* Stacking behavior for small screens */
@media (max-width: 575px) {
    .popular-dishes-container .row {
        display: block; /* Allow Bootstrap's grid system to stack sections */
    }

    .dishes-text {
        padding-right: 0; /* Remove padding for smaller screens */
        margin-bottom: 20px; /* Add spacing below text */
    }

    .dishes-slider {
        margin-top: 20px;
    }
}
/* Stacking behavior for small screens */
@media (max-width: 776px) {
    .contact-button {
        width: 100%;
    }
    .footer-column {
        text-align: center;
    }
    .list-res {
        text-align: left;
    }
    .footer-column h3 {
        font-size: 1.5rem;
        color: #0a2a31;
        margin-bottom: 20px;
        font-weight: 600;
    }
}

.food-section-1 {
    padding: 60px 20px;
    margin: auto;
    background: #e9e9e9;
}

.food-section-1 .left {
    position: relative;
    overflow: hidden;
}

.food-section-1 .image-1 {
    width: 100%; /* Ensure the image scales with the container */
    height: auto;
    object-fit: cover;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s ease-out;
}

.food-section-1 .image-1.animate {
    clip-path: inset(0 0 0 0); /* Fully reveal image */
}

.food-section-1 .vertical-content {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.food-section-1 .vertical-text-1 {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #0a2a31;
    font-size: 1rem;
    font-weight: 500;
}

.food-section-1 .divider-line.line-1 {
    height: 0;
    width: 2px;
    background-color: #c8a97e;
    margin-top: 10px;
    transition: height 0.8s ease-out 0.5s;
}

.food-section-1 .divider-line-1.animate {
    height: 100px; /* Fully visible line */
}

.food-section-1 .right {
    /* width: 50%; */
    padding-left: 20px;
}
/* Right Section */
.food-section-1 .right {
    background-color: #fff; /* White background for the text section */
    padding: 8rem 3rem; /* Consistent padding */
    border-radius: 1px; /* Optional: Add rounded corners for aesthetics */
}

.food-section-1 .right h2 {
    font-size: 2rem; /* Adjust font size for readability */
    color: #0a2a31;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.food-section-1 .right p {
    font-size: 1rem;
    color: #555;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 575px) {
    .food-section-1 .right {
        text-align: center; /* Center-align text on small screens */
    }

    .food-section-1 .vertical-content {
        left: 0; /* Align vertical content properly */
        transform: translateX(-50%);
    }
}

.empty {
    padding: 3rem 0;
}

/* Default state for text */
.zoom-text {
    transform: scale(0.8); /* Smaller size initially */
    opacity: 0; /* Hidden initially */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth zoom and fade */
}

/* When the text becomes visible in the viewport */
.zoom-text.visible {
    transform: scale(1); /* Normal size */
    opacity: 1; /* Fully visible */
}

.food-section-unique {
    padding: 60px 20px;
    background: #e9e9e9;
}

/* Left Section with White Background */
.food-section-unique .food-text {
    /* padding-right: 20px; */
}

.food-section-unique .text-wrapper {
    background-color: #fff; /* White background */
    padding: 7rem 2rem; /* Consistent padding for text */
    border-radius: 1px; /* Optional: Rounded corners for aesthetics */
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);  */
}

.food-section-unique .text-wrapper h2 {
    font-size: 2.5rem; /* Adjust heading size */
    color: #0a2a31;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
}

.food-section-unique .text-wrapper p {
    font-size: 1rem;
    color: #555;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Right Section (Image Content) */
.food-section-unique .food-image-wrapper {
    position: relative;
    overflow: hidden;
}

.food-section-unique .food-image-unique {
    width: 100%; /* Make image responsive */
    height: auto;
    object-fit: cover;
    clip-path: inset(0 0 0 100%); /* Initially hidden (right to left) */
    transition: clip-path 1.2s ease-out;
}

.food-section-unique .food-image-unique.animate {
    clip-path: inset(0 0 0 0); /* Fully reveal image */
}

/* Vertical Line Content */
.food-section-unique .vertical-content-unique {
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.food-section-unique .divider-line-unique {
    height: 0; /* Initially hidden */
    width: 2px;
    background-color: #c8a97e;
    margin-top: 10px;
    transition: height 0.8s ease-out 0.5s; /* Smooth delayed animation */
}

.food-section-unique .divider-line-unique.animate {
    height: 100px; /* Fully visible line */
}

/* Responsive Adjustments */
@media (max-width: 575px) {
    .food-section-unique .food-text {
        text-align: center; /* Center-align text for smaller screens */
        padding-right: 0; /* Remove padding on small screens */
        margin-bottom: 20px; /* Add spacing below text */
    }

    .food-section-unique .food-image-wrapper {
        margin-top: 20px; /* Add spacing between stacked sections */
    }

    .food-section-unique .vertical-content-unique {
        right: 0; /* Align vertical content properly */
        transform: translateX(-50%);
    }
}

.visit-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.visit-container {
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.visit-content {
    text-align: left;
}
@media (max-width: 740px) {
    .visit-content {
        text-align: center;
    }
}

.visit-content h2 {
    font-size: 2.76rem;
    color: #0a2a31;
    margin-bottom: 20px;
    font-family: "Metropolis", sans-serif !important;
    font-weight: 600;
    line-height: 3rem;
}

.visit-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Metropolis", sans-serif;
}

.visit-content h3 {
    font-size: 1.5rem;
    color: #0a2a31;
    margin-bottom: 10px;
    font-family: "Metropolis", sans-serif;
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.opening-hours li span {
    color: #555;
    font-weight: 400;
}

.opening-hours li strong {
    color: #0a2a31;
    font-weight: 500;
}

.contact-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: #0a2a31;
    background-color: #fff;
    border: 1px solid #c8a97e;
    border-radius: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-button-gold {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    color: white;
    background-color: #c49b84;
    border: 2px solid #c49b84;
    border-radius: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #c8a97e;
    color: #fff;
}

.map-container iframe {
    width: 100%; /* Ensure iframe is responsive */
    height: 500px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.footer {
    background-color: #e9e9e9;
    padding: 40px 20px;
    font-family: "Metropolis", sans-serif;
}

/* Divider Styling */
.footer .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.footer .divider-line-bottom {
    width: 40%;
    height: 1px;
    background-color: #ddd;
}

.footer .divider-icon img {
    max-width: 50px;
    margin: 0 20px;
}

/* Footer Column Styling */
.footer-column h3 {
    font-size: 1.5rem;
    color: #0a2a31;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-list li i {
    font-weight: bold;
    color: #0a2a31;
}

.footer-list li a {
    text-decoration: none;
    color: #555;
}

.footer-list li a:hover {
    color: #0a2a31;
}

/* Follow Us Section */
.social-icons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.social-icons i {
    font-size: 1.5rem;
    /* color: #0a2a31; */
    cursor: pointer;
}

.social-icons i:hover {
    color: #c8a97e;
}

/* App Buttons */
.app-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-button {
    display: inline-block;
    padding: 10px 15px;
    font-size: 0.9rem;
    color: #0a2a31;
    background-color: #fff;
    border: 2px solid #0a2a31;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    flex: 1;
    transition: all 0.3s ease;
}

.app-button:hover {
    background-color: #0a2a31;
    color: #fff;
}

.app-button strong {
    font-weight: 600;
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0 0;
    font-size: 0.9rem;
    color: #555;
    border-top: 1px solid #ddd;
    margin-top: 20px;
}

.divider-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto;
    width: 90%;
}

.divider-line-bottom {
    flex: 1;
    height: 1px;
    background-color: #ccc;
}

/* FAQ Section */
.faq-title {
    color: #0a2a31;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.accordion-button {
    background-color: transparent;
    color: #74868a; /* Question text color */
    font-size: 1.2rem;
    font-weight: 500;
    border: none; /* Remove default border */
    padding: 21px 0; /* Adjust spacing for better alignment */
    text-align: left; /* Align text to the left */
}

.accordion-button:hover {
    color: #0a2a31; /* Darker hover effect */
}

.accordion-button:focus {
    outline: none; /* Remove blue outline on focus */
    box-shadow: none; /* Remove focus shadow */
}

.accordion-button:not(.collapsed) {
    color: #0a2a31; /* Active question color */
    background-color: transparent; /* Remove blue background when active */
}

.accordion-body {
    background-color: #e9e9e9; /* Answer background color */
    padding: 30px;
    padding-top: 50px; /* Prevent content overlap when fully expanded */
    /* margin-top: -20px;  */
}
.faq-answer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    line-height: 2; /* Proper spacing between lines */
}

/* Retained styles for .days and .times */
.faq-answer .days {
    width: 60%; /* Set fixed width for days */
    padding-right: 20px; /* Add spacing between columns */
}

.faq-answer .times {
    width: 40%; /* Set fixed width for times */
    text-align: left; /* Align times to the left */
}

.faq-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #6c757d; /* Muted text color */
}

.faq-content p {
    margin-bottom: 15px; /* Add spacing between paragraphs */
}

/* Divider Line */
.faq-divider {
    border-bottom: 1px solid #dcdcdc;
    padding: 20px 0;
}
.faq-divider {
}
/* Remove border around accordion items */
.accordion-item {
    border: none;
}
.accordion-header button {
    font-size: 1rem !important;
}
.food-section {
    padding: 4rem 0; /* Top and bottom spacing */
}

.food-section .left {
    padding-right: 0; /* Remove extra padding on the right side of the image */
}

.food-section .image-1 {
    border-radius: 1px; /* Rounded corners for the image */
    width: 100%; /* Ensure full width */
    object-fit: cover; /* Maintain aspect ratio */
}
/* General Section Styling */
.food-section-unique {
    padding: 4rem 0; /* Top and bottom spacing */
}

.food-text,
.food-image-wrapper {
    padding: 0; /* Remove column padding */
}

.food-image-unique {
    border-radius: 1px; /* Smooth corners for the image */
    width: 100%; /* Ensure image takes full width of its column */
    object-fit: cover; /* Maintain aspect ratio */
}
.mobile-view {
    display: none;
}
@media (max-width: 557px) {
    .food-section-unique .text-wrapper {
        padding: 3rem 1rem;
    }
    .food-section-1 .right {
        padding: 4rem 1rem;
    }
    .banq-text {
        text-align: center;
    }
    .dishes-text h2 {
        font-size: 2rem;
    }
    .slide {
        flex: 0 0 70%;
    }
    .contact-button {
        width: 100% !important;
    }
    @media (max-width: 767px) {
        .divider {
            padding-top: 0rem !important;
        }
    }

    .contact-form {
        margin-top: 1px !important;
    }

    .top-text {
        padding: 3px 0px !important;
    }
    .lead {
        font-size: 0.85rem;
        font-weight: 600;
    }
    .left-section {
        padding-top: 3rem;
    }
    .left-section h2 {
        text-align: center;
    }

    .left-section .price {
        font-size: 1rem;

        text-align: center;
    }
    .left-section a.button {
        width: 100%;
        text-align: center;
    }
    .left-section .price strong {
        font-size: 1rem;
    }

    .footer-list li i {
        display: block !important;
        color: #c49b84;
        padding-bottom: 10px;
    }
    .footer-list li {
        padding-bottom: 2rem;
    }
    .mobile-view {
        display: block;
    }
    .desktop-view {
        display: none;
    }
}

@media (max-width: 556px) {
    .download-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px; /* Add vertical spacing between buttons */
        align-items: center; /* Center buttons horizontally */
        width: 100%;
        margin-bottom: 2rem;
    }
    .text-start h4 {
        text-align: center !important;
        font-weight: 600;
    }

    .social-icons {
        gap: 66px;
        margin: 29px 0;
    }
}
.download-buttons {
    display: flex;
    /* justify-content: center; */
    gap: 20px; /* Space between buttons */
    margin-top: 2rem;
}

.download-button {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid #000;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    background-color: #e9e9e9;
}

.download-button .fab {
    font-size: 2rem;
    padding-right: 1rem;
}

.button-text span {
    display: block;
    font-size: 12px;
    color: #555;
}

.button-text strong {
    font-size: 16px;
    color: #000;
}

.download-button:hover {
    background-color: #f0f0f0;
    border-color: #555;
}
@media (max-width: 554px) {
    .resturent-main-wrap .row {
        display: flex;
        flex-direction: column;
    }
    .resturent-main-wrap .left-section {
        order: 1 !important;
    }
    .resturent-main-wrap .right-section {
        order: 2 !important;
    }
    .resturent-main-wrap .left-section {
        padding-top: 0rem;
    }
    .royal-gallery-wrap h2 {
        padding: 2rem !important;
        font-size: 2rem !important;
    }
}
