#version {
    position: fixed;
    bottom: 0;
    left: 0;
    color: #333;
    background-color: #333;
    padding: 5px;
    z-index: 999999999;
}


/* Master Styles */
body {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    margin: 0 auto;
    background: #333;
}

.container {
    display: grid;
    grid-template-columns: 1fr;

}



/* Nav STyles*/



.mission {
    text-align: center;

}

.logo {
    width: 30%;

}

.mobile_background_logo {
    display: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 10px
}


.nav-link-parent-wrapper {
    display: flex;
    flex-direction: row;
    /* add this property */
    justify-content: space-between;
    width: 100%;
    padding-left: 20px;
    padding-top: 43px;
    color: #000;
}


.nav-link-wrapper {
    margin-right: 10px;
    flex: 1;
    text-align: center;
    display: inline-block;

    height: 22px;
    padding-right: 10px;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.5s;


}

.nav-link-wrapper a {
    color: #8a8a8a;

    text-decoration: none;
    transition: color 0.5s;
    text-decoration: none;
    font-size: 1.5rem;
}

.main-nav-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.nav-link-wrapper:last-child {
    margin-right: 0;
}










body {
    margin: 0;
    /* Add this to remove default body margin */
}






.MOBILECONTAINER {
    display: none;
}

@media (max-width: 1000px) {

    body {
        position: relative;
        background-color: #333;
        /* Replace #yourColor with the color of your choice. */
        

    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('images/YANISWEBSITESHOT.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center top;
        /* Change the position to top */
        filter: blur(8px);
        /* Adjust the blur amount as needed */
        z-index: -1;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    

    .mobile-menu-icon-parent {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100px; /* Adjust the height as needed */
        background-color: #333; /* Replace with your desired background color */
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 40px; /* Adjust the padding as needed */
      }
      
      



    .MOBILECONTAINER {
        display: flex;
        position: relative;

    }

    .content-wrapper-home {
        padding-top: 50vw; /* Decrease this value and adjust it according to your design. */
    }



    .logo-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-top: 80vw;
    }






    .nav-link-parent-wrapper {
        display: flex;
        flex-direction: column;

        padding-left: 20px;
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .logo {
        width: 60%;
    }

    .nav-link-wrapper {
        display: inline-block;

        height: 22px;
        padding-right: 10px;

        transition: border-bottom 0.5s;

    }

    .nav-link-wrapper:last-child {
        border-bottom: none;

    }

    .nav-link-wrapper a {
        color: #8a8a8a;

        text-decoration: none;
        transition: color 0.5s;
        text-decoration: none;
        font-size: 2.5rem;


    }



}

.left-side {
    display: flex;
}

.right-side {
    padding-top: 40px;
    padding-right: 20px;
}


.nav-wrapper>.left-side>div {

    margin-right: 20px;

    font-size: 0.9em;
    text-transform: uppercase;
}



.nav-link-wrapper:hover {
    border-bottom: none;
}

.nav-link-wrapper a:hover {
    color: white;
}











/* Styles for the hamburger menu */
.nav-link-wrapper.hamburger {
    display: none;
}




.mobile-menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    z-index: 10;
    cursor: pointer;
}



.mobile-menu-icon span {
    width: 2rem;
    height: 0.25rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s linear;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 50%;
    background-color: #fff;
    z-index: 1000;
    transition: right 0.3s;
}


.logomobile {
    display: none;
}



@media (max-width: 1000px) {



    .mobile-menu-icon {
        width: 30px;
        height: 22px;
        position: relative;
        display: inline-block;
        cursor: pointer;
    }

    .mobile-menu-icon span {
        background: #ffffff;
        display: block;
        height: 2px;
        left: 0;
        position: absolute;
        transition: all 0.5s ease-in-out;
        width: 100%;
    }

    .mobile-menu-icon span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-icon span:nth-child(2) {
        top: 10px;
    }

    .mobile-menu-icon span:nth-child(3) {
        top: 20px;
    }

    .mobile-menu-icon.open span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }

    .mobile-menu-icon.open span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .mobile-menu-icon.open span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }

    .nav-wrapper {
        display: none;
    }


    .mobile-nav {
        padding-top: 20px;
        /* or use margin-top: 20px; Adjust the px value as needed */
        background-color: #000;
    }


    .MOBILECONTAINER {
        display: flex;
        flex-direction: column;
    }

 


}




/* Book Page */


body {
    font-family: 'Lato', sans-serif;
    background-color: #333;
    color: #333;
    margin: 0;
    padding: 0;
}

.booking {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.booking h2, .booking h3 {
    text-align: center;
    margin-bottom: 20px;
}

.booking label {
    display: block;
    margin: 20px 0 5px 0;
    font-weight: bold;
}

.booking input, .booking select {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.booking button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    font-size: 20px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: linear-gradient(to right, #7b4397, #dc2430);
}

/* Hover effects */
.booking button:hover {
    background: linear-gradient(to right, #dc2430, #7b4397);
    transition: background 0.5s;
}

/* Mobile Styles */
@media (max-width: 600px) {
    .booking {
       padding-top: 50px; /* Adjust this value according to your needs */
        padding: 10px;
    }

    .booking input, .booking select {
        font-size: 16px;
    }

    .booking button {
        font-size: 18px;
    }
}
