:root {
    --theme-color: #c89520;
    --theme-color-hover: #a97810;
    --theme-color-light: #f5e8c5;
}

Chrome,
Edge,
Safari::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    ;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--theme-color-hover);
    ;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--theme-color) #f1f1f1;
}

/* ==============================
   HOTEL NAVBAR
   ============================== */

.navbar {
    min-height: 70px;
}

.navbar-toggler {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    border-radius: 3px;
    padding: 5px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    color: var(--theme-color);
}

/* Logo */

.hotel-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.hotel-logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-right: 10px;
}

.logo-symbol {
    font-size: 38px;
    margin-right: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-size: 20px;
    letter-spacing: 1px;
}

.logo-text small {
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 4px;
}


/* Menu */

.navbar .nav-link {
    color: #222;
    font-size: 12px;
    font-weight: 600;
    margin-left: 18px;
    position: relative;
}


/* Active menu */

.navbar .nav-link.active {
    color: var(--theme-color);
}


/* Gold line under active menu */

.navbar .nav-link.active::after {
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    bottom: -8px;

    height: 2px;
    background-color: var(--theme-color);
}


/* Hover */

.navbar .nav-link:hover {
    color: var(--theme-color-hover);
}


/* Book Now */

.book-btn {
    background-color: var(--theme-color);
    color: white;

    font-size: 12px;
    font-weight: 600;

    padding: 10px 24px;
    border-radius: 3px;
}

.book-btn:hover {
    background-color: var(--theme-color-hover);
    color: white;
}

@media (max-width: 991.98px) {

    .navbar .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .nav-link.active::after {
        display: none;
    }

    .navbar .nav-link.active {
        color: var(--theme-color);
    }

}

/* ==============================
   HERO SECTION
   ============================== */


.hero-section {
    position: relative;
    min-height: 620px;
    background-image: url('../images/hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}


/* Dark overlay */

.hero-overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.42);
}


/* Content must stay above overlay */

.hero-section .container {
    position: relative;
    z-index: 2;
}


/* Hero text */

.hero-text {
    color: white;
    padding: 60px 0;
}


.hero-stars {
    color: var(--theme-color);
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}


.hero-text h1 {
    font-family: Georgia, serif;

    font-size: 52px;
    line-height: 1.15;

    font-weight: 700;

    margin-bottom: 20px;
}


.hero-text p {
    font-size: 18px;
    line-height: 1.6;

    max-width: 520px;

    margin-bottom: 28px;
}


/* Explore Rooms */

.hero-btn {
    background-color: var(--theme-color);
    color: white;

    padding: 13px 25px;

    font-size: 13px;
    font-weight: 600;

    border-radius: 3px;
}


.hero-btn:hover {
    background-color: var(--theme-color-hover);
    color: white;
}


/* ==============================
   BOOKING BOX
   ============================== */

.booking-box {
    background: rgba(0, 0, 0, 0.88);

    padding: 25px;

    border-radius: 5px;

    color: white;

    margin: 40px 0;
}


.booking-box h3 {
    font-family: Georgia, serif;

    font-size: 22px;

    margin-bottom: 8px;
}


.booking-line {
    width: 35px;
    height: 2px;

    background-color: var(--theme-color);

    margin-bottom: 18px;
}


.booking-box label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}


.booking-box .form-control,
.booking-box .form-select {
    height: 45px;
    border-radius: 4px;
    font-size: 13px;
}


.check-btn {
    background-color: var(--theme-color);
    color: white;
    height: 48px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}


.check-btn:hover {
    background-color: var(--theme-color-hover);
    color: white;
}

/* ==============================
   HERO MOBILE
   ============================== */

@media (max-width: 991.98px) {

    .hero-section {
        min-height: auto;

        padding: 50px 0;
    }


    .hero-text {
        padding: 20px 0 40px;
    }


    .hero-text h1 {
        font-size: 38px;
    }


    .hero-text p {
        font-size: 16px;
    }


    .booking-box {
        margin: 10px 0 20px;
    }

}

