
/*------------------------------------------------- */
/* = Preloader Styles */
/*------------------------------------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EDE5DB;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-dots {
    display: flex;
    align-items: center;
}

.loader-dots .dot {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #AC664D;
    border-radius: 50%;
    margin: 0 5px;
    animation: pulse 1.4s infinite ease-in-out both;
}

.loader-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loader-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

.main-content {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 0.5s, opacity 0.5s ease;
}

.main-content.loaded {
    visibility: visible;
    opacity: 1;
}

/*------------------------------------------------- */
/* = General Styles */
/*------------------------------------------------- */
section .container {
    padding: 40px 15px;
    text-align: center;
}

section .header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

section .header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    font-family: 'Great Vibes', cursive;
    text-transform: none;
}

section .header h2 {
    font-size: 32px;
    color: #111111;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

section .content-text {
    color: #111111;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    section .header h1 {
        font-size: 44px;
        margin-bottom: 10px;
    }

    section .header h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    section .header h1 {
        font-size: 40px;
    }

    section .header h2 {
        font-size: 24px;
    }
}

/*------------------------------------------------- */
/* = Background / Color Styles */
/*------------------------------------------------- */
.bg-light {
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd1 100%);
}

.bg-dark {
    background: #AC664D !important;
}

.color-brown {
    color: #AC664D !important;
}

.color-black {
    color: #111111 !important;
}

.color-cream {
    color: #EDE5DB !important;
}

/*------------------------------------------------- */
/* = Buttons */
/*------------------------------------------------- */
.btn--main {
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 2;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    text-align: center;
    border-width: 2px !important;
    border-radius: 0;
    padding: 0 !important;
    line-height: 43px !important;
    width: 170px;
    height: 45px;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
}

/* Button Primary */
.btn--primary {
    background-color: #AC664D;
    color: #EDE5DB;
    border: 2px solid #AC664D;
}

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
    background-color: transparent;
    color: #AC664D;
}

.btn--primary.btn--inverse {
    background-color: transparent;
    color: #AC664D;
}

.btn--primary.btn--inverse:hover,
.btn--primary.btn--inverse:focus,
.btn--primary.btn--inverse:active {
    background-color: #AC664D;
    color: #EDE5DB;
}

