/* Start Global Rules */

*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* Start Variables */

:root{
    --main-yellow-color:#FFCF49;
    --main-blue-color:#1F2A3E;
    --main-transition:0.5s;
    --p-color:#ccc;
    --padding-top:50px;
    --padding-bottom:50px;
}

/* End Variables */


html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Roboto', sans-serif;
}

/* Start Contanier */

.contanier{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px){
    .contanier{
        width: 750px;
    }
}

@media (min-width: 992px){
    .contanier{
        width: 970px;
    }
}

@media (min-width: 1200px){
    .contanier{
        width: 1170px;
    }
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

img{
    width: 50px;
    height: 50px;
}

.main-title{
    margin: 0 auto 80px;
    border: 2px solid black;
    padding: 10px 20px;
    width: fit-content;
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    transition: var(--main-transition);
}

@media (max-width: 768px){
    .main-title{
        font-size: 20px;
    }
}

.main-title a{
    color: black;
}

.main-title:hover{
    color: white;
    border: 2px solid white;
    transition-delay: 0.5s;
}


.main-title:hover a{
    color: white;
    transition-delay: 0.5s;
}

.main-title::before{
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--main-yellow-color);
    position: absolute;
    border-radius: 50%;
    left:-30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title::after{
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--main-yellow-color);
    position: absolute;
    border-radius: 50%;
    right:-30px;
    top: 50%;
    transform: translateY(-50%);
}

