/*<!--- 
Restaurant Menu
-->*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap');

:root {
    --bg: #fffdf2;
    --tst: #d1e8ff;
    --radius: 10px;
    --icolor1: #ffce00;
    --icolor2: #ffce00;
    --icolor3: #ffce00;
    --icolor4: #ffce00;
}
html {
    scroll-behavior: smooth;
}
body {
    color: #111;
}

.scaleLogo{
    animation: scaleLogo 2s;
}

@keyframes scaleLogo {
    0% {
        transform: scale(4.0);
        -webkit-transform: scale(4.0);
    }

    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);

    }
}
@keyframes scaleLocation {
    from {
        transform: scale(0);
        -webkit-transform: scale(0);
    }

    to {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);

    }
}
@keyframes moveBg {
    from {
        background-position-x:center;

    }

    to {
        background-position-x:-10rem;

    }
}

.container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    overflow: auto;
    height: 100vh !important;
    /* mobile viewport bug fix */
    animation: moveBg 30s infinite alternate;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background: url(https://besiktas.rocknrolla.com.tr/assets/admin/images/backgrounds/rocknrolla-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;

}
.foods{
    background: #000000 !important;
}
.drinks{
    background: #3e3c3c !important;
}
.intro-title-container{
    height: 50vh;
    width: 100%;
    position: relative;
}
.intro-title{
    position: absolute;
    top: 50%;
    height: 1.6rem;
    font-size: 35px;
    font-family: 'Josefin Sans', sans-serif;
    width: 100%;
    text-align: center;
}


.float{
    position:fixed;
    width:30px;
    height:30px;
    top:15px;
    left:15px;
    background-color:#ffce00;
    color:#000;
    border-radius:50px;
    text-align:center;
    box-shadow: 2px 2px 3px #ffce00;
}
.floatDrinks{
    position:fixed;
    width:auto;
    padding:5px;
    height:auto;
    bottom:70px;
    right:15px;
    background-color:#ffce00;
    color:#000;
    text-align:center;
    box-shadow: 2px 2px 3px #000;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}
.floatWifi{
    position:fixed;
    width:auto;
    padding:5px;
    height:auto;
    bottom:105px;
    right:15px;
    background-color:#ffce00;
    color:#000;
    text-align:center;
    box-shadow: 2px 2px 3px #000;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}
.floatLanguage{
    position: fixed;
    width: auto;
    padding: 5px;
    height: auto;
    bottom: 70px;
    left: 15px;
    background-color: #ffce00;
    color: #000;
    text-align: center;
    box-shadow: 2px 2px 3px #000;
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 9999999;
}


.my-float{
    margin-top:7px;
}


.grid{
    display: grid;
    grid-template-columns: 48% 48%;
    grid-template-rows: 1fr;
    column-gap: 4%;
    row-gap: 2%;
    align-items: center;
    padding: 2%;
}
.grid-item{
    width: auto;
    height: 150px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
    -webkit-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 20px 0px rgba(0,0,0,0.75);

}
.cat_img{
    object-fit: cover;
    width: 100%;
}
.centered{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 4.5vw;
    font-family: 'Josefin Sans', sans-serif;

}
.overlay {
    position: absolute;
    width:100%;
    height: 100%;
    top:0px;
    left:0px;
    background-color: rgba(0,0,0,0.5);

}

.menu-item {
    grid-column-start: 1;
    grid-column-end: 3;
    height: 100px !important;
    margin: 15px 0;
    display: grid;
    grid-template-columns: 110px auto auto;
    column-gap: 9px;
    font-size: 1em;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.7);
    align-items: center;
}
.menu-item-grid{
    margin-bottom: 100px !important;
}
.menu-item-name {
    grid-column-start: 2;
    grid-column-end: 3;
    font-family: 'Josefin Sans', sans-serif !important;
    text-transform: uppercase !important;
    font-size: 0.9rem;
    line-height: 1rem;
    vertical-align: middle !important;
}
.menu-item-description {
    grid-column-start: 2;
    grid-column-end: 3;
    font-family: 'Josefin Sans', sans-serif !important;
    text-transform: uppercase !important;
    font-size: 0.5rem;
    line-height: 1rem;
    vertical-align: middle !important;
}
.menu-item-img {
    grid-column-start: 1;
    grid-column-end: 2;
    width: 110px;
    height: 100px;
}
.menu-item-img img {
    height: 100%;
    max-width: 100%;
    width: 110px;
    border-radius: 10px 0 0 10px;
    float: left;
    margin: auto;
    object-fit: cover;

}
#food_description,#food_title,.close,#food_price{
    font-family: 'Courier Prime', monospace;
}
#food_title{
    text-transform: uppercase !important;
}
.menu-item-price {
    grid-column-start: 3;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem !important;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
    padding-right: 10px;

}

.drink-item {
    grid-column-start: 1;
    grid-column-end: 2;
    height: 75px;
    margin: 15px;
    display: grid;
    font-size: 0.9em;
    align-items: center;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.7);
    column-gap: 9px;
}
.drink-item-name {
    grid-column-start: 1;
    grid-column-end: 2;
    font-family: 'Josefin Sans', sans-serif !important;
    text-transform: uppercase !important;
    font-size: 0.9rem;
    line-height: 1rem;
    vertical-align: middle !important;
}
.drink-item-price {
    grid-column-start: 1;
    grid-column-end: 2;
    font-family: 'Josefin Sans', sans-serif !important;
    text-transform: uppercase !important;
    font-size: 0.8rem;
    line-height: 1rem;
    vertical-align: middle !important;
}
.drink-item-price {
    grid-column-start: 2;
    grid-column-end: 2;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.5rem !important;
    font-weight: 700;
    line-height: 50px;
    text-align: right;
    padding-right: 10px;
}

.menu-separator {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-template-columns: auto auto;
    padding-top: 5px;
    border: 2px solid white;
    align-items: center;
    background:rgba(255, 206, 0, 0.8);
    color: black;

}
.menu-separator-name{
    font-size: 1.2em;
    line-height: 50px;
    font-weight: 700;
    border-radius: 5px;
    padding-left: 15vw;
    font-family: 'Josefin Sans', sans-serif;
}
.menu-separator-amount{
    text-align: right;
    font-size: 1.2em;
    line-height: 50px;
    font-weight: 700;
    border-radius: 5px;
    padding-right: 10px;
    font-family: 'Josefin Sans', sans-serif;
}


/*Desktop Stuff*/
@media only screen and (min-width: 800px) {
    .container {
        grid-template-rows: 150px 100px 20px auto 20px;
    }
}

/*MODAL*/
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    position: relative;
}

/* The Close Button */
.close {
    color: black;
    float: right;
    top: 2rem;
    right: 0;
    font-size: 5rem;
    line-height: 0;
    font-weight: bold;
    position: absolute;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

