body {
    font-family: "beirut,sans-sarif" !important;
}
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;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    padding: 11px;
}
.visit-section {
    background-color: #ffffff;
    padding: 60px 20px;
}

.visit-container {
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.visit-content {
    text-align: left;
}
.container {
    max-width: 1200px;
    margin: auto;
}

.visit-content h2 {
    font-size: 2rem;
    color: #0a2a31;
    margin-bottom: 20px;
    font-family: "Metropolis", sans-serif !important;
    font-weight: 600;
    line-height: 3rem;
}

.visit-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: "Metropolis", sans-serif;
}

.visit-content h3 {
    font-size: 1rem;
    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;
}

.carousel-inner video {
    max-height: 700px; /* Apni required height ke mutabiq adjust karein */
    object-fit: cover;
    width: 100%;
}
.about-wrap {
    background-color: #f2eee4;
    padding: 9rem;
    text-align: center;
}
.about-wrap h1 {
    font-family: "beirut,sans-sarif";
    font-size: 4rem;
    padding-bottom: 2rem;
    color: #401100;
}
.about-wrap p {
    font-family: "beirut,sans-sarif";
    font-size: 1.3rem;
    color: #401100;
}
/* .carosul-wrap {
    padding: 0 7px; 
}
.carousel-inner video {
    width: 100%;
} */
.menu-section {
    padding: 0; /* Extra padding hataya */
    background-color: #f8f5f0; /* Light beige background */
}

.small-container {
    margin: 0 auto;
    padding: 0 30px;
}

/* ✅ Flexbox to make both divs equal height */
.row {
    display: flex;
    align-items: stretch; /* Ensures equal height */
}

.menu-image-section {
    background-image: url("../imgs/menu.jpg");
    background-size: cover;
    background-position: center;
    flex: 1;
    height: 1200px;
}

/* ✅ Right Side - Text Content */
/* ✅ Right Side - Text Content */
.menu-content {
    flex: 1; /* Takes equal space */
    background-color: #fff; /* White background for contrast */
    padding: 60px;
    height: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* 👈 Text upar shift ho jayega */
    text-align: center;
}

.menu-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #5b3c1e;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Serif", serif;
}

.menu-content h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.menu-content p {
    font-size: 16px;
    font-weight: lighter;
    word-spacing: 5px;
    color: #4a3b2a;
    font-family: "Georgia", serif;
}

.menu-content strong {
    line-height: 54px;
}
/* ✅ Responsive Fixes */
@media (max-width: 992px) {
    /* Tablets */
    .row {
        flex-direction: column;
    }

    .menu-image-section {
        height: 500px;
    }

    .menu-content {
        padding: 40px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile */
    .menu-image-section {
        height: 400px;
    }
}

.main-reservation {
    /* padding: 0; */
    background-color: #f8f5f0; /* Light beige background */
    padding-top: 3rem;
}

/* ✅ Left Side - Text Content */
.reservation-content {
    background-color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Text center ho jayega */
    text-align: center;
    height: 800px; /* Same height as image */
}

.reservation-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #5b3c1e;
    margin-bottom: 20px;
    font-family: "beirut,sans-sarif";
}

.reservation-content p {
    font-size: 18px;
    font-weight: lighter;
    word-spacing: 5px;
    color: #4a3b2a;
    margin-bottom: 15px;
    font-family: "beirut,sans-sarif";
}

/* ✅ Button Styling */
.reservation-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #b08d69; /* Border color */
    color: #5b3c1e;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.reservation-button:hover {
    background-color: #b08d69;
    color: #fff;
}

/* ✅ Right Side - Background Image */
.reservation-image {
    background-image: url("../imgs/menu2.jpg"); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    height: 800px; /* Same height as text box */
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
    /* Tablets */
    .row {
        flex-direction: column-reverse;
    }

    .reservation-image {
        height: 400px;
    }

    .reservation-content {
        padding: 35px;
        height: 535px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile */
    .reservation-image {
        height: 300px;
    }
}

.private-events {
    padding-top: 3rem;
    background-color: #f8f5f0; /* Light beige background */
}

/* ✅ Flexbox for equal height */
.row {
    display: flex;
    align-items: stretch;
}

/* ✅ Left Side - Background Image */
.events-image {
    background-image: url("../imgs/private-events.jpg"); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    flex: 1;
    height: 800px; /* Same height as text box */
}

/* ✅ Right Side - Text Content */
.events-content {
    flex: 1;
    background-color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 800px; /* Same height as image */
}

.events-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #5b3c1e;
    margin-bottom: 20px;
}

.events-content p {
    font-size: 18px;
    font-weight: lighter;
    word-spacing: 5px;
    color: #4a3b2a;
    margin-bottom: 15px;
    font-family: "beirut,sans-sarif";
}

