/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    /* Light background for the page */
}

/* //////////////////// Header styles //////////////// */

header {
    position: relative;
    height: 100vh;
    background-color: #121212;
    /* Dark background */
    color: #fff;
    /* White text color */
    overflow: hidden;
}

/* Banner styles */
.banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #ffffff;
    text-align: center;
}

/* Navbar styles */
.navbar {
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    /* background: rgba(0, 0, 0, 0.7); */
    background-color: #fff;
    /* Dark semi-transparent background */
    position: absolute;
    top: 0;
    width: 100%;
    transition: background 0.3s ease;
}

.logo img {
    padding-top: 4px;
    height: 80px;
    width: 120px;
    object-fit: cover;
    /* border-radius: 50%; */
    background-position: center;
    transition: transform 0.3s ease;
}

/* Burger menu */
.burger {
    display: none;
    /* Hidden by default */
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Close icon */
.close {
    display: none;
    /* Hidden by default */
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
    font-weight: 500;
    padding: 1rem 0;
}

.navlink-items {
    margin: 0 1rem;
}

/* Navigation links */
.navlink-items a {
    font-size: 18px;
    color: #080808;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navlink-items a:hover,
.navlink-items a.active {
    color: white;
    background-color: #1683e9;
}

/* ////////////////// Banner slider ///////////////////// */

.mainslider {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slideHead {
    display: flex;
    height: 100%;
    width: 100%;
}

.slideHead img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%);
    /* Darken image for better text visibility */
    transition: transform 0.5s ease;
    /* Add transition for smooth sliding */
}

.slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.controls {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 1rem;
}

.controls button {
    cursor: pointer;
    background-color: #1683e9;
    color: white;
    border: none;
    padding: 12px 14px;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.controls button:hover {
    background-color: #186fc0;
    transform: scale(1.1);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {

    .controls button {
        font-size: 10px;
        padding: 10px;
    }

    .burger {
        display: block;
        color: #080808;
        /* Show burger icon on mobile */
    }

    .nav-links {
        display: none;
        /* Hidden by default */
        z-index: 5;
        flex-direction: column;
        width: 100%;
        /* background: rgba(0, 0, 0, 0.8); */
        background-color: #fff;
        position: absolute;
        top: 82px;
        left: 0;
        text-align: center;
    }

    .navlink-items {
        margin: 10px 20px;
    }

    .nav-links.active {
        display: flex;
        /* Show links when active */
        padding: 20px 0;
    }

    .close {
        display: none;
        color: #080808;
        /* Hidden by default */
    }

    .nav-links.active~.close {
        display: block;
        /* Show close icon when nav is active */
    }
}


/* /////////////////////////// Center text of banner ///////////////////// */
.banner-details {
    user-select: none;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 80vw;
    justify-content: center;
    align-items: center;
    /* z-index: 2; */
}

/* Banner title and description styles */
.banner-title {
    color: #ffffffd2;
    font-size: 3.8rem;
    font-weight: 700;
    margin: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
}

.banner-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns for large screens */
    gap: 30px;
    justify-items: center;
}

.banner-links div {
    text-align: center;
}

.banner-links img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    /* Circular images */
}

/* Tablet view (below 1024px) */
@media (max-width: 1024px) {
    .banner-links {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }
}

/* Mobile view (below 600px) */
@media (max-width: 600px) {
    .banner-links {
        grid-template-columns: repeat(2, 1fr);
        /* 1 column for mobile */
    }

    .banner-links img {
        max-width: 80px;
        /* Adjust image size for mobile */
    }
}



@media (max-width: 480px) {
    .banner-title {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 1.1rem;
    }

    .book-now {
        width: 80%;
        /* Adjusted width for mobile */
    }
}


/* //////////////////// Footer styles //////////////// */
.footer {
    height: fit-content;
    padding: 1rem 10px;
    background: black;
    color: white;
    overflow: hidden;
}

.main-footer {
    display: flex;
    gap: 40px;
    justify-content: space-around;
    align-items: flex-start;
    /* Align items at the start */
    flex-wrap: wrap;
    /* Allow items to wrap on smaller screens */
}

.footer-partone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Change 'start' to 'flex-start' */
    gap: 0.8rem;
    font-size: 14px;
}

.footer-subhead {
    font-size: 26px;
}

