/* ==============================================
RESET -->
=============================================== */
html, body{ width:100%; max-width: 100%; height:auto; padding:0; margin:0; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering:optimizeLegibility; text-rendering: geometricPrecision; }
body{ overflow-x: hidden !important; overflow-y: scroll; -webkit-tap-highlight-color:rgba(0,0,0,0.3); font-style: normal; font-weight: 400; font-size: 14px; font-family: 'Montserrat', sans-serif !important; -webkit-font-smoothing:antialiased; line-height: 30px; letter-spacing: 0px; color: #000;}
section, .cover{ background-size:cover; background-position: center center; background-repeat: no-repeat; }
html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6{ -webkit-text-size-adjust:none; }
/* Undragable Images */
img{display: block; width: 100%; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -webkit-user-drag: none; }
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6,p{ color: inherit; font-variant-ligatures: common-ligatures; padding:0; margin:0; }
ol, ul{ list-style: none; padding: 0; }
a, a:hover, a:focus, button, button:hover, button:focus{ text-decoration: none; color: inherit;}
*{ border:0; vertical-align: baseline; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
*, *:hover, *:focus{ outline:none !important; }
.container{max-width: 1170px;}
h6{font-size: 14px;}
section{overflow: hidden; position: relative;}
#outerCircleText div div {
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  color: #F22B3E;
}
/* End Required */
/* End Circle Text Styles */

/* NOTE: Site foont settings */

.gramond{font-family: 'Cormorant Garamond', serif;}
.montserrat{font-family: 'Montserrat', sans-serif;}



h1{font-family: 'Cormorant Garamond', serif;font-weight: 700;font-size: 56px;color: #FFFFFF;letter-spacing: 1px;text-align: center;}




header {
  width: 100vw;
  background: #fff;
  display: flex;
}
header ul{margin: 0;}
header .mobile-logo{display: none;}
/*** Navigation Styles ***/
header nav {
  width: 100vw;
  height: 100px;
  background: transparent;
  display: grid;
  position: fixed;
  z-index: 11;
  transition: all 0.3s;
  border-bottom: 1px solid #C19B4B;

}
header nav.navShadow {
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  background-color: #c19b4b;
}
header nav.navShadow #word-mark {
  opacity: 0;
}
header #brand, #menu, ul {
  display: flex;
  align-items: center;

}
header #brand {
  padding-left: 40px;
}
header #logo {
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
header #word-mark {
  width: 120px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  margin-left: 20px;
  opacity: 1;
  transition: all 0.3s;
}
/*** Menu Styles ***/
header #menu {
  justify-content: center;
}
header li {
      padding: 0 60px;
}
header li a {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: #FFFFFF;
  letter-spacing: -0.09px;
}
header li a:hover{color: #fff;}
header #menu-toggle {
  width: 55px;
  height: 55px;
  background: #c19b4b;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
header #menu-toggle:hover .bar {
  width: 25px;
}
header #menu-toggle.closeMenu .bar {
  width: 25px;
}
header #menu-toggle.closeMenu .bar:first-child {
  transform: translateY(7px) rotate(45deg);
}
header #menu-toggle.closeMenu .bar:nth-child(2) {
  transform: scale(0);
}
header #menu-toggle.closeMenu .bar:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
header .bar {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
header .bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}
header .bar:last-child {
  width: 15px;
}

header #head-line {
  width: 520px;
  height: 30px;
  background: #fff;
  border-radius: 90px;
  position: relative;
}
header #head-line:before, #head-line:after {
  content: "";
  height: 30px;
  border-radius: 90px;
}
header #head-line:before {
  width: 360px;
  background: #fff;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
}
header #head-line:after {
  width: 200px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translate(-50%, 0);
}

/*** Responsive Menu For Smaller Device ***/
@media screen and (max-width: 767px) {
 header #menu-toggle {
    display: flex;
    position: absolute;
      right: 15px;
      top: 24px;
 }
 header ul {
    display: inline-block;
    width: 100vw;
    height: 0;
    background: #c19b4b;
    position: absolute;
    top: 0;
    transform: translate();
    box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
 }
 header ul.showMenu {
    height: 100vh;
    top: 100px !important;
 }
 header ul.showMenu li {
    opacity: 1;
    visibility: visible;
 }
 header li {
    width: 100%;
    float: left;
    padding-left: 40px;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    transition: all 0.3s 0.1s;
    padding: 25px 50px;
 }
  
  #head-line {
    transform: scale(0.8);
 }
 header li a{color: #fff;}
 header .mobile-logo{display: block; position: fixed;z-index: 99;max-width: 200px; top: 33px; left: 15px;}
 header .mobile-logo2{display: none;}
 .header3 .mobile-logo{position: absolute;}
}