@media (max-width: 991.98px) {

    .hero-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-section .container {
        width: 100%;
        max-width: 100%;
    }

    .hero-text {
        width: 100%;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 34px;
        line-height: 1.05;
    }

    .hero-text p {
        font-size: 15px;
        line-height: 1.4;
        max-width: 100%;
    }

    .booking-box {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

}

/* ==============================
   FACILITIES SECTION
   ============================== */

.facilities-section {
    padding: 25px 0 30px;
    background-color: #ffffff;
}


/* Section Heading */

.section-heading {
    margin-bottom: 25px;
}

.section-subtitle {
    display: block;
    color: var(--theme-color);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-heading h2 {
    font-family: Georgia, serif;
    font-size: 25px;
    font-weight: 700;
    margin: 0;
}

.section-heading-line {
    width: 35px;
    height: 2px;
    background-color: var(--theme-color);
    margin: 10px auto 0;
}


/* ==============================
   FACILITIES SECTION
   ============================== */

.facilities-section {
    padding: 25px 0 30px;
    background-color: #ffffff;
}


/* Section Heading */

.section-heading {
    margin-bottom: 25px;
}

.section-subtitle {
    display: block;
    color: var(--theme-color);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-heading h2 {
    font-family: Georgia, serif;

    font-size: 25px;
    font-weight: 700;

    margin: 0;
}

.section-heading-line {
    width: 35px;
    height: 2px;
    background-color: var(--theme-color);
    margin: 10px auto 0;
}


/* ==============================
   FACILITY ICONS
   ============================== */

.facilities-list {
    margin-bottom: 25px;
}

.facility-item {
    text-align: center;

    padding: 10px 5px;
}

.facility-item i {
    display: block;
    color: var(--theme-color);
    font-size: 27px;
    margin-bottom: 8px;
}

.facility-item h6 {
    margin: 0;
    font-size: 11px;
    font-weight: 600;
}


/* ==============================
   FACILITY CARDS
   ============================== */

.facilities-cards {
    margin-top: 10px;
}

.facility-card {
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.facility-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
}

.facility-card-body {
    padding: 14px 12px 18px;
}

.facility-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.facility-card-body p {
    color: #555;
    font-size: 12px;
    line-height: 1.6;
    min-height: 38px;
    margin-bottom: 12px;
}

.facility-card-btn {
    display: inline-block;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    padding: 8px 20px;
}

.facility-card-btn:hover {
    background-color: var(--theme-color-hover);
    color: white;
}

@media (max-width: 767.98px) {

    .facilities-section {
        padding: 45px 0;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .facility-item {
        padding: 12px 5px;
    }

    .facility-item i {
        font-size: 25px;
    }

    .facility-card img {
        height: 180px;
    }

}

/* ==============================
   HOTEL GALLERY
   ============================== */

/* ==============================
   HOTEL GALLERY
   ============================== */

.hotel-gallery {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.gallery-scroll {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 220px;
    height: 115px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==============================
   CONTACT SECTION
   ============================== */

.contact-section {
    padding: 60px 0;
    background-color: #ffffff;
}

/* Contact Heading */

.contact-info h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-line {
    width: 35px;
    height: 2px;
    background-color: var(--theme-color);
    margin-bottom: 25px;
}


/* Contact Item */

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.6;
}

.contact-item i {
    color: var(--theme-color);
    font-size: 18px;
    margin-right: 12px;
    min-width: 18px;
}


/* Social Icons */

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    background-color: #c89520;
    text-decoration: none;
    font-size: 15px;
}

.social-icons a:hover {
    background-color: var(--theme-color-hover);
}


/* Google Map */

.map-container {
    width: 100%;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 320px;
    display: block;
}


/* Mobile */
@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-info {
        margin-bottom: 30px;
    }

    .map-container iframe {
        height: 280px;
    }
}

/* ==============================
   NEWSLETTER
   ============================== */

.newsletter-section {
    background-color: #06213a;
    padding: 20px 0;
    color: white;
}

.newsletter-text h3 {
    font-family: Georgia, serif;
    font-size: 20px;
    margin: 0 0 3px;
}

.newsletter-text p {
    font-size: 12px;
    margin: 0;
    color: #ddd;
}


/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.newsletter-form .form-control {
    height: 45px;
    border-radius: 3px;
    font-size: 13px;
    min-width: 0;
    flex: 1;
}

/* Subscribe Button */
.newsletter-btn {
    height: 45px;
    min-width: 110px;
    flex-shrink: 0;
    background-color: #c89520;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.newsletter-btn:hover {
    background-color: var(--theme-color-hover);
    color: white;
}

/* Mobile */

@media (max-width: 767.98px) {

    .newsletter-section {
        padding: 25px 0;
    }

    .newsletter-text {
        margin-bottom: 15px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .newsletter-form .form-control {
        width: 100%;
        min-width: 0;
    }

    .newsletter-btn {
        width: 100%;
    }

}


/* ==============================
   HOTEL FOOTER
   ============================== */

.hotel-footer {
    background-color: #071b2d;
    color: #ffffff;
    padding-top: 50px;
}


/* Footer Headings */

.hotel-footer h3 {
    font-family: Georgia, serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.hotel-footer h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--theme-color);
}


/* About */

.footer-about p {
    color: #c8c8c8;
    font-size: 13px;
    line-height: 1.7;
    max-width: 330px;
}


/* Social */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c89520;
    border-radius: 50%;
    color: var(--theme-color);
    text-decoration: none;
}

.footer-social a:hover {
    background-color: var(--theme-color-hover);
    color: white;
}

/* Links */

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c8c8c8;
    text-decoration: none;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--theme-color-hover);
}