.footer-partone p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-partone span a:hover {
    color: rgb(231, 229, 229);
    text-decoration: underline;
}

.footer-parttwo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Change 'start' to 'flex-start' */
    gap: 1.4rem;
}

.footer-parttwo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    display: flex;
    align-items: start;
    gap: 10px;
}

.sub-footer {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
}


/* Responsive styles */
@media (max-width: 768px) {
    .main-footer {
        flex-direction: column-reverse;
        /* Stack items vertically */
        align-items: center;
        /* Center align for smaller screens */
        text-align: center;
        /* Center text */
        gap: 2rem;
    }

    .footer-partone,
    .footer-parttwo {
        align-items: center;
        /* Center align items */
        gap: 0.4rem;
        /* Adjust gap for better spacing */
    }

    .footer-subhead {
        font-size: 24px;
        /* Slightly smaller for mobile */
    }

    .footer-partone span {
        font-size: 12px;
        /* Smaller links */
    }

    .footer-parttwo span {
        font-size: 14px;
        /* Smaller phone numbers */
    }
}

@media (max-width: 480px) {
    .footer-subhead {
        font-size: 16px;
        /* Even smaller for very small screens */
    }

    .footer-partone span {
        font-size: 16px;
        /* Smaller links */
    }

    .footer-parttwo span {
        font-size: 16px;
        /* Smaller phone numbers */
    }
}


