:root{
    --text-dark-color:#403F3D;
    --text-light-color:#E1D4C9;
    --text-accent-color:#B0907A;
    --bg-body-color:#E1D4C9;
    --bg-container-color:#665F55;
    --bg-backdrop-color:#403F3DCC;
    --border-light-color:#C1B6AD;
    --border-bg-dark:#665F55;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--bg-body-color) !important;
}
.me-40{
    margin-right: 40px;
}
.mx-40{
    margin-left: 40px !important;
}
.my-100{
    margin-top: 100px;
    margin-bottom: 100px;
}
.nav-item .nav-link,
.menu-item{
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; 
    color: var(--text-dark-color);
    position: relative;
    margin-bottom: 0;
    text-decoration: none;
}
.menu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.menu-item:hover{
    cursor: pointer;
}
.menu-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color:var(--text-dark-color);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.menu-item:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.nav-item .nav-link {
    position: relative;
}
.nav-item .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color:var(--text-dark-color);
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}
.nav-item .nav-link:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
.menu-item-img{
    width: 20px;
    height: 20px;
}

.navbar-toggler {
    border: none !important;
}
.navbar-toggler:focus {
   box-shadow: none !important;
}
.close-button{
    display: none;
}
/*section enjoy*/
.enjoy{
    margin-top: 20px;
}
.enjoy-container{
    display: flex;
    max-width: 1360px;
    height: 644px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    background-image: url('../images/enjoy-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
}
.enjoy-text-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-left: 100px;
}
.enjoy-title{
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 72px;
    font-style: italic;
    font-weight: 600;
    line-height: 105%; 
    color:var(--text-light-color);
}
.enjoy-title-dark{
    color: var(--text-accent-color);
}
.enjoy-text{
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
    color: var(--text-light-color);
}
.enjoy-btn{
    display: flex;
    width: 200px;
    padding: 20px 78px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: none;
    background: var(--bg-body-color);
}
.enjoy-link{
    color: var(--text-dark-color);
    text-decoration: none;
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; 
}
.enjoy-btn:hover{
    cursor: pointer;
    background: var(--bg-backdrop-color);
    color: var(--text-light-color);
    transition: all .5s ease-in-out;
}
.enjoy-btn:hover .enjoy-link{
    color: var(--text-light-color);
    transition: all .5s ease-in-out;
}
/*section choose*/
.choose-title{
    color: var(--text-dark-color);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%; 
}
.choose-title-light{
    color: var(--text-accent-color);
}
/*section relax*/
.relax-text{
    color: var(--text-dark-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%; 

}
.relax-text-light{
    color: var(--text-accent-color);
}
.relax-img{
    border-radius: 20px;
}

.relax-img:hover{
    cursor: pointer;
    transform: scale(0.8);
    box-shadow: rgb(64, 63, 61) 0px 20px 30px -10px;
    transition: all 1s ease-in-out;
}
/*section app*/
.app-text-column{
    display: flex;
    flex-direction: column;
    align-items:flex-start;
    justify-content: center;
}
.app-text{
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: center;
   gap: 40px;
}
.app-title{
    color: var(--text-dark-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}
.app-title-light{
    color: var(--text-accent-color);
}
.app-paragraph{
    color: var(--text-dark-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}
.button-group{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap:20px;
}
.svg{
    fill:#403F3D;
}
.app-btn{
    display: flex;
    width: 200px;
    padding: 12px 20px;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid var(--bg-container-color);
    background-color: var(--bg-body-color);
}
.app-btn:hover{
    cursor: pointer;
    background-color: var(--bg-container-color);
    transition: all .5s ease-in-out;
}
.app-btn:hover .app-text-top,
.app-btn:hover .app-text-bottom{
    color: var(--text-light-color);
}
.app-btn:hover .svg{
    fill: var(--text-light-color);
}
.app-btn-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.app-text-top{
    color: var(--text-dark-color);
    text-align: center;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; 
}
.app-text-bottom{
    color: var(--text-dark-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
/*footer*/
footer{
    margin-top: 100px;
    margin-bottom: 40px;
}
.footer-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 100px;
    border-radius: 40px;
    background-color: var(--bg-container-color);
}
.footer-row{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-inline: 20px;
}
.footer-title{
    color: var(--text-light-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 60px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}
.footer-title-light{
    color: var(--text-accent-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 60px;
    font-style: italic;
    font-weight: 600;
    line-height: 125%;
}
.social-list{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}
.social-list-link{
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var( --border-light-color);
}
.social-list-link:hover{
    background-color: var(--text-accent-color);
    border: none;
    transition: all .5s ease-in-out;
}
.footer-second-title{
    color: var(--text-light-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%; 
}
.contact-list{
    margin-top: 40px;
}
.list-item{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    color: var(--text-light-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 20px;
}
.list-item-link{
    color: var(--text-light-color);
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    line-height: 150%;
}
.go-top{
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color:var(--border-bg-dark);
}
.go-link{
    color: #fff;
}
.go-top:hover{
    cursor: pointer;
    background-color: var(--text-accent-color);
    transition: all .5s ease-in-out;
}

@media screen and (max-width:992px){
    .enjoy-text-column{
        margin-left: 60px;
    }
    .relax-img-row{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .app-text-row{
        display: flex;
        flex-direction: column;
        align-items:center;
        justify-content: center;
    }
    .contact-us{
        margin-top: 50px !important;
    }
}

@media screen and (max-width:768px){
    .navbar-nav{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .nav-item .nav-link{
        margin: 0;
    }
    .menu{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        margin: 0;
    }
    .enjoy-title{
        font-size: 50px;
    }
    
}
@media screen and (max-width:576px){

    .enjoy-text-column{
        width: 300px;
        margin-left: 0px;
    }
    .relax-img-row:nth-child(2n){
        display: none;
    }
    .relax-text{
        font-size: 32px;
    }
}
@media screen and (max-width:500px){
    .footer-title{
        font-size: 32px;
    }
    .footer-title-light{
        font-size: 32px;
    }
}
@media screen and (max-width:480px){
    .app-title{
        font-size: 32px;
    }
    .app-paragraph{
        font-size: 16px;
    }
    .button-group{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .app-btn{
        width: 70% !important;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}
@media screen and (max-width:345px){
    .enjoy-title{
        font-size: 40px;
    }
}