/* ✅ Button Styling */
.events-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #b08d69;
    color: #5b3c1e;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.events-button:hover {
    background-color: #b08d69;
    color: #fff;
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
    /* Tablets */
    .row {
        flex-direction: column;
    }

    .events-image {
        height: 400px;
    }

    .events-content {
        padding: 35px;
        height: auto;
        margin-top: 2rem;
        height: 536px;
    }
}

@media (max-width: 768px) {
    /* Mobile */
    .events-image {
        height: 300px;
    }
}
.gift-vouchers {
    padding-top: 3rem;
    background-color: #f8f5f0;
}

/* ✅ Flexbox for equal height */
.row {
    display: flex;
    align-items: stretch;
}

/* ✅ Left Side - Text Content */
.vouchers-content {
    flex: 1;
    background-color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 800px;
}

.vouchers-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #5b3c1e;
    margin-bottom: 20px;
}

.vouchers-content p {
    font-size: 18px;
    font-weight: lighter;
    word-spacing: 5px;
    color: #4a3b2a;
    margin-bottom: 15px;
    font-family: "beirut,sans-sarif";
}

/* ✅ Button Styling - Center Aligned */
.vouchers-button {
    display: inline-block;
    background-color: #ffff; /* Light Brown */
    color: #c69c81;
    padding: 12px 30px; /* Larger padding for premium feel */
    text-decoration: none;
    border-radius: 1px;
    font-size: 16px;
    border: 1px solid #c69c81;
    font-weight: bold;
    transition: all 0.3s ease; /* Smooth hover effect */
    width: 50%;
    margin: 0 auto; /* 👈 Yeh button ko center me karega */
}

/* ✅ Parent Div ko Center Align Karna */
.vouchers-content {
    text-align: center; /* 👈 Yeh button aur text ko center karega */
}

.vouchers-button:hover {
    background-color: #b08d69;
    color: #fff;
}

/* ✅ Right Side - Background Image */
.vouchers-image {
    background-image: url("../imgs/delievry.jpg"); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    flex: 1;
    height: 800px;
}
.opening-times {
    padding-top: 3rem;
    margin-bottom: 2rem;
    background-color: #f8f5f0;
}

/* ✅ Left Side - Background Image */
.times-image {
    background-image: url("../imgs/menu3.jpg"); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    flex: 1;
    height: 800px;
}

/* ✅ Right Side - Text Content */
.times-content {
    flex: 1;
    background-color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 800px;
}

.times-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #5b3c1e;
    margin-bottom: 20px;
}

.times-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    color: #5b3c1e;
}

.times-content p {
    font-size: 18px;
    font-weight: lighter;
    word-spacing: 5px;
    color: #4a3b2a;
    margin-bottom: 15px;
    font-family: "beirut,sans-sarif";
}

@media (max-width: 992px) {
    /* Tablet & Mobile View */
    .row {
        flex-direction: column; /* Column layout rakhein taake image neeche naa aaye */
    }

    .menu-image-section,
    .reservation-image,
    .events-image,
    .vouchers-image,
    .royal-event-image,
    .imperial-image,
    .times-image {
        height: 400px !important; /* Ensure height is set */
        min-height: 775px;
        display: block !important; /* Ensure it is visible */
        background-size: cover;
        background-position: center;
    }

    .about-wrap {
        padding-top: 6rem;
        padding-bottom: 6rem;
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .about-wrap h1 {
        font-size: 2rem;
    }
    .about-wrap p {
        font-size: 1rem;
    }
}
@media (max-width: 992px) {
    /* Tablets */
    .main-reservation .row {
        flex-direction: column-reverse; /* Reservation ke liye image upar, text neeche */
    }

    /* Baki sections ka normal order rakhna */
    .private-events .row,
    .gift-vouchers .row,
    .opening-times .row {
        flex-direction: column; /* Image neeche aur text upar nahi hoga */
    }

    .menu-content {
        height: 100%;
    }

    .col-md-6 {
        width: 100%;
    }
}
@media (max-width: 554px) {
    .menu-image-section,
    .reservation-image,
    .events-image,
    .vouchers-image,
    .times-image {
        min-height: 40vh;
    }

    .menu-section .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-top: var(--bs-gutter-y);
    }
    .main-reservation .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-top: var(--bs-gutter-y);
    }
    .private-events .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-top: var(--bs-gutter-y);
    }
    .opening-times .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-top: var(--bs-gutter-y);
    }
    .gift-vouchers .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-top: var(--bs-gutter-y);
    }

    .vouchers-content {
        padding: 35px;
        height: 536px;
    }
}
@media (max-width: 554px) {
    /* ✅ Menu Section */
    .menu-section .row {
        flex-direction: column-reverse !important; /* Content upar aur image neeche */
    }

    .main-reservation .text {
        order: 1; /* Text Content pehle aaye */
    }

    .main-reservation .reservation-image {
        order: 2; /* Image baad me aaye */
    }

    .gift-vouchers .col-lg-6:first-child {
        order: 2; /* Text neeche aaye */
    }

    .gift-vouchers .col-lg-6:last-child {
        order: 1; /* Image upar aaye */
        margin-bottom: 1rem;
    }
    .times-image {
        margin-bottom: 1rem;
    }
}

