/****************************************/
/************** Main *******************/
/***************************************/

html body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  display: block;
  font-family: "Montserrat", sans-serif;
}

/******************************************/
/************** Loader *******************/
/******************************************/

#loader {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  height: 6rem;
  width: 6rem;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
    fill: #512b58;
  }

  to {
    transform: rotate(360deg);
    fill: #512b58;
  }
}

.center {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}

/******************************************/
/************** Nav-bar *******************/
/******************************************/

.navbar {
  background-color: #512b58;
}

/*main Nav Bar*/
.navbar-logo {
  margin-top: 0.2rem;
  margin-left: 2.7rem;
  height: 3rem;
}

/* Nav Bar items*/
.nav-item li {
  display: inline-block;
}

.navbar-nav {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  margin-right: 5rem;
  text-align: center;
}

.nav-item a:link,
.nav-item a:visited {
  padding: 8px 8px;
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  border-bottom: transparent 2px solid;
  text-transform: uppercase;
}

.nav-item a:hover,
.nav-item a:active {
  color: #ffc996;
}

/* Nav Bar Toggler*/
.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}

.navbar-custom .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  position: relative;
  transition: all 300ms linear;
  cursor: pointer;
}

.navbar-toggler-icon:after,
.navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 0;
  content: "";
  z-index: 2;
  transition: all 300ms linear;
}

.navbar-custom .navbar-toggler-icon:after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

/******************************************/
/************** Carousel ******************/
/******************************************/

/* carousel  */
.carousel-inner img {
  width: auto;
  height: 100%;
  overflow: hidden;
  background-color: #ffffff;
}

.carousel-item {
  overflow: hidden;
  height: 100vh;
  position: relative;
  z-index: 10;
  background-color: #000;
}

.overlay-image {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  opacity: 0.8;
  z-index: 2;
}


/************ INTRO SECTION *************/
.title-block {

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 10px;
  border:2px solid white;
}

.tittle-block {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  background-color: #512b5838;

}

.tittle-block h1{

  display: flex;

  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.5rem;
  font-weight: 600;
  line-height: 2;
  margin: 0 15px;
}



/******************************************/
/************** Features ******************/
/******************************************/
.features-section{
  position: relative;
  z-index: 9;

  background-color: #ffff;
  padding: 7rem 0;
}

.features-box {
  position: relative;
  z-index: 9;

  background-color: #ffff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 6rem 0;
}

.features-box img {
  width: 50%;
}

/******************************************/
/******** /* Gallery section ************/
/******************************************/

 .gallery-showcase{

  position: relative;
  z-index: 8;
  /* padding: 2rem; */
  /* border: 1px solid  #ff8474; */
  width: 100%;
 }
.gallery-photo {

  margin: 0;
  overflow: hidden;
  background-color: #000;
}

.gallery-photo img {
  opacity: 0.6;
  width: 100%;
  height: auto;
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
}

.gallery-photo img:hover {
  opacity: 1;
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}

/******************************************/
/************** Opening-time ******************/
/******************************************/

.opening-hours-section {
  background-color: white;
  position: relative;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 0;
}

.opening-hours-container {
  border: 3px solid #512b58;
  border-radius: 10px;
  overflow: hidden;
  background-color: #512b58;
  max-width: 70%;
  width: 100%;
}

.opening-hours-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  background-color: #512b58;
  color: #fff;
  padding: 12px 5px;
}

.opening-hours-row {
  display: flex;
  justify-content: space-between;
  align-content: center;
  margin: 1.2rem 0;
}


.opening-hours-row div {
  margin: 0.3rem 0.3rem;
  color:#512b58;
}

.opening-hours-row :first-child {
  font-weight: 600;
}

.opening-hours-details {
  border-radius: 8px;
  border: 3px solid #512b58;
  background-color: #fff;
  padding: 1.5rem 1rem;
}

.opening-hours-row-bold {
  font-weight: 500;
}

/******************************************/
/************** Find-us ******************/
/******************************************/

.parallax-upper {
  background-color: black;
  position: relative;
  height: 60vh;
}

