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

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

}

nav {
    height: 100px;
    background: rgba(104, 113, 94, 0.4);
    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: white;
    font-size: 1rem;

}

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

.dropdown {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #1B2727;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 9999;
    width: 100%;
    min-width: 200px;
}


.dropdown li {
    width: 200px;
}

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

nav li:hover .dropdown {
    display: block;
}

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

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: #3C5148;
    /* 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;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {
    display: none;
}


.hero {
    height: 60vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    color: white;
    padding-top: 8rem;
    padding-block: 1rem;
    position: relative;
    background-color: rgba(73, 84, 67, 0.6);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url('contact.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.5) blur(0.5px);

}

.hero h1 {
    color: #fff;
    font-size: 4rem;
}

#logo {
    width: 210px;
    height: 108px;
    margin-top: -20px;
}

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

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

    .menu-button {
        display: block;
    }
}

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

    nav {

        padding: 0 1rem;

    }
}

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



.cool-button {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.5s;
    font-weight: 600 !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    color: #3C5148;

}

.cool-button::before,
.cool-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    transition: 0.5s;
    mix-blend-mode: overlay;
}

.cool-button:hover::before,
.cool-button:hover::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cool-button::after {
    opacity: 0;
    transition: opacity 0.5s;
}

.cool-button:hover::after {
    opacity: 1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% -200%;
    }

    100% {
        background-position: 200% 200%;
    }
}

/* Button 1 */
.btn-1 {
    background: linear-gradient(135deg, #D5DDDF 0%, #688E4E 100%);
    animation: gradient 3s infinite alternate;
}

.btn-1::before {
    background: linear-gradient(135deg, #688E4E 0%, #D5DDDF 100%);
    clip-path: polygon(0 0, 100% 0, 50% 50%);
}

.btn-1::after {
    background: linear-gradient(135deg, #D5DDDF 1%, #D5DDDF 100%);
    clip-path: polygon(50% 50%, 100% 100%, 0 100%);
}

nav a:hover {
    color: #688E4E;
}

.close-btn {
    color: #fff;
}

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

.service-li {

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

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