.royal-sol {
    padding-top: 3rem;
    background-color: #f8f5f0; /* Light beige background */
}

/* ✅ Flexbox for equal height */
.row {
    display: flex;
    align-items: stretch;
}

/* ✅ Left Side - Background Image */
.royal-event-image {
    background-image: url("../imgs/banquit.jpg"); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    flex: 1;
    height: 800px; /* Same height as text box */
}

/* ✅ Right Side - Text Content */
.events-content {
    flex: 1;
    background-color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 800px; /* Same height as image */
}

.events-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #5b3c1e;
    margin-bottom: 20px;
}

.events-content p {
    font-size: 18px;
    font-weight: lighter;
    word-spacing: 5px;
    color: #4a3b2a;
    margin-bottom: 15px;
    font-family: "beirut,sans-sarif";
}

/* ✅ Button Styling */
.events-button {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #b08d69;
    color: #5b3c1e;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.events-button:hover {
    background-color: #b08d69;
    color: #fff;
}

/* ✅ Responsive Fixes */
@media (max-width: 992px) {
    /* Tablets */
    .row {
        flex-direction: column;
    }

    .royal-event-image {
        height: 400px;
    }

    .events-content {
        padding: 35px;
        height: auto;
        margin-top: 2rem;
        height: 536px;
    }
}

@media (max-width: 768px) {
    /* Mobile */
    .events-image {
        height: 300px;
    }
}

.imperial-vouchers {
    padding-top: 3rem;
    background-color: #f8f5f0; /* Light beige background */
}

/* ✅ Flexbox for equal height */
.row {
    display: flex;
    align-items: stretch;
}

/* ✅ Left Side - Background Image */
.imperial-image {
    background-image: url("../imgs/imperial-suit.jpeg"); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    flex: 1;
    height: 800px; /* Same height as text box */
}

