/*--- General ---*/
* {
  box-sizing: border-box;
}

html {
  height: 100%;
  margin: 0
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background: #fff;
  color: #333;
  font-size: 1em;
  font-family: 'MavenPro', geneva, verdana, sans-serif;   
}

header, footer {
  flex: none; /* 2 */
}

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

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

a {
  color: #32cd32;
  transition: 0.4s;
}

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

a.collapsed i:before {
  content: "\ea99" !important;
}

input, textarea { /* Formularfelder */
  border: 1px solid #328b22;
  border-radius: 5px
}

textarea {
  padding: 5px 10px;
}


/*--- Navigation Menu ---*/
header {
   height: 78px;
   padding: 20px 0;
   position: fixed;
   left: 0;
   top: 0;
   right: 0;
   transition: all 0.5s;
   z-index: 998;
}

.header-scrolled {
  height: 54px;
  padding: 8px 0;
  transition: all 0.7s;
  background-color: #228b22;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#header-legal {
  height: 54px;
  padding: 8px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.7s;
  background-color: #228b22;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 998;
}    
    
@media (max-width: 768px) {
  header, #header-legal {
    padding: 8px 0;
  }
}


.nav-logo {
  padding: 5px 0;
  float: left;
}

.nav-logo a {
  color: #fff;
}

.nav-logo img {
  height: 14px;
  padding: 0;
  margin: 0;
}


@media (max-width: 576px) {
  .nav-logo img {
     margin-left: 20px;
  }
}


#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
  margin-left: 10px;
}

.nav-menu a {
  font-family: verdana, sans-serif;
  padding: 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  outline: none;
}

.nav-menu a.btn-cta {
  margin-top: 1px;
  padding: 5px 10px;
  background-color: #32cd32;
  border: 2px solid #32cd32;
  border-radius: 25px;
}

.nav-menu > li > a:before, .footer-legal a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #32cd32;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before, .footer-legal a:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

.nav-menu a.btn-cta:hover {
  border: 2px solid #fff;
}

.nav-menu a.btn-cta:hover:before, .nav-menu li:hover > a.btn-cta:before, .nav-menu .menu-active > a.btn-cta:before {
  visibility: hidden;
}


#mobile-nav-toggler {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 9px 25px 0 0;
  border: 0;
  background: none;
  color: #fff;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  #mobile-nav-toggler {
    display: inline;
  }
}


#mobile-overlay {
  width: 100%;
  height: 100%;
  z-index: 996;
  top: 0;
  left: 0;
  position: fixed;
  /* background: rgba(255, 255, 255, 0.5); */
  background: rgba(0, 0, 0, 0.5);
  display: none;
}


#mobile-nav {
/*    transition: all 0.7s;
      background-color: rgba(34,139, 34, 0.9);
*/    
  position: fixed;
  top: -370px;
  right: 15px;
  width: 200px;
  padding: 80px 0 20px;
  z-index: 997;
  background-color: #228b22;
  border-radius: 25px;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  transition: 0.4s;
}

body.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #mobile-nav {
  top: -20px;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li a {
  width: 90%;
  margin: 0 auto;
  padding: 5px 20px 10px;
  border-left: 3px solid #228b22;
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  outline: none;
  transition: all 0.4s;
}

#mobile-nav ul li a:hover {
  border-left: 3px solid #32cd32;
}

#mobile-nav ul li a.btn-cta {
  width: 70%;
  padding: 5px 15px;
  background-color: #32cd32;
  border: 2px solid #32cd32;
  border-radius: 25px;
  text-align: center;
}

#mobile-nav ul li a.btn-cta:hover {
  border: 2px solid #fff;
}

/*
#mobile-nav ul li a:hover {
  color: #32cd32;
}
*/

.mobile-hide {
  @media (max-width: 1024px) {
    display: none;
  }
}



/*--- Content  ---*/
.content {
  flex: 1 0 auto; /* 2 */
  padding: var(--space) var(--space) 0;
  width: 100%;
}
.content::after {
  content: '\00a0'; /* &nbsp; */
  display: block;
  margin-top: var(--space);
  height: 0px;
  visibility: hidden;
}
@media (--break-lg) {
  .content {
    padding-top: var(--space-lg);
  }
  .content::after {
    margin-top: var(--space-lg);
  }
}

.content--full {
  padding: 0;
}
.content--full::after {
  content: none;
}



/*--- Intro  ---*/
#intro {
  width: 100%;
  height: 100vh;
  background: url('assets/img/birkenstudio-background.jpg') top center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

/*
@media (max-width: 576px) {
  #intro {
  background: url('assets/img/birkenstudio-portrait.jpg') top center;
  }
}
*/

@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;

  }
}

#intro:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .intro-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 16%;
  right: 16%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

@media (max-width: 992px) {
  #intro .intro-container {
    left: 11%;
    right: 11%;
  }
}

#intro img {
  width: 65%;
  margin: 5% 0;
}

@media (max-width: 768px) {
  #intro img {
    width: 95%;
    margin: 10% 0;
  }
}

#intro h2 {
  color: #fff;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  #intro h2 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  #intro h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  #intro h2 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 25px;
  }
}