.home{position: relative;  background-image: url(../images/1.jpg); background-size: cover; background-position: center  center; background-repeat: no-repeat; width: 100%; height: 100vh;}
.home::after{content: '';position: absolute;width: 100%;height: 100%;background-color: #000000b0;}
.home .home-text{position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); webkit-transform: translate(-50%,-50%);-moz-transform: translate(-50%,-50%);-ms-transform: translate(-50%,-50%);z-index: 1;}
.home .home-text p{font-weight: 700;font-size: 21px; line-height: 25px; color: #FFFFFF;letter-spacing: -0.2px;text-align: center;font-family: 'Cormorant Garamond', serif; max-width:730px; padding: 10px 0 35px;}
.home .home-text a{display: flex;font-weight: 500;font-size: 14px;color: #FFFFFF;letter-spacing: -0.09px; border:1px solid #fff; padding: 8px 20px; max-width: 240px; margin: 0 auto;}
.home .home-text a img{max-width: 30px;}
.home .home-text a span{padding-right: 90px;}
.home-rezervation{position: absolute; bottom: 0; left: 0;}
.home-rezervation a{display: flex;font-weight: 400;font-size: 16px;color: #FFFFFF;letter-spacing: 0.76px;text-align: center; background-color: #C19B4B;max-width: 240px; padding: 20px;}
.home-rezervation a span{padding-right: 40px;}
.home-rezervation a img{max-width: 24px; }
.home-social{left: auto; right: 0;z-index: 1;}


@media screen and (max-width: 768px){
  header .mobile-logo{max-width: 130px; top: 10px;}
  .home .home-text{width: 98%;}
  h1{font-size: 50px;}
  .home-rezervation a{padding: 15px;}
  .home-social a{padding: 18px;}

}








.home-food{padding: 90px 0;}
.home-food-title img{max-width: 99px; margin: 0 auto;}
.home-food-title p{font-weight: 600;font-size: 21px;color: #333333;letter-spacing: -0.2px;text-align: center;font-family: 'Cormorant Garamond', serif; line-height: 25px; max-width: 427px; margin: 0 auto;}
.home-food-title p span{color: #909090;}
.home-food .home-food-center-img{padding-top: 60px; position: relative;}
.home-food .home-food-center-img a{background-color: #C19B4B; padding: 25px 20px; position: absolute; right: 0; bottom: 0; transform: translate(50%,50%);}
.home-food .home-food-center-img a img{max-width: 32px;}
.home-food-ceter-description {padding-top: 30px;}
.home-food-ceter-description h6{font-weight: 600;font-size: 21px;color: #333333;letter-spacing: 0;font-family: 'Cormorant Garamond', serif; position: relative;}
.home-food-ceter-description h6:after{position: absolute; content: ''; left: 0; bottom: -15px; background-color: #C19B4B; width: 271px; height: 1px;}
.home-food-ceter-description p{font-weight: 400;font-size: 14px;color: #333333;letter-spacing: -0.13px; max-width: 383px; line-height: 18px; padding-top: 30px;}
.home-food .container{max-width: 70%;}

@media screen and (max-width: 768px){
  .home-food{padding: 50px 0;}
  .home-food .home-food-center-img{padding-top: 30px;}
  .home-food .home-food-center-img a{padding: 20px 15px; transform: none;}
  .home-food .home-food-center-img a img{max-width: 25px;}
  .home-food .container{max-width: 100%;}
}




.home-yoresel{padding-bottom: 180px;}
.home-yoresel .home-yoresel-img{position: relative;}
.home-yoresel .home-yoresel-img .yoresel-ext-img2{position: absolute; right: 20%; bottom: 0; transform: translate(50%,50%); max-width: 320px; object-fit: cover;}
.home-yoresel .home-yoresel-img .yoresel-ext-img1{max-height: 400px; max-width: 80%; object-fit: cover;}
.home-food-ceter-description2{padding: 50px 0 0 90px;}


@media screen and (max-width: 768px){
  .home-yoresel .home-yoresel-img .yoresel-ext-img2{position: relative; transform: none;max-width: 100%;right: auto;}
  .home-yoresel .home-yoresel-img .yoresel-ext-img1{max-width: 100%;}
  .home-food-ceter-description2{padding: 30px 0 0 0;}
  .home-yoresel{padding-bottom: 50px;}
}







.home-slider{padding: 90px 0; background-color: #F5F5F5;}
.home-slider .container{position: relative;}
.swiper-container {height: calc(70vh);margin: 60px; max-width: 100%;}
.swiper-slide {overflow: hidden;}
.slide-inner {position: absolute;width: 100%;height: 100%;left: 0;top: 0;background-size: cover;background-position: center;}
.copy {position: absolute;bottom: 15px;left: 0;right: 0;text-align: center;color: white;letter-spacing: 0.06em;}
.slider__pagination{z-index: 99; position: absolute; left: 50% !important; bottom: 30px !important;max-width: 150px;display: flex;justify-content: center;align-items: center;margin-left: -75px;}
.swiper-pagination-bullet{background-color: transparent !important; border:1px solid #fff; opacity: 1 !important; width: 10px !important; height: 10px !important; margin: 0 7px !important;}
.swiper-pagination-bullet-active{background-color: #fff !important;}
.home-food-title{padding-bottom: 50px;}
.swiper-button-next, .swiper-button-prev{background-image: none !important; display: flex; justify-content: center;align-items: center; background-color: #C19B4B;width: 50px !important;height: 50px !important;}
.swiper-button-next img, .swiper-button-prev img{max-width: 24px;}
.swiper-button-prev{left: -10px !important;}
.swiper-button-next {right: -13px !important}
.home-slider .slide-description{position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);}
.home-slider .slide-description h6{font-weight: 700;font-size: 24px;color: #FFFFFF;letter-spacing: 0;text-align: center;font-family: 'Cormorant Garamond', serif; position: relative;}
.home-slider .slide-description h6:after{position: absolute; content: ''; bottom: -10px; left: 50%; transform: translateX(-50%); width: 290px; height: 1px; background-color: #C19B4B;}
.home-slider .slide-description p{font-weight: 400;font-size: 16px;color: #FFFFFF;letter-spacing: -0.13px;text-align: center; line-height: 20px; max-width: 440px; margin: 0 auto; padding-top: 20px;}



@media screen and (max-width: 768px){
  .swiper-button-prev{left: 0 !important;}
  .swiper-button-next{right: 0 !important;}
  .home-slider .slide-description{width: 100%; padding: 0 50px;}
  .home-slider .slide-description h6:after{width: 200px;}

}






footer{background-color: #212121; padding: 95px 0 35px;}
footer .footer-logo img{max-width: 132px; margin: 0 auto;}
footer .footer-top-text p{position: relative; font-weight: 600;font-size: 16px;color: #C19B4B;letter-spacing: 0;text-align: center;line-height: 21px;font-family: 'Cormorant Garamond', serif; max-width: 343px; margin: 0 auto; padding-top: 20px;}
footer .footer-top-text p span{color: #909090;}
footer .footer-top-text p:after{position: absolute; content: ''; left: 50%; transform: translateX(-50%); bottom: -25px; width: 234px; height: 1px; background-color: #909090;}
footer .footer-menu ul li a{font-weight: 500;font-size: 14px;color: #909090;letter-spacing: 2px;text-align: center;line-height: 21px;}
footer .footer-menu ul li a span{padding-right: 5px;}
footer .footer-menu ul{justify-content: center;}
footer .footer-menu{padding-top: 40px;}
footer .footer-social{text-align: center; padding: 15px 0;}
footer .footer-social a{font-size: 24px; color: #C19B4B; padding-right: 10px; transition: all 300ms ease-in-out;}
footer .footer-social a:hover{color: #fff;}

footer .footer-adress{text-align: center; line-height: 0px; padding-top: 20px;}
footer .footer-adress p, footer .footer-adress a{font-weight: 500;font-size: 13px;color: #909090;letter-spacing: 0;text-align: center;line-height: 21px;}

footer .footer-copyright {padding-top: 100px;}
footer .footer-copyright p{font-weight: 500;font-size: 13px;color: #909090;letter-spacing: 0.32px;text-align: center;}




@media screen and (max-width: 768px){
  footer{padding: 60px 0 20px;}
  footer .footer-menu ul li a span{display: none;}
  footer .footer-menu ul{display: block; text-align: center;}
  footer .footer-copyright{padding-top: 50px;}
}






.alt-title {position: relative;  background-image: url(../images/5.jpg); background-size: cover; background-position: center  center; background-repeat: no-repeat; width: 100%; height: 50vh; display: flex; align-items: center; justify-content: center;  }
.alt-title h1 {padding-top: 85px; }
.home-food-title2{text-align: center; line-height: 18px;}
.home-food-title2 h6 {font-weight: 400;font-size: 14px;color: #333333;letter-spacing: -0.13px;text-align: center;max-width: 730px;margin: 0 auto;padding-top: 30px;}

.home-slider2{background-color: #fff; padding-top: 0;}
.home-slider2 .swiper-button-next, .home-slider2 .swiper-button-prev{top: auto;}



.galeri{padding: 80px 0;}

.galeri .demo-gallery a{padding: 15px; position: relative;}
.galeri .demo-gallery .gallery-hover{position: absolute;top: 0; left: 0; width: 100%; height: 100%; display: none; transition: all 300ms ease-in-out;}
.galeri .demo-gallery .gallery-hover img{max-width: 50px;}
.galeri .demo-gallery a:hover .gallery-hover{display: flex; justify-content: center; align-items: center;}
.pswp__caption .gallery-hover-icon{display: none !important;}
.pswp__caption small{display: none !important;}







.header2 nav{background-color: #c19b4b; position: relative;}
.alt-title-contact{padding-top: 80px; background-image: none;}
.contact-title{padding: 120px 0 200px; position: relative;}
.contact-title p{max-width: 650px;}
.contact-title p a{color: #C19B4B;}

@media screen and (max-width: 768px){
  .contact-title{padding: 60px 0 110px;}
  .contact-title p{font-size: 19px; padding: 0 30px;}
  .alt-title-contact{padding-top: 100px;}
}