.res img {
    width: 100%; /* Full width */
    height: 400px; /* Adjust height to match the reference image */
    object-fit: cover; /* Ensure it fills the area properly */
}
.reservation-details {
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.reservation-box {
    display: flex;
    gap: 10px;
    border-radius: 8px;
    /* padding: 15px; */
}

.reservation-item {
    flex: 1;
    text-align: left;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.reservation-item label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.reservation-item select,
.reservation-item input {
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    outline: none;
}
.bold-class {
    font-weight: 600;
}
@media (max-width: 554px) {
    .contact-button-gold {
        font-size: 0.75rem;
    }

    .main-reservation .row,
    .private-events .row,
    .gift-vouchers .row,
    .opening-times .row {
        display: flex;
        flex-direction: column;
    }
    .main-reservation .text,
    .private-events .events-content,
    .gift-vouchers .vouchers-content,
    .opening-times .times-content {
        order: 1 !important;
    }
    .main-reservation .reservation-image,
    .private-events .events-image,
    .gift-vouchers .vouchers-image,
    .opening-times .times-image {
        order: 2 !important;
        margin-top: 2rem !important;
    }

    .reservation-content {
        margin-top: -1rem;
    }
    .events-content {
        margin-top: -1rem;
    }

    .gift-vouchers {
        padding-top: 2rem;
    }

    .opening-times {
        padding-top: 1rem;
    }
    .menu-content h2 {
        font-size: 23px;
    }
    .reservation-content h2 {
        font-size: 23px;
    }
    .events-content h2 {
        font-size: 23px;
    }
    .vouchers-content h2 {
        font-size: 23px;
    }

    .times-content h2 {
        font-size: 23px;
    }
    .times-content h3 {
        font-size: 18px;
    }

    .carousel-inner .contact-button {
        padding: 8px 30px;
        font-size: 0.55rem;
    }

    .opening-hours li {
        font-size: 1rem;
    }
}
.carousel-inner video {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media screen and (min-width: 665px) {
    .carousel-inner video {
        height: 700px;
    }
}
.buttons {
    display: flex;
    justify-content: center; /* Center align */
    gap: 20px; /* Space between buttons */
}

.contact-button {
    text-align: center;

    background-color: #c19a6b; /* Button color */
    color: #fff;
}
.gold {
    background-color: white; /* Button color */
    color: #c19a6b;
}
.delivery-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Full screen height */
    padding: 30px 0; /* Reduce extra space */
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.delivery-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.delivery-img img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
}

.delivery-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.section-heading {
    font-size: 28px;
    font-weight: bold;
    color: #042d31;
    margin-bottom: 10px;
}

.delivery-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
    max-width: 500px;
    margin: auto;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between buttons */
    margin-top: 20px;
    flex-wrap: wrap; /* Responsive handling for small screens */
}

.contact-button-gold {
    display: inline-block;
    width: 40%; /* Reduced width for better alignment */
    text-align: center;
    background-color: #c19a6b;
    color: white;
    border-radius: 1px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    font-size: 14px; /* Smaller text */
}

.contact-button-gold:hover {
    background-color: #a07824;
}

.whatsapp-btn {
    background-color: #042d31 !important;
    border: 1px solid #042d31;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #042d31 !important;
}
.section-divider {
    width: 80%; /* Adjust width */
    height: 2px; /* Thin border */
    background-color: #c19a6b; /* Light Gold Color */
    margin: 50px auto 30px auto; /* Space above & below */
    border-radius: 5px; /* Slightly rounded edges */
}
.res {
    width: 100%;
    height: 500px; /* Adjust height as needed */
    background-image: url("../imgs/nech.jpg");
    background-size: cover;
    background-position: 50% 60%; /* Neeche ka hissa zyada dikhayega */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.contact-bg {
    width: 100%;
    height: 500px; /* Adjust height as needed */
    background-image: url("../imgs/contact.jpg");
    background-size: 120%; /* Zoom-out effect (100% means normal size, 120% zooms out slightly) */
    background-position: center; /* Image ko center align karega */
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
/* Dropdown Styling */
select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #042d31; /* Dark Teal Border */
    border-radius: 5px;
    background: white;
    color: #333;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

/* On Hover & Focus */
select:focus {
    border-color: #c19a6b; /* Gold Border on Focus */
    background: #f9f9f9;
}

/* Dropdown Arrow Styling */
select::-ms-expand {
    display: none;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23042D31' d='M2 0L0 2h4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
}
/* Card Group Styling */
.card-group {
    display: flex;
}

/* Card Styling */
.card {
    position: relative;
    overflow: hidden;
    border: 3px solid #c19a6b; /* Dark Border */
    border-radius: 1px;
    transition: border-color 0.3s ease-in-out;
}

/* Image Styling */
.card img {
    width: 100%;
    display: block;
    transition: filter 0.3s ease-in-out;
}

/* Overlay Content */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Title & Text */
.card-overlay h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-overlay p {
    font-size: 14px;
    margin: 0;
}

/* Hover Effect */
.card:hover img {
    filter: brightness(0.5);
}

.card:hover .card-overlay {
    opacity: 1;
    transform: translateY(0);
}
/* Section Background */
.culinary-journey {
    background: #f9f5f0;
    padding: 60px 0;
    margin-bottom: 3re;
}

/* Left Side Grid */
.left-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 equal columns */
    grid-template-rows: auto auto; /* Auto height */
    gap: 10px;
}

/* Text Box */
.text-card {
    background: #c19a6b;
    color: white;
    padding: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

/* Small Image */
.small-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Full Width Image */
.full-img {
    grid-column: span 2; /* Full width */
    width: 100%;
    height: auto;
}

/* Right Side */
.right-content {
    padding-left: 30px;
}

/* Section Title */
.section-title {
    font-size: 35px;
    font-weight: bold;
}

/* Description */
.description {
    font-size: 19px;
    padding-top: 3rem;
    color: #555;
    margin-bottom: 20px;
}

/* Feature Box */
.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature .icon {
    font-size: 24px;
    margin-right: 10px;
    color: #c19a6b;
}

.feature h4 {
    font-size: 18px;
    margin: 0;
}
/* Make text card and image same height */
.card-box,
.small-img {
    height: 100%;

    align-items: center;
    justify-content: center;
}

/* Ensure image fills container */
.small-img {
    width: 100%;
    object-fit: cover;
}
.text-card p {
    padding-top: 7rem;
}
.img-cards {
    margin-bottom: 1rem;
}
.ban-text {
    text-align: center;
    padding-top: 7rem;
    padding-bottom: 5rem;
}
.ban-text h2 {
    color: #c49b84;
    font-size: 2rem;
}

/* Responsive - 554px ke baad cards column mein */
@media (max-width: 554px) {
    .card-group {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }
    .card-box {
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    .card-text-banq {
        text-align: center;
        margin-top: 1rem;
    }
    .contact-button-gold {
        font-size: 12px;
    }
}