#intro span {
  margin-bottom: 5%;
}

#intro a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  margin: 10px;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  border: 2px solid #32cd32;
  color: #fff;
}

#intro a:hover {
  margin: 10px 5px;
  padding: 8px 33px;
  background: #32cd32;
  border: 2px solid #fff;
}

#intro a.btn-cta {
  background: #32cd32;
}



/*--- Online Booking ---*/

.booking-calendar {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #ddd;
}
.booking-calendar-row {
  display: flex;
  flex-direction: row;
}
.booking-calendar-cell {
  flex: 1;
  padding: 20px;
  border: 1px solid #ddd;
  cursor: pointer;
  height: 50px;
}
.booking-calendar-selected {
  background-color: #85d7ff;
}


/*--- Sections ---*/

section .content {
  flex: 1;
}

.section-header {
  font-size: 1.7rem;
  font-weight: bold;
  color: #228b22;
  text-align: center;
  font-weight: 700;
  margin: 0 0.5em 1.5em;
}

@media (max-width: 768px) {
  .section-header {
    font-size: 1.4rem;
  }
}


/*--- Services ---*/

#services {
 margin: 1em auto;
 padding: 1em;
 width: 100%;
 position: relative;
}

#services .row {
  margin: 3em auto;
}

@media (max-width: 768px) {
  #services .row {
    margin: 2em 0;
  }
}

@media (max-width: 768px) {
  #services .row div {
    padding: 0;
  }
}

/* für mehr Zwischenraum wieder entfernen
#services .row div {
  padding: 2px 0;
}
 */

#services h3 {
  font-size: 1.4em;
}

@media (max-width: 576px) {
  #services h3 {
    font-size: 1.1em;
    font-weight: 800;
  }
}

#services p {
  line-height: 1.6em;
}

#services a {
  margin-bottom: 5px;
  cursor: pointer;
  color: #32cd32;
}

#services a i {
  font-size: 16px;
  position: absolute;
  margin-left: 5px;
  top: 5px;
}

#services #fototechnik, #services #videotechnik, #services #raumtechnik {
  position: relative;
  display: block;
  margin-top: 1.5em;
}

/* WURDE KOMPLETT NACH OBEN VERSCHOBEN ALS a.collapsed ...
#services a.collapsed i:before {
  content: "\ea99" !important;
}
*/

#services ul {
  list-style: none;
}

#services ul li::before {
  content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #228b22;
  display: inline-block; /* Needed for space between bullet and text */
  width: 2.1em;
  margin-left: -2.1em;
}

#services img {
  display: block;
    /*
  width: 100%;
  height: auto;
    */
  border-radius: 20px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;  
}

/* evtl verschieben/umbenennen in slideshow-fotostudio 
.slideshow-container img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}
*/

.slideshow-fotostudio, .slideshow-videodrehs, .slideshow-schulungen {
  display: none; /* Hide the images by default */
}

.slideshow-number {
  position: absolute;
  top: 6px;
  right: 8px;   
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 12px;
  color: #fff;
  background-color: rgba(34,139,34,0.7);
}

.slideshow-text {
  color: #f2f2f2;
  font-size: 0.8em;
  padding: 8px 12px;
  position: absolute;
  bottom: 6px;
  width: 100%;
  text-align: center;
}

.slideshow-prev, .slideshow-next {
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 20px 12px;
  font-weight: bold;
  font-size: 20px;
  color: #fff !important;
  transition: 0.5s ease;
  border-radius: 0 10px 10px 0;
  user-select: none;  
}

.slideshow-next {
  right: 0;
  border-radius: 10px 0 0 10px;
}

.slideshow-prev:hover, .slideshow-next:hover {
  background-color: rgba(34,139,34,0.5);
}

/* No dots used anymore
.slideshow-dots-container {
   text-align:center;
}

@media (max-width: 576px) {
  .slideshow-dots-container {
    display:none;
  }
}

.slideshow-dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 3px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.5s ease;
}

.slideshow-dot:hover, .slideshow-active {
  background-color: #32cd32;
}
*/

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.0s;
  -webkit-animation-fill-mode: forwards;
  animation-name: fade;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}



/*--- Benefits ---*/

#benefits {
 margin: 0;
 padding: 1em 0;
 position: relative;
}

#benefits .row {
 padding: 3em 1em 0;
 background-color: #f9fef9;
 border-radius: 25px;
}

#benefits .box {
  margin-bottom: 3em;
}

#benefits .icon {
  float: left;
}

#benefits .icon i {
  color: #228b22;
  font-size: 32px;
  line-height: 1em;
}

#benefits h4 {
  color: #228b22; 
  margin-left: 50px;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

#benefits p {
  margin-left: 50px;
  margin-bottom: 0;
  line-height: 25px;
}



/*--- Features ---*/
/*---
#features {
 margin: 1em auto;
 padding: 1em;
 position: relative;
}
---*/



/*--- Location ---*/

#location {
 margin: 2em 0;
 padding: 2em 1em 1em;
 position: relative;
}



/*--- FAQ ---*/
#faq {
  margin: 0;
  padding: 2em 0;
  position: relative;
}

