/* ====================================================================================================
 *
 * Theme Name: Eichstädts
 * Version: 1.0
 * Author: HS Onlinemarketing
 * Author URI: http://www.hs-onlinemarketing.de
 *
 * ----------------------------------------------------------------------------------------------------
 *
 * [01] SETUP
 * [02] GLOBALS
 * [03] HEADER
 * [04] PRIMARY MENU
 * [05] MAIN CONTENT
 * [06] FOOTER
 * [07] MISCELLANEOUS
 *
 * ==================================================================================================== */




@charset "UTF-8";




/* ----------------------------------------------------------------------------------------------------
 * [01] SETUP
 * ---------------------------------------------------------------------------------------------------- */


/* Import fonts
 * ------------ */

/* -- Beyond the Mountains */

/* Regular version */
@font-face {
  font-family: "Beyond the Mountains";
  src: url("vendor/fonts/beyond_the_mountains.ttf");
  font-style: normal;
  font-weight: 400;
}

/* -- Roboto Condensed */

/* Regular */
@font-face {
  font-family: "Roboto Condensed";
  src: url("vendor/fonts/RobotoCondensed-Regular.ttf");
  font-style: normal;
  font-weight: 400;
}

/* Italic */
@font-face {
  font-family: "Roboto Condensed";
  src: url("vendor/fonts/RobotoCondensed-Italic.ttf");
  font-style: italic;
  font-weight: 400;
}

/* Bold */
@font-face {
  font-family: "Roboto Condensed";
  src: url("vendor/fonts/RobotoCondensed-Bold.ttf");
  font-style: normal;
  font-weight: 700;
}

/* Bold italic */
@font-face {
  font-family: "Roboto Condensed";
  src: url("vendor/fonts/RobotoCondensed-BoldItalic.ttf");
  font-style: italic;
  font-weight: 700;
}




/* ----------------------------------------------------------------------------------------------------
 * [01] GLOBALS
 * ---------------------------------------------------------------------------------------------------- */


html {
  overflow-y: scroll;
  font-size: 100%;
}

body {
  color: #492d24;
  font: 1rem/1.6 "Roboto Condensed", sans-serif;
}


/* Layout
 * ------ */

.wrapper {
  position: relative;
}

.no-gutters {
  margin-right: 0 !important;
  margin-left: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.text-align-left {
  text-align: left !important;
}

.text-align-right {
  text-align: right !important;
}

.text-align-center {
  text-align: center !important;
}

strong {
  font-weight: 700;
}


/* Headings
 * -------- */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: inherit;
  line-height: 1.3;
}

h1 {
  font-family: "Beyond the Mountains", serif;
  font-size: 6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  margin: 1.5em 0 0.75em;
  font-size: 1.5rem;
}

h4 {
  margin: 1.5em 0 0.75em;
  font-size: 1.25rem;
}


/* Paragraphs and other block elements
 * ----------------------------------- */

p {
  margin-bottom: 15px;
}


/* Links and buttons
 * ----------------- */

a {
  border-bottom: 1px solid transparent;
  color: #492d24;
  transition: all 0.2s ease-in;
}

a:hover,
a:active,
a:focus {
  border-color: #75b326;
  color: #75b326;
  text-decoration: none;
}

/* -- Primary button */

.button-container {
  margin: 30px 0;
}

.btn-primary {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: #fff;
  color: #492d24;
  transition: 0.2s ease-in;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:active:hover,
.btn-primary:active:focus  {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.btn-default {
  padding: 8px 14px;
  font-size: 1rem;
}

.btn-dark {
  border-color: #75b326;
  background-color: #75b326;
  color: #fff !important;
}

.btn-dark:hover,
.btn-dark:active,
.btn-dark:focus,
.btn-dark:active:hover,
.btn-dark:active:focus  {
  border-color: #75b326;
  background-color: transparent;
  color: #75b326 !important;
}

.btn-big {
  padding: 12px 20px;
  font-size: 1.125rem;
}


/* Images
 * ------ */

img {
  width: 100%;
  height: auto;
}




/* ----------------------------------------------------------------------------------------------------
 * [02] HEADER
 * ---------------------------------------------------------------------------------------------------- */


#header {
  top: 0;
  left: 0;
  z-index: 100;
  height: 100%;
  overflow-y: auto;
  text-align: center;
}

.logo-container {
  margin: 0;
  padding: 90px 0;
}

.logo {
  width: 67%;
  max-width: 200px;
}


/* RWD styles
 * ---------- */

@media (max-width: 767px) {

  .logo-container {
    padding: 30px 0;
  }

}

@media (min-width: 768px) {

  #header {
    position: fixed;
  }

}


