@import url('https://fonts.googleapis.com/css2?family=Courgette&family=Handlee&family=Poppins&family=Roboto&family=Sigmar&family=Tangerine:wght@700&display=swap');
/*font-family: 'Courgette', cursive;
font-family: 'Handlee', cursive;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto', sans-serif;
font-family: 'Sigmar', cursive;
font-family: 'Tangerine', cursive; */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.logo-container{
    width: 100%;
    max-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 100px;
    background: #fffdf9;
}
@media (max-width:500px) {
    .logo-container{
        padding: 0 10px;
        justify-content: space-between;
    } 
}
.logo{
    max-width: 100px;
    padding-top: 10px;
}
.social-links i{
    font-size: 30px;
    margin: 0 10px; 
    cursor: pointer;
    transition: 0.3s;
}
@media (max-width:500px) {
    .social-links i{
        font-size: 24px;
    } 
} 

.fa-instagram{
    color: #FF33FF;
}
.fa-facebook{
    color: #334CFF;
}
.fa-square-twitter{
    color: #479AE3 ;
}
.fa-youtube{
    color: #EC3606;
}
.social-links i:hover{
    transform: scale(1.2);
}

.navigation-menu{
    height: 100px;
    width: 100%;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:  #82d1ff;
    /* background: #7BDBD6; */

}
.logo-text{
    font-size: 60px;
    font-weight: bold;
    font-family: 'Tangerine', cursive, sans-serif;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 3px;
    cursor: pointer;
}
.logo-text a{
    text-decoration: none;
    color: #fff;
}
.hamburger{
    display: none;
}
.nav-bar ul{
    display: flex;
    list-style: none;
}
.nav-bar ul li a{
    position: relative;
    /* display: block; */
    font-size: 20px;
    font-family: 'Roboto',sans-serif;
    color: #ffffff;
    text-decoration: none;
    text-transform: capitalize;
    padding-bottom: 5px;
    margin: 0 10px;
    /* background: purple; */
    /* transition: 0.4s; */
}

.hover--effect::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s ease-out;
}
  
.hover--effect:hover::before {
    width: 100%;
}
.book-now{
    border:  1px solid #fff;
    padding: 5px 15px;
    border-radius: 4px;
    transition: .3s;
}
.book-now:hover{
    background: #fff;
    color: #000;
}


@media (max-width:1320px) {
    .navigation-menu{
        padding: 0 50px;
    }
}
@media (max-width:1100px) {
    .navigation-menu{
        padding: 0 30px;
    }
}
@media (max-width:998px) {
    .hamburger{
        display: block;
        cursor: pointer;
    }
    .hamburger .line{
        height: 2px;
        background: #ffffff;
        margin: 8px 0px;
        transition: 0.3s ease-in-out;
    }
    .one{
        width: 30px;
    }
    .two{
        width: 20px;
    }
    .three{
        width: 10px;
    }
    .nav-bar{
        height: 100%;
        position: absolute;
        top: 100px;
        left: -100%;
        right: 0;
        width: 100%;
        background: url('../images/navigation-bg.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        transition: 0.5s ease-in-out;
        z-index: 10;
    }
    .nav-bar ul{
        display: block;
        width: fit-content;
        margin: 80px auto 0 auto;
        text-align: center;
    }
    .nav-bar ul li{
        margin: 16px;
    }
    .nav-bar.active{
        left: 0;
    }
    .hamburger.change-icon{
        position: relative; 
    }
    .hamburger.change-icon .two{
        visibility: hidden;
    }
    .hamburger.change-icon .one{
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .hamburger.change-icon .three{
        width: 30px;
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
} 
@media (max-width:580px){
    .navigation-menu{
        padding: 0 10px;
    }
    .logo-text{
        font-size: 30px;
    }
}