#faq .faq-list {
  margin: 0;
  padding: 2em 3em;
  list-style: none;
  background-color: #f9fef9;
  border-radius: 25px;
}

@media (max-width: 768px) {
  #faq .faq-list {
    padding: 1em;
  }
}

#faq li {
  padding: 10px 0 5px 25px;
  border-bottom: 1px solid #ddd;
}

#faq li a {
  display: block;
  position: relative;
  padding-bottom: 5px;
  font-weight: 600;
  cursor: pointer;
  color: #32cd32;
}

#faq li a.collapsed {
  color: #000;
}

#faq li a.collapsed:hover {
  color: #32cd32;
}

#faq li a i {
  font-size: 16px;
  position: absolute;
  left: -25px;
  top: 6px;
}

#faq li a.collapsed i:before {
  content: "\ea99" !important;
}

#faq p {
  margin: 0;
  padding: 0;
  font-size: 95%;
}



/*--- Gallery ---*/

#gallery {
 margin: 2em 0;
 padding: 2em 0 1em;
 position: relative;
}

#gallery img {
  margin: 0;
  padding: 0;
  border-radius: 20px;
  /* box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2); */
}



/*--- Booking ---*/

#booking {
 margin: 2em auto;
 padding: 1em;
 position: relative;
}


/*--- Booking details + ownusw ---*/
#buchungsdetails, #selbstnutzung {
  margin: 1em auto;
  padding: 0;
}

#buchungsdetails .customization-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#buchungsdetails li {
  /* padding: 5px 0 15px 10px; */
  padding: 5px 0 15px 0;
}

#buchungsdetails li a {
  display: block;
  position: relative;
  margin-top: 2px;
  padding-bottom: 5px;
  font-weight: 600;
  color: #32cd32;
  cursor: pointer;
}

#buchungsdetails li a.collapsed {
  color: #000;
}

#buchungsdetails li a.collapsed:hover {
  color: #32cd32;
}

#buchungsdetails li a i {
  font-size: 16px;
  position: absolute;
  /*left: -25px;*/
  top: 6px;
}

#buchungsdetails li a.collapsed i:before {
  content: "\ea99" !important;
}

#buchungsdetails li a b {
  margin-right: 5px;
}


#buchungsdetails form p, #selbstnutzung form p {
  min-width: 300px;
  margin: 0;
  padding: 0;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
}

/*
#buchungsdetails p {
  margin-bottom: 1em;
}
*/

#buchungsdetails form .button, #payment-form button, #selbstnutzung form .button {
  padding:6px 8px;
  color:#fff;
  background-color:#32cd32;
  border:2px solid #fff;
  border-radius: 15px;
  transition: 0.5s;
}

#buchungsdetails form .button:hover, #payment-form button:hover, #selbstnutzung form .button:hover {
  border:2px solid #228b22;
  transition: 0.5s;
}


/*--- Legal: Impressum, AGB, Buchung ---*/
#impressum, #datenschutz, #agb, #buchungsdetails, #selbstnutzung {
 margin: 1em auto;
 padding: 0;
 position: relative;
}

#impressum .row, #datenschutz .row, #agb .row, #buchungsdetails .row, #selbstnutzung .row {
  margin: 0 auto;
}

#impressum p, #datenschutz p, #agb p, #buchungsdetails p, #selbstnutzung p {
  line-height: 1.6em;
}

#impressum h2, #datenschutz h2, #agb h2, #buchungsdetails h2, #selbstnutzung h2 {
  padding-top: 3em;
  font-size: 1.6em;
}
@media (max-width: 768px) {
  #impressum h2, #datenschutz h2, #agb h2, #buchungsdetails h2, #selbstnutzung h2 {
    padding-top: 2em;
    font-size: 1.4em;  
  }
}

#impressum h3, #datenschutz h3, #agb h3, #buchungsdetails h3, #selbstnutzung h3 {
  margin-top: 2em;
  font-size: 1.4em;
}

#impressum h4, #datenschutz h4, #buchungsdetails h4 {
  font-size: 1.2em;
}

#datenschutz h3, #datenschutz h4 {
  padding-top: 1em;  
}


.highlight {
  /* margin: 3em 0 5em 0; */
  padding: 2em;
  background-color: #f9fef9;
  /* border-radius: 15px; */
}

.highlight h4 {
  font-size: 1.1em;
  font-weight: bold;
}


/*--- Footer ---*/
footer {
  background-color: #228b22;
  text-align: center;
  padding: 4px;
}

.footer-legal {
  margin: 0;
  padding: 0;
  display: inline-block;
  list-style: none;
}

.footer-legal li {
  float: left;
  position: relative;
  white-space: nowrap;
}

.footer-legal > li {
  margin: 0 4px;
}

.footer-legal a {
  font-family: verdana, sans-serif;
  padding: 6px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
}


/*--- Back to top button ---*/
.back-to-top {
  position: fixed;
  display: none;
  right: 20px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  font-size: 30px; 
  color: #32cd32;
  background-color: #fff;
  border-radius: 50%;
}



/*---  Disable AOS delay on mobile  ---*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}