/* ----------------------------------------------------------------------------------------------------
 * [03] PRIMARY MENU
 * ---------------------------------------------------------------------------------------------------- */


#nav {
  margin: 0;
  padding-bottom: 100px;
  border: none;
  border-radius: 0;
  background: transparent;
}

#primary-menu {
  float: none;
  margin: 15px 0;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

#primary-menu .menu-item {
  float: none;
}

#primary-menu .menu-item + .menu-item {
  margin-top: 15px;
}

#primary-menu .menu-item a {
  display: inline-block;
  padding: 0;
  border-bottom: 1px solid transparent;
  background-color: transparent;
  color: #492d24;
}

#primary-menu .menu-item:hover a,
#primary-menu .current-menu-item a {
  background-color: transparent;
  border-color: #75b326;
  color: #75b326;
}

#primary-menu .meta-menu-item {
  font-size: 0.875rem;
}

#primary-menu .menu-item + .meta-menu-item {
  margin-top: 30px;
}

#primary-menu .meta-menu-item + .meta-menu-item {
  margin: 0;
}


/* Mobile menu
 * ----------- */

.navbar-default .navbar-collapse {
  padding: 0;
  border-color: #ddd;
}

.navbar-toggle {
  float: none;
  margin: 0 auto 30px;
  padding: 5px 10px 0px;
  border: 0;
  border-radius: 0;
  background-color: #75b326;
  transition: 0.2s ease-in;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:active,
.navbar-default .navbar-toggle:focus {
  background-color: #75b326;
}

.navbar-toggle .glyphicon {
  font-size: 2rem;
  color: #fff;
}

.navbar-toggle .glyphicon-remove {
  display: none;
}

.navbar-toggle.open .glyphicon-remove {
  display: inline;
}

.navbar-toggle.open .glyphicon-menu-hamburger {
  display: none;
}


/* RWD styles
 * ---------- */

@media (max-width: 767px) {

  #nav {
    padding: 0;
  }

}



/* ----------------------------------------------------------------------------------------------------
 * [04] MAIN CONTENT
 * ---------------------------------------------------------------------------------------------------- */


/* Article header
 * -------------- */

/* -- Article title */

.article-title-container {
  display: table;
  width: 100%;
  height: 600px;
  background-color: #477316;
  background-position: center;
  background-size: cover;
}

.article-title {
  display: table-cell;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  text-align: center;
}

.article-title-ornament {
  display: block;
  width: 30px;
  height: auto;
  margin: 45px auto 0;
}

/* -- RWD styles */

@media (max-width: 767px) {

  .article-title-container {
    height: 300px;
  }

  .article-title {
    font-size: 3rem;
  }

  .article-title-ornament {
    margin-top: 30px;
  }

}


/* Article body
 * ------------ */

.section-title {
  margin-bottom: 30px;
  font-family: "Beyond the Mountains", serif;
}

.section-text ul {
  padding-left: 15px;
}

.section-text strong em,
.section-text em strong {
  display: block;
  margin: 30px 0;
  font-size: 1.125rem;
  font-style: normal;
  text-transform: uppercase;
}

.section-text strong em i,
.section-text em strong i {
  font-style: normal;
  text-transform: lowercase;
}

/* -- Section type "default-text" */