.parallax-upper::before {
  content: "";
  opacity: 0.7;
  background: url(Ahrweiler.jpg) no-repeat;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.findus-box {
  text-align: center;
  width: auto;
  height: auto;
  color: #fff;
  z-index: 100;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.findus-title {
  font-weight: 300;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-transform: capitalize;
}

.parallax-container {
  position: relative;
  margin: 0 auto;
  background: #000;
  font-size: 24px;
}

/******************************************/
/************** BTN ******************/
/******************************************/
.btns:link,
.btns:visited,
input[type="submit"] {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: background-color 0.2s, border 0.2s, color 0.2s;
  transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.btns-full:link,
.btns-full:visited,
input[type="submit"] {
  background-color: #512b58;
  border: 1px solid #512b58;
  color: #fff;
  margin-right: 15px;
  border-radius: 8px;
}

.btns-ghost:link,
.btns-ghost:visited {
  padding: 1rem;
  border: 1px solid #fff;
  color: #fff;
}

.btns:hover,
.btns:active,
input[type="submit"]:hover,
input[type="submit"]:active {
  background-color: #ff8474;
}

.btns-full:hover,
.btns-full:active {
  border: 1px solid #ff8474;
}

.btns-ghost:hover,
.btns-ghost:active {
  border: 1px solid #ff8474;
  color: #fff;
}

/******************************************/
/***********  Contact us - fixed **********/
/******************************************/
.contact-us {
  position: fixed;
  right: 5%;
  bottom: 5%;
  z-index: 88;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-item {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #ff8474;
  color: #fff;
  transition: background-color 0.2s, border 0.2s, color 0.2s;
}

.contact-item:hover,
.contact-item:active {
  background-color: #fff;
  /* border: 1px solid #ff8474; */
  color: #ff8474;
}

/******************************************/
/**************  Footer  ******************/
/******************************************/
.footer-logo {
  margin-top: 0.2rem;
  margin-bottom: 0rem;
  height: 3rem;
  margin: auto auto;
}

.footer-dark {
  position: relative;
  z-index: 8;
  font-weight: 200;
  letter-spacing: normal;
  padding: 50px 0;
  color: #f0f9ff;
  background-color: #512b58;
}

.footer-dark h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-dark ul {
  padding: 0;
  list-style: none;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
  text-align: left;
}

.footer-dark ul a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

.footer-dark .item.text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  flex-direction: column;
}

.footer-dark .item.text p {
  opacity: 0.7;
  margin-bottom: 0;
}

.footer-dark .copyright {
  text-align: center;
  opacity: 0.7;
  font-size: 13px;
  margin-bottom: 0;
}

/******************************************/
/************** Breakpoints ***************/
/******************************************/

/* max-width: 1199.98px  */
@media (max-width: 1199.98px) {
  .carousel-item {
    height: 100vh;
  }

  .title-welcome {
    font-size: 2.5rem;
  }
}

/* max-width: 991.98px  */
@media (max-width: 991.98px) {


  .gallery-photo img.scrolled {
    opacity: 1;
    transform: scale(1);
  }

  .carousel-item {
    height: 100vh;
  }

  .title-welcome {
    font-size: 2.3rem;
  }

  .findus-title {
    font-size: 2.5rem;
  }

  .navbar.scrolled a img.navbar-logo {
    height: 3rem;
    margin-left: 2rem;
  }

  .navbar-logo {
    height: 2.5rem;
    margin-left: 1.2rem;
  }

  .footer-dark .item.social {
    text-align: center;
    margin-top: 20px;
  }
}

/* max-width:767px  */
@media (max-width: 767px) {


  .findus-title {
    font-size: 2rem;
  }

  .footer-dark .item.text {
    margin-bottom: 0;
  }

  .footer-dark .item:not(.social) {
    text-align: center;
    padding-bottom: 20px;
  }

  html body {
    content: "";
  }

  ::-webkit-scrollbar {
    width: 0px;
  }

  .features-box img {
    width: 50%;
  }
}

/* max-width: 575.98px  */
@media (max-width: 575.98px) {
  .carousel-item {
    height: 100vh;
  }

  .title-welcome {
    font-size: 2rem;
  }

  .findus-title {
    font-size: 1.5rem;
  }

  .navbar-logo {
    height: 2rem;
    margin-left: 1.2rem;
  }

  .navbar.scrolled a img.navbar-logo {
    height: 3rem;
    margin-left: 1.2rem;
  }

  .tittle-block {

    flex-direction: column;
  }
  .features-section {
    padding: 0px 0;
  }

  .features-box img {
    width: 25%;
  }

  .footer-dark ul {
    text-align: center;
  }

  .opening-hours-row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .title-block {


    display: flex;
    align-items: center;
    justify-content: center;
flex-direction: column;
  }
  
}

/* max-width: 325px  */
@media (max-width: 325px) {
  .carousel-item {
    height: 100vh;
  }

  .title-welcome {
    font-size: 2rem;
    font-weight: 300;
  }

  .findus-title {
    font-size: 1rem;
  }

  .navbar-logo {
    margin-left: 0.2rem;
    height: 3rem;
  }

  .navbar.scrolled a img.navbar-logo {
    height: 2rem;
    margin-left: 0.5rem;
  }
}

/* min-height:992px  */
@media (min-height: 992px) {
  .carousel-item {
    height: 50vh;
  }

  .title-welcome {
    font-size: 2rem;
    font-weight: 300;
  }
}