.main-title:hover::before {
    z-index: -1;
    animation-name: left-move;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

.main-title:hover::after {
    z-index: -1;
    animation-name: right-move;
    animation-duration: .5s;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

/* End Contanier */

/* End Global Rules */

.menu-icon{
    display: none;
}

@media (max-width: 768px){
    .menu-icon{
        display: block;
    }
}
/* Start Parent */
/* Start Index Page */
.parent{
    background-color:white;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

/* Start Nav Bar */
.parent .contanier{
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: space-between;
}

.parent .contanier .left{
    display: flex;
    align-items: center;
    gap: 8px;
}

.parent .nav-bar{
    background-color: white;
    box-shadow: 0px 0px 5px #a9a8a8a6;
    position: relative;
    z-index: 5;
}

@media (max-width: 768px){
    .parent .nav-bar{
        padding: 0 10px;
    }
}

.parent .nav-bar .contanier .icon i.toggle-menu{
    display: none;
}

@media (max-width: 768px){
    .parent .nav-bar .contanier .icon i.toggle-menu{
        display: block;
        font-size: 20px;
    }
}

.parent .nav-bar .contanier .logo{
    width: 80px;
    height: 80px;
}

.parent .nav-bar .contanier .logo img{
    width: 80px;
    height: 80px;
}

.parent .nav-bar .contanier .title{
    font-weight: 600;
}

@media(max-width: 768px){
    .parent .nav-bar .contanier .right .drop{
        display: none;
    }
}
/* End Nav Bar */

/* Start Slider */

.parent .content{
    display: flex;
    align-items: baseline;
    gap: 50px;
}

@media (max-width: 768px){
    .parent .content{
        padding: 20px;
    }
}
@media (max-width: 768px){
    .parent .nav-bar .contanier .menu-items ul{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px){
    .parent .nav-bar{
        padding: 0 10px;
    }
}

.parent .slider{
    position: relative;
    /* padding: 20px; */
    width: 250px;
    background-color: white;
    display: flex;
    max-height: 2200vh;
    justify-content: space-between;
    height: 86vh;
    box-shadow: 0px 0px 5px #a9a8a8a6;
}

@media (max-width: 768px){
    .parent .slider{
        display: none;
    }
}

@media(max-width: 768px){
    .parent .nav-bar .contanier .icon .toggle-menu:hover > .slider{
        display: block;
    }
}

.parent .slider .slid{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 140px;
    /* padding: 10px; */
    width: 250px;
}

.parent .slider .slid ul li{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px 0;
    position: relative;
}

.parent .slider .slid ul li i{
    color: var(--main-blue-color);
}

.parent .slider .slid ul li a{
    color: var(--main-blue-color);
    font-weight: bold;
}

.parent .slider .slid ul li .active{
    color: var(--main-yellow-color);
}

.parent .slider .slid ul li.active::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 45px;
    background-color: var(--main-yellow-color);
    border-radius: 8px 0px 0px 8px;
    right: 0;
}
/* End Slider */

.content .logout{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    left: 0;
    top: 50px;
}

.content .logout i{
    font-size: 60px;
}

.content .logout a{
    font-size: 25px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
}

/* Start User Profile */

.content .user-profile{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content .user-profile .title{
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--main-blue-color);
}

@media(max-width: 768px){
    .content .user-profile .title{
        width: fit-content;
    }
}

.content .user-profile form{
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.content .user-profile form .oe{
    align-items: center;
    display: flex;
    gap: 35px;
}

@media (max-width: 768px) {
    .oe{
        display: flex;
        flex-direction: column;
    }
}

.a{
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .a{
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

.content .user-profile form .oe .fah{
    display: flex;
    flex-direction: column;
}

.content .user-profile form .oe a{
    padding: 10px 20px;
    background-color: var(--main-blue-color);
    border-radius: 10px;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
}

.content .user-profile form label{
    font-size: 18px;
    font-weight: bold;
    color: var(--main-blue-color);
    margin-bottom: 10px;
}

@media(max-width: 768px){
    .content .user-profile form label{
        width: fit-content;
    }
}

.content .user-profile form input{
    width: 400px;
    border: none;
    border-bottom: 1px solid black;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.content .user-profile form input:focus{
    outline: none;
}

@media(max-width: 768px){
    .content .user-profile form input{
        width: 330px;
    }
}

/* End User Profile */


/* Start Your Point */

.content .your-point{
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin: 0 auto;
}

@media(max-width: 768px){
    .content .your-point{
        gap: 200px;
    }
}

.content .your-point .title{
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--main-blue-color);
    text-align: center;
}

.content .your-point .bar{
    width: 600px;
    background-color: #ccc;
    height: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media(max-width: 768px){
    .content .your-point .bar{
        width: 300px;
        transform: rotate(90deg);
    }
}

.content .your-point .bar span{
    display: block;
    width: 20px;
    height: 20px;
    background-color: #ddd;
    border-radius: 50%;
}

.content .your-point .bar span.active{
    animation-name: light;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


@keyframes light {
    0%{
        background-color: #ddd;
    }
    100%{
        background-color: var(--main-yellow-color);
    }
}
/* End Your Point */

/* Start Favorites */

.content .favorites{
    position: relative;
    top: 20px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content .favorites .title{
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--main-blue-color);
}

.content .favorites .boxs{
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.content .favorites .box{
    background-color: #eee;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    /* align-items: center;
    justify-content: center; */
    width: 300px;
    position: relative;
    height: 330px;
}

.content .favorites .box .top{
    padding: 10px 20px;
    /* position: absolute; */
    top: 0;
    right: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.content .favorites .box .top .title{
    font-weight: bold;
    font-size: 20px;
}

.content .favorites .box .top i{
    color: red;
    font-size: 20px;
}

.content .favorites .box .bottom{
    padding: 10px 20px;
}

.content .favorites .box .bottom .rate{
    display: flex;
    align-items: center;
    gap: 5px;
}

.content .favorites .box .bottom .rate i{
    color: var(--main-yellow-color);
}

/* End Favorites */

/* Start Reservation */

.reservation{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reservation .title{
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--main-blue-color);
}

.reservation .res{
    width: 700px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media(max-width: 768px){
    .reservation .res{
        width: 330px;
    }
}

.reservation .reser{
    width: 100%;
    background-color: white;
    box-shadow: 0px 0px 10px #00000033;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;

}

/* End Reservation */