/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

/* //////////////////// Header styles //////////////// */

header {
    position: relative;
    height: 100vh;
    /* Full viewport height */
    /* background-image: url('./assets/bannerbg.jpg'); */
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
}

/* Banner styles */
.banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* Full height */
    color: white;
    text-align: center;
}

/* Navbar styles */
.navbar {
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    position: absolute;
    top: 0;
    width: 100%;
}

.logo img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    border-radius: 50%;
    background-position: center;
}

/* Burger menu */
.burger {
    display: none;
    /* Hidden by default */
    font-size: 24px;
    cursor: pointer;
}

/* Close icon */
.close {
    display: none;
    /* Hidden by default */
    font-size: 24px;
    cursor: pointer;
}

/* Navigation links */
.nav-links {
    display: flex;
    list-style: none;
}

.navlink-items {
    margin: 0 30px;
}

.navlink-items a {
    font-size: 25px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.navlink-items a:hover {
    color: #ffd700;
    /* Change color on hover */
}


/* Mobile View (max-width: 480px) */
@media (max-width: 480px) {
    .logo img {
        height: 50px;
        width: 50px;
    }
}

/* ////////////////// 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;
    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;
    /* font-size: 20px; */
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 10px 11px;
    border-radius: 50%;
}

.controls button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {

    .controls button {
        font-size: 8px;
        padding: 8px;
    }
}

@media (max-width: 480px) {

    .controls button {
        font-size: 16px;
        padding: 6px;
    }
}


/* /////////////////////////// Center text of banner ///////////////////// */
.banner-details {
    user-select: none;
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 60vw;
    justify-content: center;
    align-items: center;
}

/* Banner title and description styles */
.banner-title {
    font-size: 4rem;
    font-weight: bold;
    margin: 20px;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.9));
}

.banner-description {
    font-size: 1.5rem;
    max-width: 600px;
    letter-spacing: 3px;
    filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.9));
}

/* Responsive styles */
@media (max-width: 768px) {
    header {
        height: 70vh;
    }

    .burger {
        display: block;
        /* 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.5);
        position: absolute;
        top: 70px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
        /* Show links when active */
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }

    .close {
        display: none;
        /* Hidden by default */
    }

    .nav-links.active~.close {
        display: block;
        /* Show close icon when nav is active */
    }

    .navbar {
        flex-direction: row;
        align-items: center;
        row-gap: 15px;
    }

    .logo {
        align-self: start;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .book-now {
        width: 100%;
        /* Full width button */
    }
}

/* /////////////////////////// Form  of banner ///////////////////// */
/* General form styling */
.form-head {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(128, 128, 128, 0.1);
}

.detailform {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

/* Styling for form inputs and labels */
.forminput {
    display: flex;
    flex-direction: column;
    width: 15%;
    max-width: 300px;
    gap: 8px;
}

.forminput label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

input[type="date"],
input[type="number"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
    color: #333;
}

/* Styling for hover and focus effects */
input[type="date"]:focus,
input[type="number"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
    outline: none;
}

input[type="date"]:hover,
input[type="number"]:hover {
    border-color: #555;
}

/* Button styling */
.book-now {
    padding: 12px 24px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.book-now:hover {
    background-color: #0056b3;
}

/* Responsive design for tablets and mobile */
@media (max-width: 768px) {
    .detailform {
        flex-direction: column;
        /* align-items: stretch; */
    }

    .forminput {
        width: 100%;
    }
}



/* //////////////////// Footer styles //////////////// */
.footer {
    height: fit-content;
    padding: 2rem 4px;
    background: black;
    color: white;
}

.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;
}

.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 */
    }
}

/* //////////////////// ImageGrid styles //////////////// */

.ImageGrid {
    display: flex;
    padding: 2rem 4rem;
    width: 100%;
    gap: 3rem;
    /* Space between items */
    background-color: rgba(128, 128, 128, 0.1);
}

.ImageGrid-image {
    flex: 1;
}

