body {
    font-family: 'Figtree', sans-serif;
}
.lang_container{
    display: flex;
    justify-content: flex-end;
    padding: 10px 0px 5px 0px;
}
.lang_button{
    background-color: #025159;
    color: #bf9a78;
    border: none;
    padding: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #bf9a78;
}
.category-details {
    display: none;
}
.active {
background-color: #025159;
font-weight: 900;
border-radius: 6px;
    border: 2px solid #bf9a78;
}
.category_list li {
    cursor: pointer;
    list-style: none;
    padding: 5px;
    color: #bf9a78;
    font-size: 1.3em;
}

.category-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: -1rem;
    gap: 10px;
    margin-top: 10px;
}

.category_price {
    font-size: 1.2em;
    color: #bf9a78;
    text-wrap: nowrap;
}

.category_header {
    color: #bf9a78;
    display: inline-block;
    padding: 5px;
    background-color: #025159;
    border-radius: 6px;
    border: 2px solid #bf9a78;
    width: 100%;
    text-align: center;
}

.description-price-container {
    display: flex;
    flex-direction: column;
    margin-top: 25px;
}

.description-price-pair {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem; /* Space between each description-price pair */
    justify-content: flex-end; 
}

.description-price-pair p {
    margin-right: 1rem; /* Adjust the space between description and price as needed */
    font-style: italic;
}

.category_description {
    font-size: 1.2em;
    color: #bf9a78;
    font-style: italic;
}

.category_description_price {
    font-size: 1.2em;
    color: #bf9a78;
    text-wrap: nowrap;
    font-style: italic;
}

.subcategory_header {
    color: #bf9a78;
    display: inline-block;
    padding: 5px;
    background-color: #025159;
    border-radius: 6px;
    border: 2px solid #bf9a78;
}


/* Menu İtems */
.menu_item_container{    
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #bf9a78;
}

.menu_item_container .menu_item_container_top,    
.menu_item_container .menu_item_container_bottom{    
    display: flex;
}
  
.menu_item_container .menu_item_container_bottom_item{ 
    display: flex;   
    flex-direction: column;
}

.menu_item_container .menu_item_container_top .menu_item,    
.menu_item_container .menu_item_container_bottom .menu_item_description{    
    flex: 1;
}

.menu_item_container .menu_item_container_bottom_item .menu_item_description{ 
    flex: 1;
}

.menu_item {
    display: flex;
    justify-content: space-between;
    padding: 5px;
    color: #025159;
}

.menu_item_price {
    display: flex;
    color: #bf9a78;
    font-size: 1.2em;
    text-wrap: nowrap;
    font-style: italic;
}

.menu_item_description {
    color: #bf9a78;
    font-size: 0.8em;
    font-style: italic;
}

.menu_item_description_price {
    display: flex;
    align-items: center;
    flex-direction: inherit;
    text-wrap: nowrap;
    font-style: italic;
    color: #bf9a78;
}

.img_container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
    overflow: hidden;
    display: none; /* Initially hidden */
}

.slider-image {
    position: absolute; /* Ensure images are stacked on top of each other */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover; /* Maintain aspect ratio and cover the container */
}

.slider-image.active {
    opacity: 1;
}


body {
    margin: 0;
    overflow-x: hidden;
    height: 100vh;
    width: 100vw;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drawer-list {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    transform: translate(-100vw, 0);
    box-sizing: border-box;
    pointer-events: none;
    z-index: 100;
    padding-top: 125px;
    transition: 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
    border-bottom-right-radius: 100vw;
    background-color: #04b0b0;
    background-color: rgba(7, 175, 175, 0.95);
}

@media (min-width: 768px) {
    .drawer-list {
        width: 40vw;
   }
}

.drawer-list ul {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    pointer-events: auto;
}
.drawer-list li {
    list-style: none;
    text-transform: uppercase;
    pointer-events: auto;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translatex(100vw);
   /* ie workaround */
    -ms-transform: translatex(-100vw);
    margin: 0px 10px;
}
.drawer-list li:last-child {
    margin-bottom: 2em;
}
.drawer-list li a {
    text-decoration: none;
    color: #fefefe;
    text-align: center;
    display: block;
    padding: 1rem;
    font-size: calc(24px - 0.5vw);
}
@media (min-width: 768px) {
    .drawer-list li a {
        text-align: left;
   }
}
.drawer-list li a:hover {
    cursor: pointer;
    background-color: #88c2f8;
    background-color: rgba(17, 132, 240, 0.5);
}
input.hamburger {
    display: none;
}
input.hamburger:checked ~ .drawer-list {
    transform: translatex(0);
    border-bottom-right-radius: 0;
}
input.hamburger:checked ~ .drawer-list li {
    transform: translatex(0);
    transition: transform 0.6s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

input.hamburger:checked ~ .drawer-list li a {
    padding-left: 30px;
}
input.hamburger:checked ~ label > i {
    background-color: transparent;
    transform: rotate(90deg);
}
input.hamburger:checked ~ label > i:before {
    transform: translate(-50%, -50%) rotate(45deg);
}
input.hamburger:checked ~ label > i:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
input.hamburger:checked ~ label close {
    color: #fefefe;
    width: 110%;
}
input.hamburger:checked ~ label open {
    color: rgba(0, 0, 0, 0);
    width: 0;
}
label.hamburger {
    z-index: 9999;
    position: relative;
    display: block;
    height: 36px;
    width: 50px;
}
label.hamburger:hover {
    cursor: pointer;
}
label.hamburger text close, label.hamburger text open {
    text-transform: uppercase;
    font-size: 1em;
    text-align: center;
    position: absolute;
    transform: translateY(33px);
    text-align: center;
    overflow: hidden;
    transition: 0.25s 0.35s, color 0.45s 0.35s;
    color: #025159;
}
label.hamburger text close {
    color: rgba(0, 0, 0, 0);
    left: 0;
    width: 0;
}
label.hamburger text open {
    width: 100%;
}
label.hamburger > i {
    position: absolute;
    width: 84%;
    height: 2px;
    top: 50%;
    left: 3px;
    background-color: #bf9a78;
    pointer-events: auto;
    transition-duration: 0.35s;
    transition-delay: 0.35s;
}
label.hamburger > i:before, label.hamburger > i:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    left: 50%;
    background-color: #bf9a78;
    content: "";
    transition: transform 0.35s;
    transform-origin: 50% 50%;
}
label.hamburger > i:before {
    transform: translate(-50%, -9px);
}
label.hamburger > i:after {
    transform: translate(-50%, 9px);
}
label.hamburger {
    position: absolute;
    top: 13px;
    left: 0px;
    background: #025159;
    border-radius: 4px;
    border: 2px solid #bf9a78;
}


.footer{
    background: #025159;
    color: #bf9977;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid #bf9977;
}

.footer_socials{
    display: flex;
    justify-content: end;
    gap: 10px;
    padding: 10px 0;
}

.footer_socials i{
    color: #bf9a78;
    font-size: 3rem;
}

.footer_rezervation{
    display: flex;
    gap: 10px;
    padding: 10px 0;
}

.footer .footer_container{
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 1264px;
    padding: 0 10px;
}
.footer .footer_container > div:first-child{
    flex: 1;
}

@media screen and (max-width: 640px){
    .footer .footer_container{
        flex-direction: column;
        align-items: center;
    }
    
}