/* @import url('https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900&display=swap'); */
@import url('../webfonts/googlefonts/google_fonts.css');
/*Global styles*/
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'eurobold';
    src: url('../webfonts/euro/eurobold-webfont.woff2') format('woff2'),
         url('../webfonts/euro/eurobold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'euromediumregular';
    src: url('../webfonts/euro/euromedium-webfont.woff2') format('woff2'),
         url('../webfonts/euro/euromedium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root{
    --main-font: 'eurobold', sans-serif; /* 'Source Sans Pro', */
    --secondary-font: 'Herr Von Muellerhoff', cursive;
    --body-font: 'euromediumregular', sans-serif; /* 'Cabin' */
    --main-font-color-dark: #252525;
    --secondary-font-color: #C09F5B; /* #c59d5f; */
    --body-font-color: #515151;
}

#logosvg {
  position: fixed;
  left: 1.1rem;
  top: .1rem;

  -webkit-filter:
    drop-shadow( 1px 1px 2px #0d0d0d);
  filter:
    drop-shadow( 1px 1px 2px #0d0d0d);

  height: 79px;
  width: 205px;

  z-index: 1240;
}
.hideLogo {
  display: none;
}

.kontaktFormError {
  float: right;
  color: #ff0000;
  font-weight: 600;
  font-size: 1.2rem;
}
#kontFormRueckm {
  float: right;
  font-size: 1.6rem;
  padding-top: .2rem;
  padding-right: .7rem;
  font-weight: 600;
  color: var(--secondary-font-color);
}

/*
.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
} */

@keyframes blink {
     0% { opacity: 1; }
     50% { opacity: 0.5; }
     100% { opacity: 0; }
 }
.blink {
   -webkit-animation: blink .75s linear infinite;
   -moz-animation: blink .75s linear infinite;
   -ms-animation: blink .75s linear infinite;
   -o-animation: blink .75s linear infinite;
   animation: blink .75s linear infinite;
}


html {
  font-family: var(--body-font);
  font-size: 10px;
  color: var(--body-font-color);
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.hamburgerMenu, .closingX {
  /* text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000; */
  filter: drop-shadow(0px 0px 1px #000);
}

section {
  padding: 3.9rem 0;
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
}

p {
  font-size: 1.6rem;
}

.container {
  width: 100%;
  max-width: 122.5rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

header {
  width: 100%;
  /* position: absolute; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent);
}

.nav {
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--main-font);
}

.menu-toggle {
  color: #fff;
  font-size: 2.2rem;
  /* position: absolute; */
  position: fixed;
  /* top: 50%; */
  top: 3rem;
  transform: translateY(-50%);
  right: 2.5rem;
  cursor: pointer;
  z-index: 1500;
}

.menu-backwards {
  color: #fff;
  font-size: 2.2rem;
  /* position: absolute; */
  position: fixed;
  /* top: 50%; */
  top: 3rem;
  transform: translateY(-50%);
  right: 2.5rem;
  cursor: pointer;
  z-index: 1500;
  filter: drop-shadow(0px 0px 1px #000);
}

/*
.fa-times {

}
*/
.closingX {
  display: none;
}

.nav-list {
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  background-color: var(--main-font-color-dark);
  padding: 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 1250;
  transform: translateX(-100%);
  transition: transform .5s;
}

.nav::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.8);
  z-index: 1000;
  opacity: 0;
  transform: scale(0);
  transition: opacity .5s;
}

.open /* .fa-times */ .closingX {
  display: block;
}

.open /* .fa-bars */ .hamburgerMenu {
  display: none;
}

.open .nav-list {
  transform: translateX(0);
}

.open .nav::before {
  opacity: 1;
  transform: scale(1);
}

.nav-item {
  border-bottom: 2px solid rgba(255,255,255,0.3);
}

.nav-link {
  display: block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-right: -2px;
  transition: color.5s;
}

.nav-link:hover {
  color: var(--secondary-font-color);
}

.hero {
  width: 100%;
  height: 100vh;
  background: url('../images/bg_honey.jpg') center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.sub-headline {
  font-size: 8.5rem;
  font-family: var(--secondary-font);
  color: var(--secondary-font-color);
  font-weight: 100;
  line-height: .4;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeUp .9s forwards;
  animation-delay: 1.5s;
}

.single-animation {
  opacity: 0;
  animation: fadeUp .9s forwards;
  animation-delay: .5s;
}

.first-letter {
  text-transform: uppercase;
  font-size: 10.3rem;
}

.headline {
  color: #fff;
  font-size: 3.7rem;
  font-family: var(--main-font);
  text-transform: uppercase;
  font-weight: 600;
  /* letter-spacing: .5rem; */
  /* margin-right: -.5rem; */
  opacity: 0;
  animation: scale .8s forwards;
  animation-delay: .3s;
}

.seperator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line {
  width: 100%;
  max-width: 8.4rem;
  height: .25rem;
  background-color: #fff;
  position: relative;
  opacity: 0;
  animation: grow 2s forwards;
  animation-delay: .9s;
}

.line-right::before,
.line-left::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: .6rem solid transparent;
  opacity: 0;
  animation: grow .5s forwards;
  animation-delay: 1.2s;
}

.line-right::before {
  border-right-color: #fff;
  right: 0;
}

.line-left::before {
  border-left-color: #fff;
  left: 0;
}

.asterisk {
  font-size: 1.2rem;
  color: var(--secondary-font-color);
  margin: 0 1.6rem;
  opacity: 0;
  animation: spin 1.1s forwards;
  animation-delay: .9s;
}

.headline-description h5 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
  margin-right: -3px;
}

.btn {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: -2px;
}

.cta-btn {
  font-size: 1.1rem;
  background-color: #fff;
  padding: .9rem 1.8rem;
  color: var(--body-font-color);
  border-radius: .4rem;
  transition: background-color .5s;
}

.cta-btn:hover,
.cta-btn:focus {
  color: #fff;
  background-color: var(--secondary-font-color);
}

.cta-btn:disabled,
.cta-btn[disabled] {
  background-color: var(--body-font-color);
  color: #fff;
}

/* Discover our Story */
.global-headline {
  text-align: center;
  margin-top: 3.9rem;
}

.discover-our-story .global-headline {
  margin-top: 6.9rem;
}

.global-headline .asterisk {
  color: var(--body-font-color);
  margin: 2.4rem 0;
}

.headline-dark {
  color: var(--main-font-color-dark);
  margin-right: .7rem;
}
.headline, .headline-dark {
  letter-spacing: 1rem;
  margin-right: -1rem;
}

.global-headline .sub-headline {
  letter-spacing: -.1rem;
  line-height: .42;
}

.restaurant-info {
  text-align: center;
}

.restaurant-description {
  padding-top: 1.9rem;
  margin-bottom: 3rem;
  border: none;
}

.restaurant-description p {
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

.body-btn {
  font-size: 1.5rem;
  color: var(--secondary-font-color);
  position: relative;
  transition: color .5s;
}

/* underline - for example "About us" */
.body-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-font-color);
  transition: background-color .5s;
}

.body-btn:hover,
.body-btn:focus {
  color: var(--main-font-color-dark);
}

.body-btn:hover::before,
.body-btn:focus::before {
  background-color: var(--main-font-color-dark);
}

/* Tasteful recipes */
.tasteful-recipes {
  /* background: url('../images/tasteful-recipes.jpg') center no-repeat; */
  background: url('../images/bg_bees.jpg') center no-repeat;
  background-size: cover;
}

.between {
  min-height: 65vh;
  display: flex;
  align-items: center;
}

/* Discover our menu */
.image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3.5rem;
}