.ImageGrid-image {
    height: 80vh;
    width: 40vw;
    object-fit: cover;
    border-radius: 20% 0 20% 0;
}

.ImageGrid-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* align-items: center; */
    align-self: center;
    justify-content: start;
}

.ImageGrid-content h2 {
    font-size: 3.4rem;
}

.ImageGrid-content span {
    font-size: 1.4rem;
}

.ImageGrid-content a {
    cursor: pointer;
    font-size: 20px;
    color: black;
    text-decoration: none;
    width: 10rem;
    border: 1px solid black;
    padding: 8px 14px;
}

.ImageGrid-reverse {
    display: flex;
    padding: 2rem 4rem;
    width: 100%;
    gap: 3rem;
    /* Space between items */
    background-color: rgba(128, 128, 128, 0.1);
}

.ImageGrid-reverse-image {
    flex: 2;
}

.ImageGrid-reverse-image img {
    height: 80vh;
    width: 100%;
    object-fit: cover;
    border-radius: 20% 0 20% 0;
}

.ImageGrid-reverse-subimage {
    flex: 1;
}

.ImageGrid-reverse-subimage img {
    height: 50vh;
    width: 25vw;
    object-fit: cover;
    border-radius: 20% 0 20% 0;
}

/* Additional styles for responsiveness (optional) */

/* Mobile styles */
@media (max-width:868px) {
    .ImageGrid {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
    }

    .ImageGrid-reverse {
        flex-direction: column-reverse;
        padding: 1rem;
        gap: 1.5rem;
    }

    .ImageGrid-image,
    .ImageGrid-reverse-image img,
    .ImageGrid-reverse-subimage img {
        height: auto;
        width: 100%;
        /* Full width */
        border-radius: 15% 0 15% 0;
    }

    .ImageGrid-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .ImageGrid-content span {
        font-size: 1rem;
        text-align: center;
    }
}

/* //////////////////// gridCard styles //////////////// */

/* Default Styles for Desktop */
.gridCard {
    height: fit-content;
}

.gridCard-heading {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2rem;
    padding: 2rem 4rem;
}

.gridCard-heading h2 {
    font-size: 3rem;
}

.gridCard-heading span {
    font-size: 1.2rem;
}

.gridcard-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 1rem 4rem;
}

.grid-image {
    position: relative;
    height: 50vh;
    width: 100%;
}

.grid-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.grid-image-title {
    z-index: 1;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 15px;
    color: white;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: bold;
    transition: all ease 0.3s;
}

/* .grid-image:hover .grid-image-title {
    bottom: 25vh;
} */

.grid-image a {
    display: none;
    position: absolute;
    cursor: pointer;
    font-size: 20px;
    color: white;
    text-decoration: none;
    width: 10rem;
    border: 2px solid white;
    padding: 8px 14px;
}

/* Adjusting grid layout for responsiveness */
@media (max-width: 1024px) {
    .gridCard-heading h2 {
        font-size: 2.5rem;
    }

    .gridcard-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-image {
        height: 45vh;
    }

    .grid-image-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .gridCard-heading h2 {
        font-size: 2rem;
        text-align: center;
    }

    .gridcard-images {
        padding: 1rem 1rem;
    }

    .gridCard-heading span {
        font-size: 0.9rem;
        text-align: center;
    }

    .gridcard-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-image {
        height: 40vh;
    }

    .grid-image-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gridCard-heading h2 {
        font-size: 1.5rem;
    }

    .gridCard-heading span {
        font-size: 0.8rem;
    }

    .gridcard-images {
        grid-template-columns: 1fr;
    }

    .grid-image {
        height: 35vh;
    }

    .grid-image-title {
        font-size: 16px;
    }
}


/* ////// Whatsapp Logo ///// */


.whatsapp > a{
    z-index: 100;
    position: fixed;
    bottom: 3%;
    right: 2%;
    cursor: pointer;
    background-color: green;
    color: white;
    border: 2px solid green;
    border-radius: 50%;
    padding: 4px;
}