/* Button Secondary */
.btn--secondary {
    background-color: #111111;
    color: #EDE5DB;
    border: 2px solid #111111;
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active {
    background-color: transparent;
    color: #111111;
}

.btn--secondary.btn--inverse {
    background-color: transparent;
    color: #111111;
}

.btn--secondary.btn--inverse:hover,
.btn--secondary.btn--inverse:focus,
.btn--secondary.btn--inverse:active {
    background-color: #111111;
    color: #EDE5DB;
}

/* Button White */
.btn--white {
    background-color: #EDE5DB;
    color: #AC664D;
    border: 2px solid #EDE5DB;
}

.btn--white:hover,
.btn--white:focus,
.btn--white:active {
    background-color: transparent;
    color: #EDE5DB;
}

/* Button Rounded */
.btn--rounded {
    border-radius: 50px;
}

/*------------------------------------------------- */
/* = About Section */
/*------------------------------------------------- */
.about-section .container .header {
    margin-bottom: 20px !important;
}

.about-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.about-section .col-left,
.about-section .col-right {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-section h3 {
    font-size: 23px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.about-section .img-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.about-section .img-container .img-card {
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section .img-container .img-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-section .img-container .img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.about-section .img-container .img-card:hover img {
    transform: scale(1.1);
}

.about-section .img-container .img-card:first-child {
    grid-row: 1 / 2;
}

.about-section .img-container .img-card:nth-child(2) {
    grid-row: 1 / 2;
}

.about-section .img-container .img-card:nth-child(3) {
    grid-row: 2 / 3;
    grid-column: 1 / 3;
}

@media (max-width: 992px) {
    .about-section .container {
        padding: 40px 30px;
    }

    .about-section .row {
        flex-direction: column;
        gap: 0px;
    }

    .about-section .col-left {
        margin-bottom: 20px;
    }
}

/*------------------------------------------------- */
/* = Category Section */
/*------------------------------------------------- */
.category-section .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.category-section .cards-container .card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.category-section .cards-container .card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, #AC664D 0%, #ffffff 100%);
}

.category-section .cards-container .card:hover img {
    transform: scale(1.5);
}

.category-section .cards-container .card .card-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.category-section .cards-container .card:hover .card-image {
    transform: scale(1.05);
}

.category-section .cards-container .card .card-title {
    font-size: 28px;
    color: #AC664D;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .category-section .container .cards-container {
        grid-template-columns: 1fr;
    }

    .category-section .container .cards-container .card .card-image {
        height: 200px;
    }

    .category-section .container .cards-container .card .card-title {
        font-size: 20px;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .category-section .container .cards-container {
        grid-template-columns: 1fr;
    }

    .category-section .container .cards-container .card {
        padding: 25px;
    }

    .category-section .container .cards-container .card .card-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .category-section .container .cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .category-section .container .cards-container .card {
        padding: 20px;
    }

    .category-section .container .cards-container .card .card-image {
        height: 220px;
    }

    .category-section .container .cards-container .card .card-title {
        font-size: 25px;
    }
}

@media (min-width: 1400px) {
    .category-section .container .cards-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1200px;
        margin: 40px auto 0;
    }
}

/*------------------------------------------------- */
/* = Grid Section */
/*------------------------------------------------- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    border: 1px solid #111111;
    border-radius: 15px;
}

.grid-container .grid-item {
    padding: 50px 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.grid-container .grid-item:nth-child(-n+4) {
    border-bottom: 1px solid #111111;
}

.grid-container .grid-item:not(:nth-child(4n))::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -3.5px;
    transform: translateY(-50%);
    width: 6px;
    height: 35px;
    background-color: #AC664D;
    border-radius: 3px;
    z-index: 1;
}

.grid-container .grid-item:not(:nth-child(4n)) {
    border-right: 1px solid #111111;
}

.grid-container .grid-item .grid-icon {
    height: 60px;
    margin-bottom: 20px;
}

.grid-container .grid-item .grid-icon svg {
    transition: transform 0.3s ease;
}

.grid-container .grid-item .grid-title {
    font-size: 16px;
    color: #111111;
    font-weight: 500;
}

.grid-container .grid-item:hover {
    background-color: #d5d0c9;
}

.grid-container .grid-item:hover .grid-icon svg {
    transform: scale(1.15);
}

@media (min-width: 992px) {
    .grid-container .grid-item:nth-child(1) {
        border-radius: 15px 0 0 0;
    }

    .grid-container .grid-item:nth-child(4) {
        border-radius: 0 15px 0 0;
    }

    .grid-container .grid-item:nth-child(5) {
        border-radius: 0 0 0 15px;
    }

    .grid-container .grid-item:nth-child(8) {
        border-radius: 0 0 15px 0;
    }
}

@media (min-width:480px) and (max-width: 992px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-container .grid-item:nth-child(2n)::after {
        display: none;
    }

    .grid-container .grid-item:not(:nth-child(2n))::after {
        display: block;
    }

    .grid-container .grid-item:nth-child(3)::after {
        display: block;
    }

    .grid-container .grid-item:nth-child(-n+6) {
        border-bottom: 1px solid #111111;
    }

    .grid-container .grid-item:nth-child(2),
    .grid-container .grid-item:nth-child(6) {
        border-right: none;
    }

    .grid-container .grid-item:nth-child(1) {
        border-radius: 15px 0 0 0;
    }

    .grid-container .grid-item:nth-child(2) {
        border-radius: 0 15px 0 0;
    }

    .grid-container .grid-item:nth-child(7) {
        border-radius: 0 0 0 15px;
    }

    .grid-container .grid-item:nth-child(8) {
        border-radius: 0 0 15px 0;
    }
}

@media (max-width: 480px) {
    .grid-container {
        grid-template-columns: 1fr;
        border-top: 1px solid #111111;
        border-bottom: 1px solid #111111;
    }

    .grid-container .grid-item {
        border-bottom: 1px solid #111111;
    }

    .grid-container .grid-item:last-child {
        border-bottom: none;
    }

    .grid-container .grid-item,
    .grid-container .grid-item:nth-child(-n+7) {
        border-right: none;
    }

    .grid-container .grid-item::after,
    .grid-container .grid-item:not(:nth-child(6n))::after {
        display: none;
    }

    .grid-container .grid-item:nth-child(1) {
        border-radius: 15px 15px 0 0;
    }

    .grid-container .grid-item:nth-child(8) {
        border-radius: 0 0 15px 15px;
    }
}

/*------------------------------------------------- */
/* = Restaurant About Section */
/*------------------------------------------------- */
.restaurant-about-section .container .header {
    margin-bottom: 20px !important;
}

.restaurant-about-section .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.restaurant-about-section .col-left,
.restaurant-about-section .col-right {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.restaurant-about-section .col-left {
    margin-top: 20px;
}

.restaurant-about-section .img-container {
    position: relative;
    height: 450px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.restaurant-about-section .img-bg {
    position: absolute;
    border-radius: 15px;
    z-index: 1;
    width: 60%;
    height: 250px;
    top: 20%;
    left: 20%;
    background: #EDE5DB4D;
}

.restaurant-about-section .img-card {
    width: 60%;
    height: 250px;
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-about-section .img-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.restaurant-about-section .img-card:hover:hover img {
    transform: scale(1.1);
}

.restaurant-about-section .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.restaurant-about-section .card-1 {
    top: 0;
    left: 0;
}

.restaurant-about-section .card-2 {
    top: 40%;
    left: 40%;
}

.timings-container {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    justify-content: center;
}

.timing-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.timing-icon {
    color: #AC664D;
    background-color: #EDE5DB;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.timing-item:hover .timing-icon {
    transform: scale(1.15);
    background-color: #111111;
}

.timing-icon svg {
    width: 24px;
    height: 24px;
    stroke: #AC664D;
}

@media (max-width: 992px) {
    .restaurant-about-section .container {
        padding: 40px 30px;
    }

    .restaurant-about-section .row {
        flex-direction: column-reverse;
        gap: 0px;
    }

    .restaurant-about-section .col-left,
    .restaurant-about-section .col-right {
        min-width: 500px;
    }

    .restaurant-about-section .col-left {
        margin-top: 0px;
    }

    .restaurant-about-section .col-right {
        margin-bottom: 50px;
    }
}

@media (max-width: 548px) {

    .restaurant-about-section .col-left,
    .restaurant-about-section .col-right {
        min-width: 300px;
        height: 100px;
    }

    .timings-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/*------------------------------------------------- */
/* = Food Menu Section */
/*------------------------------------------------- */
.food-menu-section {
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.food-menu-section .food-items-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 10px;
}

.food-items-viewport .food-items-container {
    display: flex;
    transition: transform 0.5s ease-in;
}

.food-items-container .food-item {
    text-align: center;
    cursor: pointer;
    flex: 0 0 25%;
    padding: 0 20px;
    box-sizing: border-box;
}

.food-item .food-image-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.food-item .food-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed #AC664D;
    border-radius: 50%;
}

.food-item:hover .food-image-container::before {
    animation: spin 10s linear infinite;
}

.food-item .food-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 1s ease-in;
}

.food-item .food-title {
    font-size: 20px;
    color: #AC664D;
    font-weight: 500;
}

.food-menu-section .slider-nav {
    position: absolute;
    top: 59%;
    left: 0;
    right: 0;
    display: none;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.food-menu-section:hover .slider-nav {
    display: flex;
}

.food-menu-section .slider-nav .nav-arrow {
    background-color: transparent;
    border: 1px solid #AC664D;
    padding: 10px;
    cursor: pointer;
    font-size: 12px;
    color: #AC664D;
    transition: all 0.3s ease;
}

.food-menu-section .slider-nav .nav-arrow:hover {
    background-color: #AC664D;
    color: #ffffff;
    border-color: #AC664D;
}

@media (max-width: 1216px) {
    .food-items-container .food-item {
        flex: 0 0 33.33%;
    }
}

@media (max-width: 992px) {
    .food-items-container .food-item {
        flex: 0 0 50%;
    }

    .food-menu-section .slider-nav {
        top: 58%;
    }
}

@media (max-width: 670px) {
    .food-items-container .food-item {
        flex: 0 0 100%;
    }
}

/*------------------------------------------------- */
/* = Gallery Section */
/*------------------------------------------------- */
.gallery-section {
    padding: 40px 20px 10px;
    text-align: center;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 350px;
    padding-bottom: 50px;
    overflow: hidden;
    border-radius: 15px;
}

.gallery-carousel .swiper-slide {
    border-radius: 15px;
    overflow: hidden;
}

.gallery-carousel .gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 100%;
}

.gallery-carousel .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-carousel .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(237, 229, 219, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .expand-icon {
    width: 50px;
    height: 50px;
    position: relative;
    transform: scale(1);
    transition: transform 0.4s ease;
}

.gallery-overlay .expand-icon::before,
.gallery-overlay .expand-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #AC664D;
    border-radius: 2px;
}

.gallery-overlay .expand-icon::before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-overlay .expand-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.swiper-pagination-bullet {
    background: #EDE5DB !important;
}

/*------------------------------------------------- */
/* = Lightbox */
/*------------------------------------------------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    place-items: center;
    padding: 50px 20px;
    box-sizing: border-box;
    z-index: 10000;
}

.lightbox.show {
    display: grid;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
}

.lightbox-header {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.lightbox-counter {
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.lightbox-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 40px;
    line-height: 1;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 30px;
    cursor: pointer;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
    font-weight: 900;
}

.lightbox-nav:hover {
    background-color: #AC664D;
}

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

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

@media (max-width: 1200px) {
    .lightbox.show {
        display: grid;
    }

    .lightbox-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90vw;
    }
}

@media (max-width: 768px) {
    .lightbox-nav {
        font-size: 20px;
        padding: 10px;
    }
}

/*------------------------------------------------- */
/* = Facilities Section */
/*------------------------------------------------- */
.facilities-section .grid-container {
    border: 0;
    border-top: 1px solid #111111;
    border-radius: 0;
}

.facilities-section .grid-container .grid-item {
    border-radius: 0;
}

/*-------------------------------------------------*/
/* = Banquet About Section */
/*-------------------------------------------------*/
.banquet-about-section .img-container {
    height: 550px;
    display: block;
}

.banquet-about-section .img-container .img-card {
    position: absolute;
    border: 4px solid #EDE5DB;
}

.banquet-about-section .img-container .img-card:hover {
    z-index: 10;
}

.banquet-about-section .img-container .card-1 {
    width: 70%;
    height: 60%;
    top: 0;
    right: 0;
    z-index: 2;
}

.banquet-about-section .img-container .card-2 {
    width: 55%;
    height: 50%;
    top: 25%;
    left: 0;
    z-index: 3;
}

.banquet-about-section .img-container .card-3 {
    width: 60%;
    height: 45%;
    bottom: 0;
    right: 5%;
    z-index: 1;
}

@media (max-width: 992px) {
    .banquet-about-section .col-left {
        margin-bottom: 40px;
    }

    .banquet-about-section .col-right {
        min-width: 500px;
    }

    .banquet-about-section .img-container {
        height: 450px;
    }
}

@media (max-width: 548px) {
    .banquet-about-section .col-right {
        min-width: 300px;
    }
}

/*------------------------------------------------- */
/* = Events Section */
/*------------------------------------------------- */
.events-section .grid-container .grid-item:not(:nth-child(4n))::after {
    background-color: #EDE5DB;
}

.events-section .grid-container .grid-item:hover {
    background-color: #a37261;
}

/*------------------------------------------------- */
/* = Full Slider */
/*------------------------------------------------- */
.full-slider .gallery-carousel {
    width: 50%;
    height: 500px;
    margin: 0 auto;
}

.full-slider h3 {
    font-size: 19px;
    margin: 10px 0;
}

@media (max-width: 1400px) {
    .full-slider .gallery-carousel {
        width: 60%;
        height: 450px;
    }
}

@media (max-width: 992px) {
    .full-slider .gallery-carousel {
        width: 70%;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .full-slider .gallery-carousel {
        width: 80%;
    }
}

@media (max-width: 580px) {
    .full-slider .gallery-carousel {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 420px) {
    .full-slider .gallery-carousel {
        height: 300px;
    }
}

/*-------------------------------------------------*/
/* = Rooms About Section */
/*-------------------------------------------------*/
.rooms-about-section .grid-image-col {
    flex: 1 1 60%;
}

.rooms-about-section .grid-image-col .image-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
    height: 415px;
}

.grid-image-col .grid-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-image-col .grid-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.grid-image-col .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.grid-image-col .grid-item:hover img {
    transform: scale(1.1);
}

.grid-image-col .item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.grid-image-col .item-2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.grid-image-col .item-3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

@media (max-width: 992px) {
    .rooms-about-section .grid-image-col {
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (max-width: 548px) {
    .rooms-about-section .grid-image-col .image-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 220px);
        height: auto;
    }

    .grid-image-col .item-1,
    .grid-image-col .item-2,
    .grid-image-col .item-3 {
        grid-column: auto;
        grid-row: auto;
    }
}

/*-------------------------------------------------*/
/* = Rooms List Section */
/*-------------------------------------------------*/
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.room-card {
    background-color: #F8F5F0;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.room-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.room-content {
    padding: 25px 30px 30px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #AC664D;
    margin-bottom: 15px;
}

.room-description {
    font-size: 16px;
    line-height: 1.6;
    color: #111111;
    flex-grow: 1;
    margin-bottom: 25px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #E0DACE;
    padding-top: 20px;
}

.room-amenities i {
    font-size: 20px;
    color: #AC664D;
}

@media (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 548px) {
    .room-content {
        padding: 20px;
    }

    .room-title {
        font-size: 24px;
    }
}

/*------------------------------------------------- */
/* =  Gallery Page */
/*------------------------------------------------- */
.gallery-filters {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-filters .filter-btn {
    background-color: transparent;
    border: 2px solid #AC664D;
    color: #AC664D;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background-color: #AC664D;
    color: #EDE5DB;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-grid .gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Styles for scroll animation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.gallery-grid .gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-grid .gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-grid .gallery-item.hide {
    display: none;
}

.gallery-grid .gallery-item .gallery-overlay {
    background-color: rgba(172, 102, 77, 0.7);
}

.gallery-grid .gallery-overlay .expand-icon::before,
.gallery-grid .gallery-overlay .expand-icon::after {
    background-color: #EDE5DB;
}

@media (max-width: 520px) {
    .gallery-filters .filter-btn {
        padding: 10px;
        margin: 0 5px;
        font-size: 13px;
        font-weight: 500;
    }
}

/*------------------------------------------------- */
/* =  Contact Section */
/*------------------------------------------------- */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-details-grid .contact-card {
    background: #ffffff;
    padding: 30px 10px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-details-grid .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-card .card-icon {
    font-size: 32px;
    color: #AC664D;
    margin-bottom: 20px;
    line-height: 1;
}

.contact-card h3 {
    font-size: 20px;
    color: #AC664D;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-card p {
    font-size: 14px;
    color: #111111;
    line-height: 1.4;
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: flex-start;
}

.contact-form-container,
.contact-map-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-container h3,
.contact-map-container h3,
.social-media-container h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 500;
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form .form-group input,
.feedback-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.feedback-form .form-group input:focus,
.feedback-form .form-group textarea:focus {
    outline: none;
    border-color: #AC664D;
}

.feedback-form .submit-btn {
    display: inline-block;
    background-color: #AC664D;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.feedback-form .submit-btn:hover {
    background-color: #111111;
}

.contact-form-container #popup {
    width: 314px;
    animation: fadeIn 0.3s ease-in-out;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #EDE5DB;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 1000;
}

.contact-form-container #popup h3 {
    font-size: 24px;
    color: #AC664D;
    margin-bottom: 10px;
}

.contact-form-container #popup p {
    font-size: 16px;
    color: #111111;
    margin-bottom: 20px;
}

.contact-form-container #popup button {
    background-color: #AC664D;
    color: #EDE5DB;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.contact-map-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 480px;
}

.social-media-container {
    text-align: center;
    margin-top: 40px;
}

.social-icons .social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    color: #AC664D;
    font-size: 20px;
    margin: 0 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.social-icons .social-icon:hover {
    background-color: #AC664D;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
    .contact-details-grid {
        margin-bottom: 20px;
    }

    .contact-details-grid,
    .contact-main-content {
        grid-template-columns: 1fr;
    }

    .contact-map-container iframe {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-map-container iframe {
        height: 350px;
    }

    .contact-form-container,
    .contact-map-container {
        padding: 25px;
    }
}

/*------------------------------------------------- */
/* =  Animation */
/*------------------------------------------------- */
.about-section .container .img-container .img-card,
.category-section .container .cards-container .card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.about-section .container .img-container .img-card:nth-child(1),
.category-section .container .cards-container .card:nth-child(1) {
    animation-delay: 0.1s;
}

.about-section .container .img-container .img-card:nth-child(2),
.category-section .container .cards-container .card:nth-child(2) {
    animation-delay: 0.2s;
}

.about-section .container .img-container .img-card:nth-child(3),
.category-section .container .cards-container .card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}