
/*--------------------------------------------------------------
# LOFT
color1: #21522e (Everglade)
color2: #8b9c9d (Granny Smith)
color3: #8ab594 (Bay Leaf)
color4: #c7caca (Silver Sand)

--------------------------------------------------------------*/
body {
  background: #fff;
  color: #8b9c9d;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

a {
  color: #21522e;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #8ab594;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.scrolled-offset {
  margin-top: 50px;  
}

.PrimaryColor {
  color: #21522e; 
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #21522e;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #8b9c9d;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #21522e;
  border-bottom: 1px solid #fff;
  font-size: 24px;
  padding: 0;
  height: 80px;
}

#topbar .logo img {
  height: 80px;
  margin-right: 20px;
}

#topbar .contact-info i {
  margin-left:15px;
}

#topbar .contact-info a {
  color: #fff;
  display: inline-block;
  line-height: 1px;
}

#topbar .contact-info a:hover {
  color: #8ab594;
}

@media (max-width: 991px) {
  #topbar {
    font-size: 18px;
  }

  #topbar .contact-info i {
    margin:5px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 28px;
  transition: all 0.5s;
  z-index: 997;
  background: #8b9c9d;
  color: #fff;
}

#header .mobile-only-contact {
  padding-top:5px;
  visibility: hidden;
}

#header .mobile-only-contact i {
  margin:5px;
}

#header .mobile-only-contact a {
  color:#fff;
}

#header .mobile-only-contact a:hover {
  color: #8ab594;
}

@media (max-width: 768px) {
  #header .mobile-only-contact {  
    visibility: visible;
    padding-top:2px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #21522e;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #8b9c9d;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #8b9c9d;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #8ab594;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 200px;
  position: relative;  
  background-size: cover;
  padding: 0;
}

#hero .hero-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero .hero-content h2 {
  color: #8b9c9d;
  margin-bottom: 30px;
  font-size: 64px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.4);
}

#hero .hero-content h2 span {
  color: #21522e;  
  white-space: nowrap;
}

@media (max-width: 767px) {
  #hero .hero-content h2 {
    font-size: 34px;
  }
}

#hero .hero-content .btn-order-online,
#hero .hero-content .btn-schedule {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}

#hero .hero-content .btn-order-online {
  background: #8b9c9d;
  border: 2px solid #8b9c9d;
}

#hero .hero-content .btn-order-online:hover {
  background: none;
  color: #8b9c9d;
}

#hero .hero-content .btn-schedule {
  background: #21522e;
  border: 2px solid #21522e;
}

#hero .hero-content .btn-schedule:hover {
  background: none;
  color: #21522e;
}

#hero .hero-slider {
  z-index: 8;
  height: 20vh;
}

#hero .hero-slider::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  height: 400px;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#hero .hero-slider .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 40px 0;
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  color: #8b9c9d;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.section-header h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #21522e;
  bottom: 0;
  left: 0;
}

.section-header p {
  padding: 0;
  margin: 0;
}

/* About Section
--------------------------------*/
#about {
  padding: 30px 0 10px 0; 
}

#about .content h3 {
  color: #555;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  font-style: italic;
  text-align: justify;
}

#about .content p {
  line-height: 26px; 
}

#about .content p:last-child {
  margin-bottom: 0;
}

/* Menu Section
--------------------------------*/
#menu {
  padding: 40px 0;
}

#menu .box {
  padding: 20px;
  box-shadow: 10px 10px 15px rgba(73, 78, 92, 0.1);
  background: #fff;
  transition: 0.4s;
  height: 100%;
}

#menu .box:hover {
  box-shadow: 0px 0px 30px rgba(73, 78, 92, 0.15);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
}

#menu .box .menu-image {
  float: left;  
  margin-right: 10px;
}

#menu .box .menu-image img {
  height: 160px;
  width: 160px;
  margin: 5px;
}

#menu .box .menu-title {
  margin-left: 170px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
  color: #21522e;
}

#menu .box .menu-description {
  font-size: 16px;
  font-style: italic;
  margin-left: 160px;
  margin-bottom: 10px;
  line-height: 24px;
}

#menu .box .menu-price {
  text-align:right;
  text-decoration:double;
  font-weight: 1000;
  font-size: 18px;
  margin-left: 160px;
  margin-top: 10px;
  line-height: 24px;
}

#menu .box .menu-contact {
  text-align: justify;
  padding-top: 5px;
  font-size: 16px;
}

#menu .box .menu-contact div{
  padding-top: 10px;
}

#menu h3 {
  margin-top:80px; 
  margin-bottom:0px
}

@media (max-width: 767px) {
  #menu .box .box {
    margin-bottom: 10px;
  }

  #menu .box .menu-image {
    float: none;
    text-align: center;
    padding-bottom: 15px;
  }

  #menu .box .menu-image img {
    height: 100%;
    width: 100%;
    margin: 5px;
  }


  #menu .box .menu-title,
  #menu .box p {
    margin-left: 0;
    text-align: center;
  }

  #menu .box .menu-description {   
    margin-left: 0;
  }
}


/* Location Section
--------------------------------*/
#location {
  padding: 20px 0;
  margin:20px 0 60px 0;
}

#location iframe {
  border:0; 
  padding-right: 10px;
  height: 100%;
  width: 100%;
}

.schedule {
  text-align: center;
  margin-top: 30px;
}

.schedule table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

.schedule th, .schedule td {
  padding: 10px;
  border: 1px solid #ddd;
}

.schedule th {
  background-color: #21522e;
  color: white;
}

.schedule .old{  
  color: lightgray;
}

.schedule .nextevent{  
  color: #fff;
  background-color: #0d6efd;
}

/* Catering Section
--------------------------------*/
#catering {
  background: #8b9c9d;
  color: #fff;
  background-size: cover; 
  border-top: 10px solid #21522e;
  border-bottom: 10px solid #21522e;
}

#catering input{
margin-bottom: 20px;
}

#catering .cta-title {
  font-size: 28px;
  font-weight: 700;
}

#catering h3 {
  text-align:center; 
  padding-top:20px;
}

#catering .TxtIslemSonuc {
  width:50px; 
  text-align: center; 
  border-radius: .375rem;
}

@media (min-width: 769px) {
  #catering .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#catering .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
  background: #8b9c9d;
  text-align: right;
}

#catering .cta-btn:hover {
  background: #8ab594;
  border: 1px solid #fff;
}


/* Contact Section
--------------------------------*/
#contact {
  padding: 30px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #21522e;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
  text-decoration: underline;
}

#contact .contact-info a:hover {
  color: #21522e;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

@media (min-width: 768px) {

  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }
}

@media (min-width: 768px) {
  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

#contact #google-map {
  height: 290px;
  margin-bottom: 20px;
}

@media (max-width: 576px) {
  #contact #google-map {
    margin-top: 20px;
  }
}

#contact .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .error-message br+br {
  margin-top: 25px;
}

#contact .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

#contact input,
#contact textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact input::focus,
#contact textarea::focus {
  background-color: #21522e;
}

#contact button[type=button] {
  background: #21522e;
  border: 0;
  border-radius: 3px;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact button[type=submit]:hover {
  background: #2dc899;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #8b9c9d;
  padding: 0 0 5px 0;
  font-size: 12px;
}

#footer .copyright {
  color: #fff;
  text-align: center;
  padding-top: 10px;
}
