@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --dark-blue-color: #093e52;
    --light-blue-color: #00ffff;
    --white-color: #ffffff;
    --dark-grey-color: #afb0b3;
    --light-grey-color: #f2f2f2;
    --white-color-diff-color: #fafafa;
    --cream-color: #ebe6dd;

}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;

}

nav {
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: fixed;
    width: 100%;
    z-index: 10;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 50px;
    position: relative;
}

nav a {
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--white-color-diff-color);
    font-size: 1rem;

}

nav li:first-child {
    margin-right: auto;
}

.dropdown {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: var(--dark-grey-color);
    padding: 0.5rem 0;
    list-style: none;
    z-index: 9999;
    width: 100%;
    min-width: 200px;
    color: var(--dark-blue-color);
}


.dropdown li {
    width: 200px;
}

.dropdown a {
    padding: 10px 20px;
}


.search-icon {
    padding: 0 10px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--dark-blue-color);
    /* backdrop-filter: blur(12px); */
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 20;
    padding: 50px;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {
    display: none;
}

.hero {
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    color: var(--cream-color);
    padding-top: 8rem;
    padding-block: 1rem;
    position: relative;
    padding: 140px 0px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('../images/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -1;

}

.hero h1 {
    color: var(--cream-color);
    font-size: 40px;
    margin: 0px 50px;

}



.hero p {
    font-size: 20px;
    margin: 0px 50px;
}

#logo {
    width: 210px;
    height: 100px;
    margin-top: -30px;
}


/* ///////////book now Buttom */

nav a:hover {
    color: var(--light-blue-color);
}

.close-btn {
    color: var(--cream-color);
}

.close-btn i {
    font-size: 2rem;
}

.dropdown a {
    color: var(--dark-blue-color) !important;
}

.service-li {

    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--cream-color);
    font-size: 1rem;
}


.slider-book-now {
    width: max-content !important;
    margin: 5px 15px;
}

.highlight {
    color: #00ccff;
    font-weight: bold;
}

.cta {
    background: linear-gradient(to bottom, var(--light-blue-color), var(--dark-blue-color));
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px 0px 20px 0px;

}

.cta-diff {
    background: var(--white-color-diff-color);
    color: var(--dark-blue-color);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px 0px 20px 0px;
    border: 1px solid var(--dark-blue-color);

}

@media(max-width: 900px) {
    #logo {
        width: 210px;
        height: 100px;
        margin-top: -30px;
    }
}

@media(max-width: 1008px) {
    .hideOnMobile {
        display: none !important;
    }

    .menu-button {
        display: block;
    }
}

@media(max-width: 400px) {
    .sidebar {
        width: 100%;
    }

    nav {

        padding: 0 1rem;

    }
}

@media(max-width: 725px) {
    .hero h1 {
        margin: 0px 50px;
        font-size: 30px;
    }

    .hero p {
        margin: 0px 50px;
        font-size: 18px;
    }
}

@media(max-width: 486px) {
    .hero h1 {
        margin-top: 70px;
        font-size: 30px;
    }

}

@media(max-width: 400px) {
    .hero h1 {

        font-size: 25px;
    }

    .hero {
        height: auto;
        padding: 80px 0px;

    }

    .hero p {
        font-size: 17px;
    }

}

.active-li-nav {
    color: var(--light-blue-color) !important;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: underline;
}