.default-text {
  padding: 120px 30px;
  background: #477316;
  background: -moz-linear-gradient(top, #477316 0%, #75b326 100%);
  background: -webkit-linear-gradient(top, #477316 0%, #75b326 100%);
  background: linear-gradient(to bottom, #477316 0%, #75b326 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#477316', endColorstr='#75b326', GradientType=0 );
  color: #fff;
  text-align: center;
}

.default-text .section-text {
  max-width: 800px;
  margin: 0 auto;
}

.default-text.text-color-dark {
  background: #fff;
  color: #492d24;
}

.default-text.text-color-dark .section-title {
  color: #75b326;
}

.default-text.text-color-dark a {
  color: #75b326;
}

/* -- -- RWD styles */

@media (max-width: 767px) {

  .default-text {
    padding: 60px 30px;
  }

  .section-title {
    font-size: 2rem;
  }

}

/* -- Section type "text-with-slider" */

/* -- -- Text */

.text-with-slider .section-title {
  color: #75b326;
}

.text-with-slider .section-text {
  padding: 60px;
}

/* -- -- Slider */

.slider-container {
  position: relative;
  overflow: hidden;
}

.slide-container {
  display: block;
  float: left;
  width: 100%;
}

.slide {
  position: relative;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 50px;
  width: 50px;
  border: none;
  border-radius: 50%;
  background-color: #75b326;
  color: #fff;
  font: 3rem/100% "Roboto Condensed", sans-serif;
  text-align: center;
  opacity: 0.8;
  transition: 0.2s ease-in;
}

.owl-prev:hover,
.owl-next:hover {
  opacity: 1;
}

.owl-prev {
  left: 5%;
}
.owl-next {
  right: 5%;
}

/* -- -- RWD styles */

@media (max-width: 767px) {

  .text-with-slider .section-text {
    padding: 30px;
  }

}

/* -- Sections with additional classes */

.home-gallery {
  padding: 0;
}

.home-gallery .section-text {
  max-width: 100%;
}

.home-gallery .gallery-item {
  margin: 0 !important;
}

.home-gallery a {
  position: relative;
  display: block;
  border: 0;
  background-color: #75b326;
}

.home-gallery a:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: block;
  height: 50px;
  width: 50px;
  border: none;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font: 300 3rem/0.875 "Roboto Condensed", sans-serif;
  text-align: center;
  opacity: 0;
  transition: 0.2s ease-in;
  content: "+"
}

.home-gallery a:hover:after {
  opacity: 1;
}

.home-gallery img {
  border: 0 !important;
  transition: 0.2s ease-in;
}

.home-gallery a:hover img {
  opacity: 0.3;
}

.prices .section-text p,
.prices .section-text ul {
  text-align: left;
}

.prices table {
  width: 100%;
  margin-bottom: 60px;
}

.prices tr + tr {
  background-image: linear-gradient(to right, #fff 10%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  background-size: 10px 1px;
  background-repeat: repeat-x;
}

.prices td {
  padding: 15px 0;
}

.prices td:first-child {
  text-align: left;
}

.prices td:nth-child(2) {
  text-align: right;
}

.google-map {
  position: relative;
  overflow: hidden;
  height: 0;
  padding: 0 0 50% 0;
}

.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.google-map img {
  transition: 0.2s ease;
}

.google-map a:hover img {
  opacity: 0.9;
}

/* -- -- RWD styles */

@media (max-width: 991px) {

  .google-map {
    padding-bottom: 100%;
  }

}




/* ----------------------------------------------------------------------------------------------------
 * [05] FOOTER
 * ---------------------------------------------------------------------------------------------------- */


#footer {
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding-top: 15px;
  background-color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

/* Language switcher
 * ----------------- */

.language-switcher {
  margin-bottom: 15px;
  font-size: 1.125rem;
}

.language-switcher span + span:before {
  margin: 5px;
  content: "|";
}

.language-switcher .current_language {
  border-color: #75b326;
  color: #75b326;
}

.language-switcher img {
  width: auto;
}


/* Top link
 * -------- */

#toplink {
  position: fixed;
  right: 0;
  bottom: 120px;
  z-index: 1000;
  width: 0px;
  height: 45px;
  border: 0;
  background-color: #492d24;
  color: #fff;
  font-size: 1.5rem;
  line-height: 2.125;
  text-align: center;
}

#toplink:hover,
#toplink:active {
  line-height: 1.875;
}


/* RWD styles
 * ---------- */

@media (min-width: 768px) {

  #footer {
    position: fixed;
  }

}




/* ----------------------------------------------------------------------------------------------------
 * [06] MISCELLANEOUS
 * ---------------------------------------------------------------------------------------------------- */


/* Reservation form
* ---------------- */

.wpcf7-form {
  margin-top: 60px;
  text-align: left;
}

.wpcf7-form .form-group {
  margin-bottom: 60px;
}

.wpcf7-form label {
  width: 100%;
  font-size: 0.875rem;
  font-weight: normal;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-textarea,
.wpcf7-form .wpcf7-textarea:focus {
  padding: 5px 0;
  border-radius: 0;
  border: solid #fff;
  border-width: 0 0 1px;
  box-shadow: none;
  background-color: transparent;
  color: #fff;
  font-size: 1rem;
}

.wpcf7-form .wpcf7-textarea {
  resize: vertical;
}

.wpcf7-form .wpcf7-list-item {
  width: 50%;
  margin: 0;
}

.wpcf7-form .wpcf7-list-item.last {
  padding-left: 15px;
}

.wpcf7-form .wpcf7-list-item input[type="radio"] {
  display: block;
  margin-top: 15px;
}

.wpcf7-form .button-container {
  margin-top: 60px;
  text-align: center;
}

/* -- RWD styles */

@media (max-width: 991px) {

  .wpcf7-form .form-group {
    margin-bottom: 60px;
  }

}


/* Form controll messages
 * ---------------------- */

div.wpcf7-response-output {
  margin: 0;
  padding: 15px;
  text-align: center;
}

span.wpcf7-not-valid-tip {
  color: rgba(255, 255, 255, 0.7);
}