.discover-our-menu {
  padding-top: 3rem;
  margin-bottom: 0;
}

/* The perfect blend */
.perfect-blend {
  /* background: url('../images/perfect-blend.jpg') center no-repeat; */
  background: url('../images/bg_honeyjars.jpg') center no-repeat;
  background-size: cover;
}

/* Footer */

footer {
  padding: 7.9rem 0;
  background-color: #121212;
  color: #fff;
  text-align: center;
  position: relative;
}

.back-to-top {
  margin-top: 2rem;
  width: 7rem;
  height: 7rem;
  background-color: #121212;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.back-to-top .icon {
  display: block;
  color: #fff;
  font-size: 2rem;
  /* padding: 2rem; */
  padding-top: 1rem;
  margin-left: 2.6rem;
  animation: up 2s infinite;
}

.footer-content {
  overflow: hidden;
}

.footer-content h4 {
  font-size: 1.9rem;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 3px;
  /* margin-left: -3px; */
  margin-bottom: 2rem;
}

.footer-content .asterisk {
  margin: 2.4rem 0;
}

.footer-content-about {
  margin-bottom: 5.4rem;
}

.footer-content-about p {
  line-height: 2;
}

.social-icons {
  list-style: none;
  margin-bottom: 5.4rem;
  display: flex;
  justify-content: center;
}