/* Contact */

.footer-contact p {
    color: #c8c8c8;
    font-size: 13px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--theme-color);
    margin-right: 8px;
}

/* ==============================
   FOOTER BOTTOM
   ============================== */

.footer-bottom {
    margin-top: 40px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 11px;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    font-size: 11px;
}

.footer-bottom a:hover {
    color: var(--theme-color-hover);
}

.footer-bottom span {
    color: #555;
    margin: 0 8px;
}


/* ==============================
   FOOTER MOBILE
   ============================== */

@media (max-width: 767.98px) {

    .hotel-footer {
        padding-top: 40px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        margin-bottom: 30px;
    }

    .footer-bottom {
        margin-top: 10px;
    }

    .footer-bottom .text-md-end {
        text-align: left !important;
        margin-top: 8px;
    }
}


/* ==============================
   PAGE HEADER
   ============================== */

.page-header {
    min-height: 250px;

    background-image:
        linear-gradient(rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.55)),
        url("../images/hero.jpeg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-content {
    color: white;
}

.page-header-subtitle {
    color: #d4a326;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.page-header h1 {
    font-family: Georgia, serif;
    font-size: 44px;
    font-weight: 700;
    margin: 8px 0 10px;
}

.page-header p {
    margin: 0;
    font-size: 15px;
    color: #eeeeee;
}

@media (max-width: 767.98px) {

    .page-header {
        min-height: 220px;
    }

    .page-header h1 {
        font-size: 34px;
    }

    .page-header p {
        font-size: 14px;
    }

}


/* ==============================
   ROOMS SECTION
   ============================== */

.rooms-section {
    padding: 70px 0;
    background-color: #ffffff;
}

/* Section Heading */

.section-heading {
    margin-bottom: 40px;
}

.section-heading span {
    color: #c89520;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.section-heading h2 {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    margin: 8px 0 12px;
}

.section-heading p {
    color: #666;
    font-size: 14px;
    margin: 0 auto;
    max-width: 600px;
}

/* Room Card */

.room-card {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Room Image */

.room-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* Card Body */

.room-card-body {
    padding: 22px;
}

.room-card-body h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.room-card-body p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    min-height: 42px;
}

/* Features */

.room-features {
    display: flex;
    gap: 20px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 12px 0;
    margin: 18px 0;
}

.room-features span {
    color: #555;
    font-size: 12px;
}

.room-features i {
    color: #c89520;
    margin-right: 4px;
}


/* Bottom */

.room-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-bottom strong {
    color: #c89520;
    font-size: 18px;
}

.room-bottom small {
    color: #777;
    font-size: 11px;
    font-weight: normal;
}


/* Button */

.room-btn {
    background-color: #c89520;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 3px;
}

.room-btn:hover {
    background-color: #a97810;
    color: #ffffff;
}

/* ==============================
   ROOM AMENITIES
   ============================== */

.room-amenities {
    padding: 70px 0;
    background-color: #f8f8f8;
}