/* Parallax Background */
.parallax-section {
    height: fit-content;
    width: 100%;
    background-image: url(./assets/grungeBg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.parallax-title {
    font-weight: bolder;
    font-size: 3rem;
    color: #ffffff;
    margin: 20px 0;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    transition: font-size 0.2s ease;
}

.parallax-section p {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: bold;
    color: white;
    transition: font-size 0.3s ease, margin 0.3s ease, background-color 0.3s ease;
}

.parallax-section:hover p {
    font-size: 22px;
    padding: 5px 0;
    width: 100%;
    text-align: center;
    background-color: #186fc0;
}

.parallax-section:hover .parallax-title {
    font-size: 3.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .parallax-title {
        font-size: 3rem;
    }

    .parallax-section p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .parallax-title {
        font-size: 2.5rem;
    }

    .parallax-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .parallax-title {
        font-size: 2rem;
    }

    .parallax-section p {
        font-size: 12px;
    }
}

/*///////////////////// About section  css //////////////// */

/* About Section */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
    gap: 2rem;
    width: 100%;
    height: fit-content;
}

.about-content {
    flex: 1;
    max-width: 50%;
}

.about-title {
    font-size: 36px;
    color: #333333;
    margin-bottom: 1rem;
    padding: 10px;
    border-left: 5px solid #8DC63F;
}

.about-description {
    font-size: 22px;
    color: #080808;
    line-height: 1.6;
    text-align: justify;
}

/* Image Container */
.about-image-container {
    position: relative;
    flex: 1;
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 80%;
    height: 50vh;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

/* Image Effect using ::before */
.about-image-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 300px;
    height: 300px;
    background-color: #e0e0e0;
    z-index: 0;
    transform: rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-title {
        font-size: 30px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-image {
        height: 45vh;
    }

    .about-image-container::before {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        height: 90vh;
    }

    .about-content {
        max-width: 100%;
    }

    .about-image-container {
        max-width: 100%;
        margin-top: 2rem;
    }

    .about-image {
        height: 35vh;
    }

    .about-image-container::before {
        top: 10px;
        left: 10px;
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .about-section {
        flex-direction: column;
        text-align: justify;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-image-container::before {
        top: 5px;
        left: 5px;
        width: 180px;
        height: 180px;
    }

    .about-section {
        height: 100vh;
    }

    .about-image {
        height: 30vh;
    }
}


/*  ////////////// restaurant   section //////////////////*/

/* Container for the layout */
.restaurant-section {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

/* Image container */
.image-container {
    flex: 1;
    height: 60vh;
    object-fit: contain;
    position: relative;
    border: 3px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-left: 5px solid #8DC63F;
    padding: 10px;
}

/* Content container */
.content-container {
    flex: 1;
    padding-left: 20px;
}

/* Title and subtitle styling */
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #d4a373;
}

.sub-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
    border-left: 5px solid #8DC63F;
    /* Green accent */
    padding-left: 10px;
}

/* Text description styling */
.description {
    font-size: 22px;
    line-height: 1.8;
    color: #080808;
    margin-bottom: 15px;
}

/* Responsive styles */
@media (max-width: 1024px) {

    /* Tablet view */
    .restaurant-section {
        flex-direction: column;
        padding: 30px;
    }

    .content-container {
        padding-left: 0;
    }

    .section-title {
        font-size: 32px;
    }

    .sub-title {
        font-size: 22px;
    }

    .description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {

    /* Mobile view */
    .restaurant-section {
        padding: 20px;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .sub-title {
        font-size: 20px;
        text-align: center;
        margin: 15px 0;
        padding-left: 0;
        border-left: none;
        border-bottom: 3px solid #8DC63F;
        /* Adjust accent line for mobile */
        padding-bottom: 5px;
    }

    .description {
        font-size: 14px;
        text-align: center;
    }

    /* Adjusting image for mobile */
    .image-container {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* About Part 2 */

#about-section {
    padding: 4rem 2rem;
}

.about-section-title {
    text-transform: uppercase;
    color: #d4a373;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.about-section-card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
    margin: 0 auto;
}

.about-section-card {
    flex: 1;
    background-color: white;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.about-section-card-image {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.about-section-card-title {
    padding: 10px;
    padding: 5%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-section-card:hover .about-section-card-title h2 {
    color: #d4a373;
    transition: all ease 0.1s;
}

.about-section-card:hover .about-section-card-description {
    color: #d4a373;
}

.about-section-card-title h2 {
    height: fit-content;
    font-size: 1.5rem;
    color: #333;
}

.about-section-card-description {
    font-size: 1em;
    color: #666;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .about-section-title {
        font-size: 3rem;
    }

    .about-section-card-container {
        width: 90%;
        gap: 1.5rem;
    }

    .about-section-card {
        flex: 1 1 45%;
        max-width: 100%;
    }

    .about-section-card-image {
        height: 150px;
    }

    .about-section-card-title h2 {
        font-size: 1.3rem;
    }

    .about-section-card-description {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .about-section-title {
        font-size: 1.5rem;
    }

    .about-section-card-container {
        flex-direction: column;
        gap: 1rem;
    }

    .about-section-card {
        max-width: 100%;
    }

    .about-section-card-image {
        height: 220px;
    }

    .about-section-card-title h2 {
        font-size: 1.2rem;
    }

    .about-section-card-description {
        font-size: 0.8em;
    }
}


/* /////////////// Gallery section ////////////// */
/* Gallery Section */
.gallery-section {
    padding: 4rem 5.5rem;
    background-color: #ffffff;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    /* Centering the gallery container */
}

.gallery-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #d4a373;
    text-transform: uppercase;
    text-align: center;
}

/* Gallery Container */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 4 items per row for larger screens */
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 10px;
    height: 300px;
    /* Fixed height for gallery items */
}

/* Ensure images fill the item */
.gallery-image {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
    border-radius: 10px;
    background-position: bottom;
}

/* Hover Effect */
.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-image {
    /* opacity: 0.85; */
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
        /* 3 items per row on tablets */
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 items per row for smaller tablets */
    }

    .gallery-item {
        height: 180px;
        /* Adjusted height for smaller screens */
    }

    .gallery-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
        /* 1 item per row on mobile */
    }

    .gallery-item {
        height: 150px;
        /* Adjusted height for mobile */
    }
}


/* ///////////////////// Gallery section 2 ///////////////// */
/* Card Gallery */
.ImageCard {
    background-color: #f5f5f5;
    padding: 2rem;
}

.imagecard-title h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #d4a373;
    text-align: center;
    text-transform: uppercase;
}

/* Grid Layout */
.container {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: center;
    justify-content: center;
}

#room {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}

.card {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card .room-name {
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* Responsive Design */
@media (min-width: 640px) {
    #room {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    #room {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* //// Our amenities //// */

.amenities {
    background-color: white;
    padding: 2rem 0;
}

.amenities h2 {
    font-size: 36px;
    font-weight: bold;
    margin: 0px 0;
    color: #333;
    text-align: center;
    text-transform: uppercase;
}

.amenities-icons {
    padding: 2rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    color: #080808;
    font-size: large;
}


.center-amenities {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3px;
}

@media (max-width: 768px) {
    .amenities-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}


/* /////// Testimonial ////// */

/* Container for the testimonials */
.testimonial-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    background-color: #fff;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    padding: 3rem 2rem;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
}

.testimonial-head {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Title styling */
.title {
    font-size: 2.4rem;
    text-transform: uppercase;
    color: #d4a373;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Individual testimonial card */
.testimonial-card {
    flex: 1;
    max-width: 350px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* Card icon styling */
.card-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-icon svg {
    display: block;
}

/* Quote and author styling */
.quote {
    font-style: italic;
    color: #555;
    font-size: 16px;
    margin: 40px 0 10px;
}

.author {
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

/* ====== Media Queries ====== */

/* Tablet Screens */
@media (max-width: 768px) {
    .testimonial-container {
        padding: 20px 2rem;
    }

    .testimonial-head {
        flex-direction: column;
        /* Stack testimonials vertically */
        gap: 20px;
    }

    .title {
        font-size: 2.5rem;
        /* Adjust title size */
    }

    .testimonial {
        margin-bottom: 15px;
        /* Adjust space between testimonials */
    }

    .quote {
        font-size: 14px;
        /* Adjust font size for smaller screens */
    }

    .author {
        font-size: 16px;
        /* Adjust font size for smaller screens */
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .testimonial-container {
        padding: 20px 1rem;
    }

    .testimonial-head {
        flex-direction: column;
        /* Stack testimonials vertically */
        gap: 35px;
    }

    .title {
        font-size: 2rem;
        /* Adjust title size */
    }

    .testimonial {
        margin-bottom: 15px;
        /* Adjust space between testimonials */
    }

    .quote {
        font-size: 14px;
        /* Adjust font size for smaller screens */
    }

    .author {
        font-size: 16px;
        /* Adjust font size for smaller screens */
    }
}


/* contact form  */

/* Container for flex layout */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 20px;
    width: 100%;
    padding: 2rem 6rem;
    height: fit-content;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px; */
}

/* Form section styling */
/* Updated form section styling */
.form-section {
    flex: 1;
    height: fit-content;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-family: 'Arial', sans-serif;
    width: 100%;
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#bookingForm label {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
}

#bookingForm input,
#bookingForm textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
    color: #333333;
}

#bookingForm input:focus,
#bookingForm textarea:focus {
    outline: none;
    border-color: #4caf50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
    background-color: #ffffff;
}

#bookingForm textarea {
    resize: vertical;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

.btn {
    background-color: #4CAF50;
    color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

.btn:active {
    background-color: #3e8e41;
    transform: scale(0.98);
}

.image-section {
    flex: 1;
}

.image-section img {
    width: 100%;
    height: 105vh;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive form styling */
@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
        flex-direction: column;
    }

    .image-section img {
        height: 50vh;
    }

    .form-section {
        padding: 15px;
    }

    #bookingForm input,
    #bookingForm textarea {
        font-size: 0.9rem;
        padding: 10px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Responsive styling */
@media (max-width: 768px) {

    /* Stack form and image vertically */
    .container {
        flex-direction: column;
    }

    .image-section img {
        max-width: 100%;
        /* Allow the image to be responsive */
    }

    .image-section {
        margin-top: 20px;
    }
}

/* contact form model  */

.main-container {
    position: relative;
    width: 100%;
    height: fit-content;
    background-color: #f5f5f5;
}

.modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    background-color: white;
    color: white;
    background: url('../../../assets/frontdesk.svg');
    background-position: center;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    width: 80%;
    max-width: 700px;
    height: 70vh;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.model-text {
    margin-top: 25%;
    font-size: 3rem;
    font-weight: 600;
}

/* /// Whatsapp integration /// */

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button img {
    width: 90px;
    height: 90px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}


/* FLoating button  */

.book-now-btn {
    z-index: 20;
    position: fixed;
    bottom: 27px;
    right: 100px;
    background-color: #32a4a8;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s;
}

.book-now-btn:hover {
    transform: scale(1.05);
}

/* Amenities Image  */

.amenitiesimage {
    text-align: center;
    padding: 20px;
}

.amenities-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.amenities-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablets */
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 1 column on mobile */
    }
}