.social-icons .icon {
  font-size: 4rem;
  color: #fff;
  padding: .6rem;
  padding-right: .8rem;
  opacity: .5;
  transition: color .5s;
}

.si:last-child {
  padding-right: .6rem;
}

.social-icons .icon:hover,
.social-icons .icon:focus {
  color: var(--secondary-font-color);
  opacity: .9;
  transition: color .5s;
}

.newsletter-form {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

.newsletter-input {
  width: 100%;
  max-width: 25rem;
  padding: 1rem;
  border-radius: .3rem;
}

.newsletter-btn {
  background-color: transparent;
  border: none;
  color: var(--main-font-color-dark);
  cursor: pointer;
  font-size: 1.6rem;
  padding: 1px .6rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 21rem;
  opacity: .9;
}

.honig-headline {
  /*Text/Font
  margin-top: 3.9rem;*/
  margin-top: -3rem;
  animation: scale 1s forwards;
  animation-delay: 1s;
}


.deco-underline {
  /* green: */
  /* filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%) !important; */

  /* white: */
  /* filter: brightness(0) invert(1); */
  width: 100%;
  max-width: 22rem;
  /* height: .25rem; */
  /* filter: invert(50%) sepia(90%) saturate(175%) hue-rotate(5deg) brightness(103%) contrast(115%) !important; */
  -web-filter: invert(55%) sepia(98%) saturate(203%) hue-rotate(2deg) brightness(97%) contrast(91%) !important;
  filter: invert(55%) sepia(98%) saturate(203%) hue-rotate(2deg) brightness(97%) contrast(91%) !important; /* drop-shadow( 1px 1px 2px #000000) */
}

.honig-subheadline {
  /*Text/Font
  margin-top: 3.9rem;*/
  margin-top: -3.9rem;
  animation: fadeUp .9s forwards;
  animation-delay: .6s;
}

.honig-underline {
  /*deco-underline under Honig*/
  margin-top: -2.9rem;
  /* margin-top: -9.5rem; */
  margin-left: 1.7rem;
  opacity: 0;
  animation: scale .6s forwards;
  animation-delay: 1.1s;
}

.formdiv {
  text-align: left;
}
.formLabel {
  font-family: var(--body-font);
  font-size: 1.5rem;
  color: #C8C8C8;
}
.formInputs {
  /* border: 1px solid #e3e3e3; */
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background: #fff;
  outline: 0;
  padding: .3rem;

  font-family: var(--body-font);
  font-size: 1.5rem;
  color: #999;
  width: 99%;
  margin-bottom: 10px;
  /* in js nochmals drin, da dort bei validation verändert wird... */
  border: solid 1px #e0e0e0;
  border-radius: .3rem;
}
.btnForm {
  border: 1px solid #E0E0E0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
    /* in js nochmals drin, da dort bei validation verändert wird... */
    border: 2px solid var(--secondary-font-color);
    /* border-color: #C09F5B; */
}

figcaption {
  font-family: var(--body-font);
  font-size: 1.6rem;
}

figure {
  /* margin-bottom: 1.6rem; */
}

figure > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100%; // might be just `height` in this situation, can't remember
}

.phoneNumber {
  margin-top: 1rem;
  font-family: var(--main-font);
  font-size: 2.2rem;
}

