
/* -----------------FOONTS --------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

/* -----------------PAGE CSS --------------*/
/* --COLORS--*/
:root{
    --main-color:#ea4123;
    --dark: #232429;
    --dark-light:#1a1a1a;
    --white:#ffffff;
    --white-light:#c8c8c8;
    --shadow : 0 0 15px rgba(19, 19, 19, 0.25);
    --cursive-font:'Dancing Script',cursive;
    scroll-behavior: smooth;
}

/* --GLOBAL SETTINGS --*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline:none;
}
::before,
::after{
    box-sizing: border-box;
}
body{
    font-size: 16px;
    line-height: 1.5;
    -webkit-tap-highlight-color:transparent;
    font-family: 'Poppins',sans-serif;
    font-weight: 300;
    color: var(--white-light);
}
img{
    vertical-align: middle;
    max-width: 100%;
}


a{
    text-decoration: none;
}
ul{
    list-style: none;
}
h1{
    font-weight: 700;
    color: var(--white);
}
h2{
    font-weight: 600;
    color: var(--white);
}
h3,
h4,
h5,
h6{
    font-weight: 500;
    color: var(--white);
}
p{
    font-size: 16px;
}
.container{
    max-width: 1170px;
    margin: auto;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.justify-content-between{
    justify-content: space-between;
}
.algin-items-center{
    align-items: center;
}
.min-vh-100{
    min-height: 100vh;
}
.sec-padding{
    padding: 80px 0;
}
section{
    overflow: hidden;
}
.section-title{
    width: 100%;
    padding: 0 15px;
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2{
    font-size: 35px;
    text-transform: capitalize;
}
.section-title h2::before{
    content: attr(data-title);
    display: block;
    font-size: 24px;
    color: var(--main-color);
    font-family: var(--cursive-font);
    font-weight: 400;
    text-transform: capitalize;
}
.btn{
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    border-radius: 30px;
    text-transform: capitalize;
    font-weight: 500;
    transition: all .3s ease;
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
    color:var(--main-color);
    line-height: 1.5;
    user-select: none;
    border: none;
}
.btn-default{
    border: 2px solid var(--main-color);
}
.btn-default:hover{
    color: var(--white);
    background-color: var(--main-color);
}
@keyframes zoomInOut{
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
}
@keyframes spin01{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.callBtn{
    z-index: 3;
    position: fixed;
    right: -80px;
    top: 35%;
}
.module .trigger{
    position: relative;
    
}
.module .trigger span{
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    background: var(--white);
    color: var(--dark);
    display: block;
    min-width: 0px;
    height: 44px;
    padding: 0 18px;
    z-index: 1;
    cursor: pointer;
    border-radius: 22px;
    transition: 350ms border-radius 700ms,
    700ms color 700ms,
     350ms min-width 700ms;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
}
.module .trigger span em {
    font-style: normal;
    margin-right: 10px;
    transform-origin: bottom;
    animation: 700ms waving infinite;
}
@keyframes waving {
    0%{
        transform: rotate(-10deg);
    }
    50%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(-10deg);
    }
}
.module .trigger ul.locations{
    position: absolute;
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 0 0 22px 22px;
    font-size: 14px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    transition: 350ms transform 350ms;  
}
.module .trigger ul.locations a {
    opacity: 0;
    transition: 350ms opacity 0ms;

}
.module .trigger ul.locations li{
    top: 0;
    left: 0;
    width: 220px;
    height: 44px;
    padding: 0 20px;
    z-index: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    border-left: 0px solid #eee;
    transition: 200ms border-left 0ms;
}
.modeule .trigger ul.locations li:before{
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #eee, #fcfcfc);
    position: absolute;
    top: 0;
    left: 0;
}
.modeule .trigger ul.locations
li:last-of-type{
    border-radius: 0 0 22px 22px;
}
.module .trigger ul.locations li a{
    text-decoration: none;
    color: #000000;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
}
.modeule .trigger ul.locations li:hover{
    border-left: 10px solid #eee;
}
.module .trigger:hover span{
    min-width: 220px;
    border-radius: 22px 22px 0 0;
    transition: 350ms border-radius 0ms,
    700ms color 700ms, 350ms min-width 0ms;
    color: #ccc;
}
.module .trigger:hover ul.locations {
    transform: scaleY(1);
    transition: 350ms transform 350ms;
}
.module .trigger:hover ul.locations a{
    opacity: 1;
    transition: 350ms opacity 700ms;
}


/* --HEADER --*/
.header{
    padding: 8px 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
}
.header::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--dark-light);
    box-shadow: var(--shadow);
    z-index: -1;
    transition: transform .5s ease;
    transform: translateY(-100%);
}
.header.sticky::before{
    transform: translateY(0%);
}
.header .logo{
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 0 15px;
}
.header .nav-toggler{
    height:34px;
    width:44px;
    margin-right: 15px;
    cursor: pointer;
    border: none;
    background-color:transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header .nav-toggler.active{
    position: absolute;
    right: 0;
    z-index: 1;
    transition: all .5s ease;
    transform: translateX(-200px);
}
.header .nav-toggler span{
    height: 2px;
    width: 30px;
    display: block;
    background-color:var(--white);
    position: relative;
}
.header .nav-toggler.active span{
    background-color: transparent;
    transition: background-color .5s ease;
}
.header .nav-toggler span::before,
.header .nav-toggler span::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--white);
}
.header .nav-toggler span::before{
    transform: translateY(-8px);
}
.header .nav-toggler.active span::before{
    transform: rotate(45deg);
    transition: transform .5s ease;
}
.header .nav-toggler span::after{
    transform: translateY(8px);
}
.header .nav-toggler.active span::after{
    transform: rotate(-45deg);
    transition: transform .5s ease;
}
.header .nav{
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 280px;
    background-color: var(--dark-light);
    box-shadow: var(--shadow);
    overflow-y: auto;
    padding: 80px 0 40px;
    transition: transform .5s ease;
    transform: translateX(100%);
}
.header .nav.open{
    transform: translateX(0%);
}
.header .nav ul li a{
    display: block;
    font-size: 25px;
    color: var(--white);
    padding: 10px 30px;
    text-transform: capitalize;
    transition: color .3s ease;
}
.header .nav ul li a:hover{
    color: var(--main-color);
}
/*--========HOME SECTION START===============*/
.home-section{
   position: relative;
   overflow: hidden;
}
.home-section::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .7;
    z-index: -1;
}
.home-section .home-bg{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url('../img/home-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position:center;
    z-index: -2;
    animation: zoomInOut 20s ease infinite;
}
.home-section .min-vh-100{
    padding: 100px 0;
}
.home-text{
    padding: 0 15px;
    max-width: 700px;
    width: 100%;
    margin: auto;
    text-align: center;
}
.home-text h1{
    font-family: var(--cursive-font);
    font-size: 60px;
    line-height: 75px;
    margin: 0 0 5px;
}
.home-text p{
    margin: 0 0 30px;
}
/* -----------------ABOUT SECTİON--------------*/
.about-section{
    background-color: var(--dark);
}
.about-text,
.about-img{
    width: 50%;
    padding:0 15px;
}
.about-text h3{
    font-size: 30px;
    text-transform: capitalize;
    margin: 0 0 15px;
}
.about-text p{
    margin: 0 0 15px;
}
.about-text .btn{
    margin: 15px 0 0;
}
.about-img img{
    width: 100%;
    border-radius: 10px;
}
.about-img .img-box{
    position: relative;
}
.about-img .img-box::before{
    content: '';
    position: absolute;
    height: 100px;
    width: 100px;
    border: 3px solid var(--main-color);
    left: calc(50% - 50px);
    top: calc(50% - 50px);
    animation: spin01 13s linear infinite;
}
.about-img .img-box h3{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    max-width: 250px;
    text-align: center;
    transform: translate(-50%,-50%);
    font-size: 30px;
    font-family: var(--cursive-font);
    color: var(--dark);
    text-shadow: 1px 1px 5px #313131;
    font-weight: bold;
    text-transform: capitalize;
}
/* ----------------- MENU SECTION --------------*/

.menu-section{
    background-color: var(--dark);
    padding-bottom: 60px;
}
.menu-section .section-title{
    margin-bottom: 40px;
}
.menu-tabs{
    padding: 0 15px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.menu-tab-item{
    font-size: 18px;
    font-family: inherit;
    text-transform: capitalize;
    border: none;
    background-color: transparent;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    margin: 0 10px 10px;
    transition: color .3s ease;
    display: inline-block;
}
.menu-tab-item.active{
    color: var(--main-color);
}
.menu-tab-content{
    display: none;
}
.menu-tab-content.active{
    display: flex;
}
.menu-item{
    width: 50%;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.menu-item::after{
    content: '';
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    border-bottom: 2px solid var(--dark-light);
}
 .menu-item:nth-last-of-type(2)::after,
.menu-item:nth-last-of-type(1)::after{
    border: none;
} 
.menu-item-title{
    display: flex;
    align-items: center;
    max-width: calc(100% - 80px);
}
.menu-item-title li{
    font-size: 12px;
   
}
.menu-item-title h3{
    font-size: 16px;
    text-transform: capitalize;
    transition: color .3s ease;
    cursor: pointer;
}
.menu-item:hover .menu-item-title h3{
    color: var(--main-color);
}

.lazy-load{
    filter: blur(10px);
}

.menu-item-title img{ 
    transition: 0.7s;
    max-width: 100px; 
    margin-right: 15px;
    border-radius: 8px;
    animation-name: breath;
    animation-duration: 2s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
}
@keyframes breath {
    0% {scale: 1;}
    75% {scale: 1.1;}
    100% {scale: 1;}
}


.menu-item-title img:hover{
    
    transform: scale(1.1);
    cursor: pointer;
   
}

.menu-item-title p{
    font-size: 14px;
}
.menu-item-price{
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color);
    transition: color .3s ease;
}
.menu-item:hover .menu-item-price{
    color: var(--white);
}
.go-up{
    display: none;
    text-align: center;
    margin-top: 20px;
    
}

/* ----------------- LOCATION --------------*/
.location-section{
    background-color: var(--dark);    
}
.location-item{
    position: relative;
 
}
.location-wh{
    width: 1170px;
    height: 450px;
}


/* -----------------FOOTER CSS --------------*/
.footer{
    padding: 80px 0 0;
    background-image: url('../img/footer-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
    z-index:1;
}
.footer::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: -1;
}
.footer-item{
    width: calc(100% / 3);
    padding: 0 15px;
    text-align: center;
}
.footer-item h3{
    text-transform: capitalize;
    font-size: 22px;
    margin: 0 0 15px;
}
.footer-item p{
    line-height: 30px;
}
.footer-item .social-links{
    margin-top: 15px;
}
.footer-item .social-links a{
    display: inline-flex;
    height: 40px;
    width: 40px;
    color: var(--white-light);
    font-size: 22px;
    align-items: center;
    justify-content: center;
    transition: color .3s ease;
}
.footer-item .social-links a:hover{
    color: var(--main-color);
}

.footer .copyright{
    margin: 80px 0 0;
    width: 100%;
    text-align: center;
    padding: 25px 15px;
    font-size: 14px;
    border-top: 1px solid var(--white-light);
}
.footer .copyright a{
    color: var(--white);
    transition: color .3s ease;
}
.footer .copyright a:hover{
    color: var(--main-color);
}
.phoneCall{
    color: var(--white-light);
}
.phoneCall:hover{
    color: var(--main-color);
}


.popup-image{
    position: fixed;
    top: 0;
    left: 0;
    background:rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    z-index: 100;
    display: none;
}
.popup-image span{
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 60px;
    color: var(--white);
    cursor: pointer;
    z-index: 100;
}

.popup-image img{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid var(--white);
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}

/**======================== RESPONSIVE PAGE ========================**/

@media (max-width:991px){
    .location-item{
       max-width: 991px;
       transition: all .4s ease;
   }
   .location-wh{
    max-width: 100%;

   }
   
   
}
@media (max-width:767px){
    .home-text h1{
        font-size: 50px;
        line-height: 65px;
    }
    .menu-item,
    .about-text,
    .about-img{
        width: 100%;
    }
    .about-img{
        margin-top: 40px;
    }
    .about-text h3{
        font-size: 24px;
    }
    .menu-item:nth-last-of-type(2)::after{
        border-bottom: 2px solid var(--dark-light);
    }

    .footer-item{
        width: 100%;
    }
    .footer-item:not(:last-child){
        margin-bottom: 30px;
    }
    
    .location-item{
        transition: all .4s ease;
    }
    .location-wh{
        max-width: 100%;
    }
    .go-up{
        display: block;
        
    }
    .popup-image img{
        width: 95%;
    }
    
}
@media (max-width:575px){
    .location-item{
        width: 100%;
        transition: all .4s ease;
    }
    
    .location-wh{
        max-width: 100%;
    }
}