@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    font-family: 'Roboto', sans-serif;
}
body{
    position: relative;
}
:root{
    --dark: #082032;
    --dark2: #2C394B;
    --dark3: #334756;
    --dark4: #FF4C29;
}
body{
    background-color: var(--dark);
}
.menus{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20rem;
}
.menus .menu-item{
    position: relative;
    padding: 0;
    margin: 1rem 0.5rem;
    border: 3px solid var(--dark2);
    /* -webkit-box-shadow: 0px 5px 5px 0px var(--dark2);
    -moz-box-shadow: 0px 5px 5px 0px var(--dark2);
    box-shadow: 0px 5px 5px 0px var(--dark2); */
    border-radius: 9px;
}
.menus .menu-item:hover{
    transform: scale(1.1);
}

.menus .menu-item .title{
    color: white;
    background-color: #ff4d29b9;
    position: absolute;
    bottom: 0;
    padding: 4px;
    font-weight: 200;
    letter-spacing: 0.5px;
    text-align: center;
}
header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
header i{
    font-size: 1.8rem;
}
header .nav{
    font-size: 2.5rem;
}
.bottom-nav{
    background-color: #FF4C29;
    position: sticky;
    bottom: 0;
    text-align: center;
}
.bottom-nav i{
    font-size: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.5rem;
}
.bottom-nav div:hover{
    background-color: #ee5739;
}
.detay{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.detay .price{
    background-color: #2C394B;
    font-size: 1.5rem;
    font-weight: 200;
    margin-top: 0.5rem;
}
.detay p span{
    font-weight: 500;
}
.about{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20rem;
}

.contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20rem;
}
.search-section{
    margin-bottom: 30rem;
}
.arama{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.arama input{
    width: 80%;
    margin-bottom: 0.5rem;
    padding: 0.4rem;
    outline: none;
    background-color: rgba(255, 255, 255, 0.911);
    border: navajowhite;
    border-radius: 9px;
}
.dropdown{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}
.disable{
    display: none;
}
.dropdown a{
    text-decoration: none;
    color: white;
    background-color: #ee5739;
    width: 100%;
    text-align: center;
    padding: 0.6rem;
    margin: 0.1rem;
}