.amenities-content {
    padding-right: 40px;
}

.section-label {
    color: #c89520;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
}

.amenities-content h2 {
    font-family: Georgia, serif;
    font-size: 34px;
    line-height: 1.2;
    margin: 10px 0 15px;
}

.amenities-content>p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Amenity */

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    padding: 14px;
    border: 1px solid #eeeeee;
}

.amenity-item>i {
    color: #c89520;
    font-size: 25px;
}


.amenity-item h6 {
    margin: 0 0 3px;
    font-size: 13px;
}


.amenity-item p {
    margin: 0;
    color: #777;
    font-size: 11px;
}


/* Image */

.amenities-image {
    overflow: hidden;
}

.amenities-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Mobile */

@media (max-width: 991.98px) {

    .amenities-content {
        padding-right: 0;

        margin-bottom: 30px;
    }

}


@media (max-width: 575.98px) {

    .room-amenities {
        padding: 50px 0;
    }

    .amenities-content h2 {
        font-size: 28px;
    }

    .amenities-image img {
        height: 280px;
    }

}

/* ==============================
   COMMON PAGE HERO
   ============================== */
.about-hero {
    background-image: url("../images/hero.jpeg");
}

.page-hero {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: white;
}

.page-hero-content span {
    display: block;
    color: #c89520;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.page-hero-content h1 {
    color: white;
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero-content p {
    color: white;
    font-size: 16px;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {

    .page-hero {
        min-height: 220px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .page-hero-content p {
        font-size: 14px;
    }

}

/* ==============================
   ABOUT HOTEL SECTION
   ============================== */

.about-section {
    padding: 90px 0;
    background-color: #fff;
}


/* Image */

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}


/* Content */

.about-content {
    padding-left: 50px;
}

.section-subtitle {
    display: block;
    color: #c89520;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.about-content h2 {
    font-family: Georgia, serif;
    color: #111;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* Highlights */

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 25px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.highlight-item i {
    color: #c89520;
    font-size: 17px;
}

/* Button */

.about-btn {
    background-color: #c89520;
    color: white;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.about-btn:hover {
    background-color: #a97810;
    color: white;
}


@media (max-width: 991.98px) {

    .about-section {
        padding: 60px 0;
    }

    .about-image img {
        height: 350px;
    }

    .about-content {
        padding-left: 0;
        padding-top: 40px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

}


/* ==============================
   WHY CHOOSE US
   ============================== */

.why-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.section-heading span {
    display: block;
    color: #c89520;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    color: #111;
    margin-bottom: 12px;
}

.section-heading p {
    color: #666;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}


/* Why Card */

.why-card {
    height: 100%;
    background-color: white;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.why-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #c89520;
    border-radius: 50%;
    color: #c89520;
    font-size: 25px;
    margin-bottom: 20px;
}

.why-card h5 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #222;
}

.why-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* ==============================
   RESTAURANT HERO
   ============================== */

.restaurant-hero {
    background-image: url("../images/restaurant.jpeg");
}

/* ==============================
   RESTAURANT INTRODUCTION
   ============================== */

.restaurant-intro {
    padding: 90px 0;
    background-color: #fff;
}

/* Image */

.restaurant-image {
    overflow: hidden;
}

.restaurant-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Content */

.restaurant-content {
    padding-left: 50px;
}

.restaurant-content h2 {
    font-family: Georgia, serif;
    color: #111;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.restaurant-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* Restaurant Highlights */

.restaurant-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.restaurant-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.restaurant-highlight i {
    color: #c89520;
    font-size: 28px;
}

.restaurant-highlight strong {
    display: block;
    color: #222;
    font-size: 14px;
}

.restaurant-highlight small {
    display: block;
    color: #777;
    font-size: 12px;
    margin-top: 3px;
}

/* Button */

.restaurant-btn {
    background-color: #c89520;
    color: white;
    padding: 12px 22px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.restaurant-btn:hover {
    background-color: #a97810;
    color: white;
}

@media (max-width: 991.98px) {

    .restaurant-intro {
        padding: 60px 0;
    }

    .restaurant-image img {
        height: 350px;
    }

    .restaurant-content {
        padding-left: 0;
        padding-top: 40px;
    }

    .restaurant-content h2 {
        font-size: 34px;
    }

    .restaurant-highlights {
        grid-template-columns: 1fr;
    }

}


/* ==============================
   RESTAURANT CUISINES
   ============================== */

.cuisine-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.cuisine-card {
    background-color: white;
    height: 100%;
    border: 1px solid #eee;
    overflow: hidden;
    transition: 0.3s;
}

.cuisine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cuisine-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.cuisine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.cuisine-card:hover .cuisine-image img {
    transform: scale(1.05);
}

.cuisine-content {
    text-align: center;
    padding: 25px;
}

.cuisine-content i {
    color: #c89520;
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.cuisine-content h4 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.cuisine-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==============================
   RESTAURANT GALLERY
   ============================== */

.restaurant-gallery {
    padding: 80px 0;
    background-color: white;
}

.restaurant-gallery-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 30px 20px 10px;
    scrollbar-width: none;
}

.restaurant-gallery-scroll img {
    flex: 0 0 320px;
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
}

.restaurant-gallery-scroll::-webkit-scrollbar {
    display: none;
}

.restaurant-gallery-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.restaurant-gallery-scroll::-webkit-scrollbar-thumb {
    background: #c89520;
    border-radius: 10px;
}

/* Mobile */

@media (max-width: 576px) {

    .restaurant-gallery-scroll img {
        flex: 0 0 280px;

        width: 280px;
        height: 200px;
    }

}

/* ==============================
   MENU SECTION
   ============================== */

.menu-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

/* ==============================
   MENU CARD
   ============================== */

.menu-card {
    background-color: white;
    border: 1px solid #eeeeee;
    text-align: center;
    padding: 45px 30px;
    height: 100%;
    transition: 0.3s;
}


/* Card Hover */

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* ==============================
   MENU ICON
   ============================== */

.menu-card i {
    display: inline-block;
    color: #c89520;
    font-size: 42px;
    margin-bottom: 20px;
}


/* ==============================
   MENU TITLE
   ============================== */

.menu-card h3 {
    font-family: Georgia, serif;
    font-size: 26px;
    margin-bottom: 15px;
}


/* ==============================
   MENU DESCRIPTION
   ============================== */

.menu-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto 25px;
}


/* ==============================
   VIEW MENU BUTTON
   ============================== */

.menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    height: 42px !important;
    padding: 0 18px !important;
    color: #c89520;
    background-color: transparent;
    border: 1px solid #c89520;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}


/* Button Hover */

.menu-btn:hover {
    background-color: #c89520;
    color: white;
}


/* ==============================
   BUTTON ARROW
   ============================== */

.menu-btn i {
    margin-left: 8px;
    margin-bottom: 0;
    font-size: 14px;
}


/* ==============================
   MOBILE
   ============================== */

@media (max-width: 767.98px) {

    .menu-section {
        padding: 60px 0;
    }

    .menu-card {
        padding: 35px 25px;
    }

    .menu-card h3 {
        font-size: 24px;
    }

}


/* ==================================================
   BANQUET PAGE
   ================================================== */

/* ==================================================
   COMMON PAGE HERO
   ================================================== */

.page-hero {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark overlay */

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
}


/* Hero content */

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 50px 0;
}


/* Small heading */

.page-hero-content span {
    display: block;
    color: #c89520;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 12px;
}


/* Main heading */

.page-hero-content h1 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Description */

.page-hero-content p {
    font-size: 16px;
    margin-bottom: 0;
    color: white;
}

/* ==================================================
   BANQUET HERO
   ================================================== */

.banquet-hero {
    background-image: url("../images/banquet.jpeg");
}


/* ==================================================
   COMMON SECTION
   ================================================== */

.section-padding {
    padding: 80px 0;
}


.section-light {
    background-color: #f8f8f8;
}


/* ==================================================
   BANQUET INTRODUCTION
   ================================================== */

.banquet-intro {
    background-color: #ffffff;
}


/* Image wrapper */

.banquet-intro-image {
    width: 100%;
    overflow: hidden;
}


/* Image */

.banquet-intro-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}


/* Paragraph */

.banquet-intro-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* ==================================================
   EVENT SECTION
   ================================================== */

.banquet-events {
    background-color: #f8f8f8;
}


/* Event card */

.banquet-card {
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Hover */

.banquet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* Event icon circle */

.banquet-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border: 1px solid #c89520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */

.banquet-icon i {
    color: #c89520;
    font-size: 27px;
}


/* Event title */

.banquet-card h3 {
    font-family: Georgia, serif;
    font-size: 25px;
    color: #222;
    margin-bottom: 12px;
}

/* Event description */

.banquet-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* ==================================================
   BANQUET FACILITIES
   ================================================== */

.banquet-facilities {
    background-color: #ffffff;
}


/* Facility */

.banquet-facility {
    text-align: center;
    padding: 25px 15px;
}


/* Facility icon */

.banquet-facility i {
    display: block;
    color: #c89520;
    font-size: 32px;
    margin-bottom: 12px;
}


/* Facility name */

.banquet-facility h6 {
    color: #333;
    font-size: 14px;
    margin: 0;
}


/* ==================================================
   BANQUET GALLERY
   ================================================== */

.banquet-gallery {
    background-color: #f8f8f8;
}


/* Gallery item */

.banquet-gallery-item {
    overflow: hidden;
    width: 100%;
}


/* Gallery image */

.banquet-gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Hover */

.banquet-gallery-item:hover img {
    transform: scale(1.03);
}


/* ==================================================
   BANQUET CTA
   ================================================== */

.banquet-cta {
    padding: 80px 0;
    background-color: #061b32;
    color: white;
    text-align: center;
}


/* CTA heading */

.banquet-cta h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    margin-bottom: 12px;
}

/* CTA paragraph */

.banquet-cta p {
    color: #d0d7df;
    font-size: 15px;
    margin-bottom: 25px;
}

/* ==================================================
   BANQUET MOBILE
   ================================================== */

@media (max-width: 991.98px) {

    /* Page hero */

    .page-hero {
        min-height: 240px;
    }


    .page-hero-content {
        padding: 40px 0;
    }


    .page-hero-content h1 {
        font-size: 40px;
    }


    /* Sections */

    .section-padding {
        padding: 60px 0;
    }


    /* Intro image */

    .banquet-intro-image img {
        height: 350px;
    }


    /* Event cards */

    .banquet-card {
        padding: 35px 20px;
    }


    /* Gallery */

    .banquet-gallery-item img {
        height: 220px;
    }


    /* CTA */

    .banquet-cta {
        padding: 60px 20px;
    }


    .banquet-cta h2 {
        font-size: 32px;
    }

}


/* ==================================================
   SMALL MOBILE
   ================================================== */

@media (max-width: 575.98px) {

    /* Hero */

    .page-hero {
        min-height: 220px;
    }


    .page-hero-content h1 {
        font-size: 34px;
    }


    .page-hero-content span {
        font-size: 10px;

        letter-spacing: 3px;
    }


    .page-hero-content p {
        font-size: 14px;
    }


    /* Intro */

    .banquet-intro-image img {
        height: 300px;
    }


    /* Cards */

    .banquet-card {
        padding: 30px 20px;
    }


    .banquet-card h3 {
        font-size: 22px;
    }


    /* Gallery */

    .banquet-gallery-item img {
        height: 220px;
    }


    /* CTA */

    .banquet-cta h2 {
        font-size: 28px;
    }

}

/* ==============================
   GALLERY PAGE
   ============================== */
/* ==============================
   GALLERY GRID
   ============================== */

.gallery-grid {
    margin-top: 35px;
}

.gallery-hero {
    background-image: url("../images/hero.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Gallery Image */

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* Hover */

.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* ==============================
   GALLERY MOBILE
   ============================== */

@media (max-width: 991.98px) {

    .gallery-img {
        height: 240px;
    }

}


@media (max-width: 575.98px) {

    .gallery-img {
        height: 190px;
    }

}


/* ==================================================
   FACILITIES PAGE
   ================================================== */

/* ==================================================
   FACILITIES HERO
   ================================================== */

.facilities-hero {
    background-image: url("../images/hero.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ==================================================
   FACILITIES INTRO
   ================================================== */

.facilities-intro {
    background-color: #ffffff;
}


/* ==================================================
   FACILITY CARD
   ================================================== */

.facility-page-card {
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}


/* Hover */

.facility-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* Icon */

.facility-page-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border: 1px solid #c89520;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Icon */

.facility-page-icon i {
    color: #c89520;
    font-size: 27px;
}

/* Title */

.facility-page-card h4 {
    font-family: Georgia, serif;
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

/* Description */

.facility-page-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* ==================================================
   FACILITIES HIGHLIGHT
   ================================================== */

.facilities-highlight {
    background-color: #f8f8f8;
}


/* Image */

.facilities-highlight-image {
    overflow: hidden;
}

.facilities-highlight-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

/* Text */

.facilities-highlight-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 17px;
}


/* ==================================================
   FACILITIES MOBILE
   ================================================== */

@media (max-width: 991.98px) {

    .facilities-highlight-image img {
        height: 350px;
    }

}


@media (max-width: 575.98px) {

    .facility-page-card {
        padding: 30px 15px;
    }

    .facility-page-card h4 {
        font-size: 19px;
    }

    .facility-page-card p {
        font-size: 13px;
    }

    .facilities-highlight-image img {
        height: 300px;
    }

}


/* ==================================================
   CONTACT PAGE
   ================================================== */

/* ==================================================
   CONTACT HERO
   ================================================== */

.contact-hero {
    background-image: url("../images/hero.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* ==================================================
   CONTACT SECTION
   ================================================== */

.contact-section {
    background-color: #ffffff;
}


/* Intro text */

.contact-intro-text {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}


/* ==================================================
   CONTACT INFORMATION
   ================================================== */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}


/* Icon */

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #c89520;
    color: #c89520;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Icon size */

.contact-info-icon i {
    font-size: 20px;
}


/* Information heading */

.contact-info-item h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}


/* Information text */

.contact-info-item p {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* ==================================================
   CONTACT FORM
   ================================================== */

.contact-form-box {
    background-color: #f8f8f8;
    border: 1px solid #eeeeee;
    padding: 40px;
}


/* Form heading */

.contact-form-box h3 {
    font-family: Georgia, serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: #222;
}


/* Form description */

.contact-form-box>p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}


/* Labels */

.contact-form-box label {
    display: block;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}


/* Inputs */

.contact-form-box .form-control {
    height: 45px;
    border: 1px solid #dddddd;
    border-radius: 3px;
    font-size: 13px;
    padding: 10px 12px;
}


/* Textarea */

.contact-form-box textarea.form-control {
    height: auto;
    resize: vertical;
}


/* Focus */

.contact-form-box .form-control:focus {
    border-color: #c89520;
    box-shadow: 0 0 0 0.15rem rgba(200, 149, 32, 0.12);
}


/* ==================================================
   CONTACT BUTTON
   ================================================== */

.contact-submit-btn {
    background-color: #c89520;
    color: white;
    height: 45px;
    padding: 0 22px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}


.contact-submit-btn:hover {
    background-color: #a97810;
    color: white;
}


.contact-submit-btn i {
    margin-left: 8px;
    font-size: 14px;
}


/* ==================================================
   MAP
   ================================================== */

.contact-map-section {
    background-color: #f8f8f8;
}


.contact-map {
    width: 100%;
    line-height: 0;
}


.contact-map iframe {
    width: 100%;
    display: block;
}


/* ==================================================
   CONTACT CTA
   ================================================== */

.contact-cta {
    background-color: #061b32;
    color: white;
    text-align: center;
    padding: 75px 0;
}


.contact-cta h2 {
    font-family: Georgia, serif;
    font-size: 38px;
    margin-bottom: 12px;
}


.contact-cta p {
    color: #d0d7df;
    font-size: 15px;
    margin-bottom: 25px;
}


/* ==================================================
   CONTACT MOBILE
   ================================================== */

@media (max-width: 991.98px) {

    .contact-form-box {
        padding: 30px;
    }

    .contact-cta {
        padding: 60px 20px;
    }

    .contact-cta h2 {
        font-size: 32px;
    }

}


@media (max-width: 575.98px) {

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-form-box h3 {
        font-size: 24px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;
    }

    .contact-cta h2 {
        font-size: 28px;
    }

}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}