.phoneNumber a,a:visited,a:link {
  color: #fff;
  text-decoration:none;
}
.phoneNumber a:hover,
.phoneNumber a:visited:hover,
.phoneNumber a:focus {
  color: var(--secondary-font-color);
  text-decoration:none;
}

.card-impressum {
  background-color: #ababab;
  padding: .9rem;
  padding-bottom: .1rem;
  border-radius: 7px;
}
.card-impressum,
.card-impressum > *,
.card-impressum *,
.card-impressum p,
.card-impressum strong,
.card-impressum > div,
.card-impressum div
{
  font-size: 1.3rem;
}


#news-container {
    display: flex;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5rem 0px;
    margin-top: -2.5rem;
}

.card {
    /* width: 100%;
    max-width: 32rem; */
    max-width: 45rem;
    flex-basis: 100%;
    /* -webkit-box-shadow: 1px 1px 15px 0px #0d0d0d;
    box-shadow: 1px 1px 15px 0px #0d0d0d; */
    -webkit-box-shadow: 1px 1px 5px 0px #bababa;
    box-shadow: 1px 1px 5px 0px #bababa;
    border-radius: 5px;
}

.card-header > img {
    width: 100%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card-header > h2 {
    /* padding: 15px; */
    font-size: 1.6rem;
    font-family: var(--main-font);
    letter-spacing: .15rem;
    padding: .5rem;
    margin: 0;
}

.card-body {
  font-size: 1.4rem;
  padding: 1.6rem .5rem;
  background-color: #d1d1d1;
  font-weight: 600;
}

.card-footer {
    /* padding: 15px; */
    color: rgba(0, 0, 0, 0.5);
    background-color: #d1d1d1;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* justify-content: center; */
}



/* Media query */
@media screen and (min-width: 980px) {
  #logosvg {
    margin-top: 2.5rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav {
    /* justify-content: space-between; */
    justify-content: flex-end;
  }

  .nav-list {
    position: initial;
    width: initial;
    height: initial;
    background-color: transparent;
    padding: 0;
    /* justify-content: initial; */
    justify-content: flex-end;
    flex-direction: row;
    transform: initial;
    transition: initial;
  }

  .nav-item {
    margin: 0 1.7rem;
    border: none;
  }

  .nav-item:last-child {
    margin-right: 0;
  }

  .nav-link {
    font-family: var(--body-font);
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px #000000;
  }

  .active {
    position: relative;
  }

  .active::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #fff;
    left: 0;
    bottom: -3px;
  }
}

@media screen and (min-width: 900px) {

  .newsletter-input {
    margin-left: -37px;
  }

  .card {
    /* flex-basis: 33%; */
    flex: 1;
    margin: 3rem;
  }

  section {
    padding: 7.9rem;
  }

  .sub-headline {
    font-size: 10rem;
    /* text-shadow: 1px 1px 4px #000000 !important;
    -web-filter: drop-shadow( 1px 1px 2px #000000);
    filter: drop-shadow( 1px 1px 2px #000000);
    */
  }

  .first-letter {
    font-size: 12rem;
  }

  .headline {
    font-size: 4.7rem;
    /* letter-spacing: .8rem; */
  }

  .line {
    max-width: 11.4rem;
  }

  .restaurant-info {
    display: flex;
    align-items: center;
  }

  .restaurant-info > div {
    flex: 1;
  }

  .padding-right {
    padding-right: 7rem;
  }

  .footer-content {
    max-width: 77.5rem;
    margin: auto;
  }

  .footer-content-about {
    max-width: 51.3rem;
    margin: 0 auto 5.4rem;
  }

  .footer-content-divider {
    display: flex;
    justify-content: space-between;
  }

  .social-media,
  .newsletter-form {
    width: 100%;
    /* max-width: 27.3rem; - raus, weil Newsletter raus. */
    margin: 0 1rem;
  }

  .newsletter-btn {
    margin-left: 10rem;
  }
}

/* Animations */
@keyframes fadeUp {
  0% {
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale {
  0% {
    transform: scale(2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes grow {
  0% {
    width: 0;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}

@keyframes fadeDown {
  0% {
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    opacity: 1;
    transform: rotate(-360deg);
  }
}

@keyframes up {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-.5rem);
  }
}
