/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");

/* Lila https://coolors.co/523bc2-5f4ac6-6c59cb-7967cf-8676d4-9385d8-a094dc-ada3e1-bab1e5-c7c0ea ; */

/*
=============== 
Variables
===============
*/

:root {
  /* dark shades of primary color*/
  --clr-primary-1: #deadae;
  --clr-primary-2: #6c59cb;
  --clr-primary-3: #f8e5e5;
  --clr-primary-4: #deadae;
  /* primary/main color */
  --clr-primary-5: #deadae;
  /* lighter shades of primary color */
  --clr-primary-6: #deadae;
  --clr-primary-7: #deadae;
  --clr-primary-8: #e5c8c0;
  --clr-primary-9: #c7c0ea;
  --clr-green-1: #416767;
  /* darkest grey - used for headings */
  --clr-grey-1: #deadae;
  --clr-grey-2: #deadae;
  --clr-grey-3: #deadae;
  --clr-grey-4: #deadae;
  --clr-light-cyan: #cbeef3;
  --clr-black: #A67F8E;
  /* grey used for paragraphs */
  --clr-grey-5: #deadae;
  --clr-grey-6: hsl(209, 23%, 60%);
  --clr-grey-7: hsl(211, 27%, 70%);
  --clr-grey-8: hsl(210, 31%, 80%);
  --clr-grey-9: hsl(212, 33%, 89%);
  --clr-grey-10: hsl(210, 36%, 96%);
  --clr-white: #fff;
  --ff-primary: "Roboto", sans-serif;
  --ff-secondary: "Open Sans", sans-serif;
  --transition: all 0.3s linear;
  --spacing: 0.25rem;
  --radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --max-width: 1170px;
}
/*
=============== 
Global Styles
===============
*/

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: var(--clr-white);
  color: var(--clr-grey-1);
  line-height: 1.5;
  font-size: 0.875rem;
  overflow-x: hidden;
}

.logo {
  color: white;
  left: 50vw;
  position: relative;
}

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img:not(.nav-logo,.about-img-vb) {
  width: 100%;
  display: block;
}

.nav-logo {
  width: 5rem;
 

    filter: invert(100%);
  
}

.jawando-logo{
  color: white;
  font-size: 0.95rem;
}
.back-btn {
position: absolute;
  display: inline-block;
  margin: 20px;
  padding: 10px 30px;
  font-size: 20px;
  cursor: pointer;
  background: transparent;
  color: white;
  border: none;
  border-radius: 5px;
  text-align: center;
z-index: 1000
;
}


  .fa-long-arrow-alt-left:before {
    position: absolute;
    content: "\f30a";
    right:40vw; }


.back-btn i {
  margin-right: 5px;
}



iframe {
  position: relative;
  box-shadow: var(--light-shadow);

  z-index: 1;
}

h1 {
  opacity: 0.5;
  text-align: center;
}

h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;

}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}

nav h3,
h5 {
  color: white;
}
p {
  margin-bottom: 1.25rem;
  color: white;
  /* line-height: 1.9rem; */
}

.contact p {
  margin-bottom: 0;
}

li {
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1.3;
  }

  li {
    text-align: left;
  }
  .nav-logo {
    max-width: 1rem;

      filter: invert(100%);
    
  }
}
/*  global classes */

.btn {
  max-width: 100vw;
  text-transform: uppercase;
  background: none;
  color: white;
  padding: 1rem 1.5rem;
  letter-spacing: var(--spacing);
  display: inline-block;
  font-weight: 700;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}
.btn:hover {
  color: var(--clr-white);
  background: var(--clr-primary-7);
}
/* section */

.section {
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}
@media screen and (min-width: 992px) {
  .section-center {
    width: 95vw;
  }

}
/* added during recording */
.underline {
  width: 4rem;
  height: 0.2rem;
position: relative;
top:-1.2rem;
right: 10rem;
background: #deadae;
  margin-left: auto;
  margin-right: auto;

}
.underline.media {
  background-color: white;

}

.underline.about  {
right: 3rem;
top: -10px;

}

.section-title {
  text-align: center;
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  color: #deadae;
}

.section-title.video {
  background-color: rgba(222, 173, 174, 0.2);
  padding: 0.2rem 1rem;
}

.underline.contact {

background:white

}
.project-text.contact {
  color: white;
  background-color: #deadae;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

.section-title {
  margin-bottom: 1rem;
}

.bg-grey {
  background: var(--clr-grey-10);
}
/*
=============== 
Navbar
===============
*/
.nav-links {
  display: none;
}
.nav {
  width: 100%;
  position: absolute;
  height: 10rem;
  padding: 1rem 1rem 1rem 1rem;
  display: grid;
  grid-template-rows: 1fr;
  align-items: center;
  transition: var(--transition);
top: 0;

  background: transparent;
  z-index: 3000;


}
.nav-single-page {
  background-color:var(--clr-primary-1);
  
}


.nav-center {
  display: block;
  max-width: auto;
  margin: 0 auto;
  width: 100%;

}

.nav-header {
  display: inline-block;
  align-self: top;
  justify-self: center;
  align-items: center;
  justify-items: center;
  width: 100%;
  text-align: center;


  
}

.nav-btn {
  position: absolute;
  background: transparent;
  border-color: transparent;
  color: var(--clr-primary-5);
  font-size: 2rem;
  cursor: pointer;
  justify-self: end;
  z-index: 30;
  right: 0;
margin-right: 2rem;

}

#nav-btn {
  color: white;
  justify-self: right;

}

li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background-color: var(--clr-green-1);

  transition: all.5s;
}

li a:hover::after {
  width: 100%;
  color: var(--clr-green-1);
}

.about-title {
  margin-top: 7rem;
  margin-bottom: -1rem;
}

@media screen and (min-width: 768px) {
  .nav {
    /* background: var(--clr-primary-10); */
    position: absolute;
   
  }

  .about-title {
    margin-top: 8rem;
  }

  .nav-btn {
    display: none;
  }
  .nav-links {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
 
    font-style: normal;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    justify-items: center;
  }

  .nav-links a {
    text-transform: capitalize;
    color: white;
    font-weight: 700;
    letter-spacing: var(--spacing);
    transition: var(--transition);
  }
  .nav-links a:hover {
    color: var(--clr-black);
  }
  .nav-center {
    display: grid;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    justify-items: center;
    justify-content: center;
    min-width: 100vw;
    grid-template-areas:
      "b b"
      "a a";
  }
  .nav-links {
    grid-area: a;
  }

  .nav-header {
    grid-area: b;
  }

  .nav-logo {
    max-width: 13rem;
  
      filter: invert(100%);
    
  }
}

/* fixed navbar */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #deadae;
  z-index: 200;
  box-shadow: var(--dark-shadow);
  opacity: 1;
  border: none;
}
.show-links {
  height: 280px;
}

/*
=============== 
Sidebar
===============
*/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  background: var(--clr-grey-10);
  z-index: 1000;
  display: grid;
  place-items: center;
  transition: var(--transition);
  /* add later */
  transform: translateX(-100%);
  opacity: 80%;
  z-index: 4000;
  
}

.show-sidebar {
  transform: translateX(0);
}

.sidebar-links {
  text-align: center;
}
.sidebar-links a {
  font-size: 2rem;
  text-transform: var(--transition);
  color: var(--clr-grey-5);
  letter-spacing: var(--spacing);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.sidebar-links a:hover {
  color: var(--clr-primary-5);
}

.social-icons {
  display: grid;
  margin-top: 3rem;
  width: 20rem;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
}

.social-icon {
  font-size: 1.5rem;
  color: var(--clr-grey-1) var(--transition);
}

.social-icon:hover {
  color: var(--clr-primary-5);
}

.close-btn {
  position: absaolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  background: transparent;
  border: transparent;
  transition: var(--transition);
  color: #bb2525;
  cursor: pointer;
  z-index: 4000;
}
.close-btn:hover {
  color: #e66b6b;
}

/*
=============== 
Hero
===============
*/
/* underline added to globals */

.hero .underline {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

.sticky-booking-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px; /* Adjust height as needed */
  background-color:var(--clr-grey-2); /* Example background color */
  color: white;
  text-align: center;
  line-height: 10px; /* Vertically center text */
  z-index: 1000; /* Ensure it appears above other content */
transform: translateY(0.5rem);

}

#booking-btn{
  display: none;
}

.about-img-vb {
height: 35vh;
width: AUTO;
position: relative;
border-bottom: white;
border-style:groove;
border-top: none;
border-right: none;
border-left: none;
align-self: flex-start;

}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-center {
  min-height: calc(100vh - 5rem);
  display: grid;
  place-items: center;
  color: var(--clr-primary-1);
}

.hero-info h4 {
  color: var(--clr-grey-5);
}
.hero-icons {
  justify-items: start;
}

.hero-btn {
  margin-top: 1.25rem;
}

.hero.about {
  display: block;
  height: 70vh;
  align-items: center;
  justify-items: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
}



.about-hero{
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-around;
justify-content: center;




}

#about-text{
  color: var(--clr-black);


  
}
.menu-btn.gutschein {
  margin: 0 15vw;
}


@media screen and (min-width: 992px) {
  .hero-img {
    /* display: block; */
    position: relative;
  }
  .hero-center {
    grid-template-columns: 1fr 1fr;
  }

#about-text{
  color: var(--clr-black);
  max-width: 40vw;
  
}

  .hero-img::before,
  .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.25rem solid var(--clr-primary-5);
    top: 2rem;
    right: -2rem;
    border-radius: var(--radius);
  }
  .menu-btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-self: center;
    justify-items: center;
    column-gap: 2rem;
    padding-right: 5%;
  }
  .menu-btn.gutschein {
    grid-template-columns: 1fr;
    display: grid;
    justify-self: center;
    justify-items: center;
    column-gap: 2rem;
    margin: 0 30vw;
 

  }
}
.menu-btn {
  display: grid;
  grid-template-columns: row;
  row-gap: 2rem;
  grid-template-rows: repeat(2, 1fr);
}

.video-btn {
  font-size: 0.8rem;
  text-align: center;
}

.hero-photo {
  max-width: 25rem;
  max-height: 30rem;
  object-fit: cover;
  border-radius: var(--radius);
  position: relative;
}
.btn {
  display: block;
}

.slideshow-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
}

video {
  max-width: 100%;
  height: auto;
}
/*
=============== 
About
===============
*/

.single-page {
  background: var(--clr-primary-3);

}

.prices {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 70vh;
}

.single-page p {
  color: black;
}

.about-title {
  color: #deadae;
}

.about-title .underline {
  text-align: center;
  margin-left: 42%;
}

.about-center {
  display: grid;
  gap: 3rem 2rem;
}

.about-img {
  justify-self: center;
}

@media screen and (min-width: 992px) {
  .about-center {
    grid-template-columns: 1fr 1fr;
  }
  .about-img {
    position: relative;
  }
  .about-img::before {
    left: -2rem;
  }
  .about-info {
    align-self: center;
  
  }
  .single-page {
    min-height: calc(100vh - 5rem - 198px);
    
  }

}

/*
=============== 
Projects
===============
*/
.projects-text {
  width: 85vw;
  max-width: 30rem;
  margin: 0 auto;
  color: white;
}

.project {
  position: relative;
  background: var(--clr-primary-10);
  /* border-radius: var(--radius); */
  /* margin-bottom: 3rem; */
  z-index: 0;
}
.project.single {
  width: 40vw;
}

.projects-info {
  color: white;
  position: absolute;
  top: 90%;
  left: 55%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
  opacity: 1;
  width: 100%;


}




.projects-info {
  text-transform: capitalize;
  color: var(--clr-white);
}

.project:hover .projects-info {
  opacity: 1;
  
}

.project-img {
  transition: var(--transition);
  /* border-radius: var(--radius); */
  height: 15rem;
  object-fit: cover;
}
.project-img.single {
  transition: var(--transition);
  /* border-radius: var(--radius); */
  height: 15rem;
  object-fit: cover;
}

.project:hover .project.img {
  opacity: 1;
 
}
/* .project::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: var(--transition);
  opacity: 1;
} */

.project:hover::after {
  opacity: 0;
  transition: 1s ease-in-out;
}

.project:hover{
  transform: scale(0.95);
  transition: 1s ease-in-out
}

.project::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #deadae;
  z-index: 20;
  opacity: 0.6;
}
.projects-center {
  display: grid;
  row-gap: 2rem;
}

@media screen and (min-width: 676px) {
  .projects-center {

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 2rem;
    margin-bottom: 4rem;
    max-width: 100vw;
    row-gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .projects-center {
    grid-template-columns: repeat(3, 1fr);

  }
      

}
@media screen and (min-width: 1170px) {
  .projects-center {
    grid-template-columns: 1fr 1fr 1fr 1fr ;
grid-template-rows: auto;
    row-gap: 2rem;
    grid-template-areas: 
    "a b c d"
    "e e e e";
  }

  .project-img {
    height: 50vh;
  }
  .project-img.five {
    height: 10vh;
  }

  .project-1 {
    grid-area: a;
  }

  .project-2 {
    grid-area: b;
  }

  .project-3 {
    grid-area: c;
  }

  .project-4 {
    grid-area: d;
  }
  .project-5 {
    grid-area: e;
    
  }
  .projects-info.massagen {
    top: 70%;
    left:52%;
  
  }

}

/*
=============== 
Connect
===============
*/

.connect {
  min-height: 90vh;
  min-width: 100%;
  position: relative;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.connect {
  padding-top: 35vh;
  display: grid;
  place-items: center;

  width: 100%;
  height: 100%;
}

.video-text {
  max-width: 45rem;
  color: white;
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1.5rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
  line-height: 2;

}

.video-text span {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  background-color: rgba(222, 173, 174, 0.5);
  max-width: 100vw;
}

@media screen and (min-width: 769px) {
  .skill-center {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
  
}
.skills {
  height: 50vh;
  width: 100%;
  background-position: center;
  color: white;
  background-size: cover;
  opacity: 1;

  position: relative;
}
.maps-info {
  /* margin-bottom: 5rem; */
  min-width: 30vw;;


}


.skills::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: url(../images/gutschein_layer.png);
  background-size: cover;
  opacity: 1;
  z-index: -1;
  box-shadow: var(--dark-shadow);
}

/* ** HIER FINDEN SIE MICH ** */

/* Section Maps */

.section.googlemaps{
  padding-bottom: 2rem;
  background: #deadae;

}

.section-maps {
  padding: 8px 5%; 
  margin-top: 1rem;
height: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  text-align: center;
  background-color: #deadae;
  justify-content: center;
  justify-items: center;
  gap: 3rem;
  /* transform: translateY(-5%); */

}

.maps-info {
  /* margin-bottom: 5rem; */
  min-width: 30vw;;
  text-align: center;
  align-items: right;
  color: white;
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  margin-left: 2rem;

}

.maps-info.zeiten {
line-height: 2rem;
margin: 0 auto;

}

/* /// KONTAKT /// */

.section-title.info {
  background-color: #deadae;
  margin-bottom: 0;
  color: white;
  padding-top: 3rem;
 
}
.page-impressum p,
.page-impressum h4 {
  color: var(--clr-black);
}

.section-title.voucher {
  margin-bottom: 0;
  color: white;
  transform: translateY(15vh);
  padding-bottom: 1rem;
}

.section-title.media {
  color: white;
}

/* Social Media Widget */

#social-media {
  width: 320px;
  height: 380px;
  transform: translateY(-1.5%);
  position: relative;
  transition: var(--transition);
  /* border-radius: 50%; */
  padding-bottom: 4rem;
  padding-top: 2.5rem;
  justify-self: center;
  box-shadow: var(--light-shadow);
}
.social-media-center {
  width: 320px;
  height: 400px;
  position: relative;
  /* transform: translateY(39%); */
  transition: var(--transition);
  background-size: 100%;
  z-index: 0;
  background-image: url(../images/social_media_frame.png);
}
.social-media-center::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 275px;
  transform: translateY(12%);
  background-color: #deadae;
  z-index: 3;
  opacity: 0.4;
}

/* MEDIA QUERRY MAPS & SOCIAL-MEDIA /// */

.maps {
  margin-top:2rem;
  width: auto;
  height: 40vh;
}

@media screen and (min-width: 900px) {
  .section-maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    justify-content: right;
    gap: 1rem;
    justify-content: center;

    padding: auto auto;
  }
  .maps-info.zeiten td:first-child {
  text-align: left; /* Align the text on the left for the first column */
}

.maps-info.zeiten td:last-child {
  text-align: right; /* Align the text on the right for the second column */
}

  .maps {
    width: 150%;
    height: 50vh;
  }

  /* .section-social-media {
    transform: translateY(-12%);
  } */

  .section-title.media {
    padding-left: 0%;
    padding-right: -30%;
    text-align: center;
  }
  .copyright p {
    text-align: left;
    align-self: left;
  }

  .section-title.media {
    color: white;
  }
}
/* 
=============== Contact =============== */
.contact-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

.contact {
  background: white;
}

.contact-title {
  color: #deadae;
}

.contact-title p {
  color: #deadae;
  margin-bottom: 1rem;
}

.contact-form {
  width: 400px;
}
#radioButtonsDiv {
  display: flex;
  width: 100%;
}
.radio-buttons-container {
  display: flex;
}

input {
  margin-left: 10px; /* Adjust as needed */
  margin-right: 5px;
}
.radio-option {
  margin-right: 30px; /* Adjust as needed */
}

.form-control {
  width: 70vw;
  margin: 0.5rem 0.5rem;
  cursor: pointer;
  color: #deadae;
}
.contact-form {
  justify-self: center;
}

.form-control {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
  align-self: center;
}

.form-control:focus {
  outline: none;
  border-color: #5b9;
}

.btn-submit {
  width: 70vw;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #5b9;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #478;
  color: white;
}

.form-control,
.btn-submit {
  width: 80vw;
  padding: 0.375rem 0, 75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  letter-spacing: var(--spacing);
  background: transparent;
  text-transform: capitalize;
  border-color: #deadae;
}

.form-control::-webkit-input-placeholder {
  color: inherit;
}

.form-control::-moz-placeholder {
  color: inherit;
}

.form-control:-ms-input-placeholder {
  color: inherit;
}

.form-control::-ms-input-placeholder {
  color: inherit;
}

.form-control::placeholder {
  color: inherit;
}

.btn-submit {
  font: var(--ff-primary);
  margin-left: 0.5rem;
  background: transparent;
  color: var(--clr-primary-1);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--clr-primary-1);
}

@media screen and (min-width: 676px) {
  .form-control {
    width: 50vw;
    margin: 0.5rem 0.5rem;
    cursor: pointer;
  }
  .contact-form {
    width: 50vw;
  }
  .contact-title {
    color: #deadae;
    max-width: 35vw;
  }
}

@media screen and (min-width: 992px) {
  .contact-center {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .contact-form {
    align-self: flex-start;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    max-width: 100%;
    padding-left: 2rem;
    width: 3rem;
  }
}

/* 
=============== Footer =============== */

.footer {

  text-align: left;
  z-index: 10;
  position: relative;
}
.footer {
  background: var(--clr-grey-1);
  text-align: center; /* Aligning all text in the center */
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  display: flex; /* Using flexbox for alignment */
  flex-direction: column; /* Align items vertically */
  align-items: center; /* Align items horizontally */
/* margin-bottom: 1rem; */
}

.footer-links {
  grid-area: c;
  margin-bottom: 1.5rem;
}
.footer-links {
  grid-area: c;
  margin-bottom: 1.5rem;
}

.footer-adress {
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  grid-area: a;
}

.footer-icon {
  grid-area: b;
}
.footer-link {
  grid-area: d;
  margin-bottom: 1rem;
}
#adress {
  grid-area: a;
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
}

.footer-links {
  color: var(--clr-white);
  text-transform: capitalize;
  font-size: 1rem;
  letter-spacing: var(--spacing);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  max-width: 100vw;
}

.footer-links span {
  text-transform: lowercase;
  font-size: 0.8rem;

}

.footer-links:hover {
  color: var(--clr-black);
}

.footer-icon {
  font-size: 2rem;
  color: var(--clr-white);
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.footer-icon:hover {
  color: var(--clr-black);
}

.copyright {
  text-transform: capitalize;
  letter-spacing: var(--spacing);
  color: var(--clr-white);
  font-size: 0.7rem;

  text-align: center;
}
.section.footer.about {
  background-color: #deadae;
  color: white;
}

.index-about-site {
  height: 1000px;
  width: auto;
}

.back-button {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background-color: #fff; /* Adjust to your design */
  color: #333; /* Adjust to your design */
  border: 1px solid #333; /* Adjust to your design */
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  z-index: 1000; /* Ensure it's above other elements */
}

.back-button:hover {
  background-color: #333; /* Adjust to your design */
  color: #fff; /* Adjust to your design */
}

@media screen and (min-width: 700px) {
  .footer {
    padding-bottom: 0rem;
    display: grid;
    place-items: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas: "a b c d";
    text-align: center;
  }


  .footer-adress {
    text-align: left;
  }
  #adress {
    text-align: left;
  }

  /*
=============== 
Single Page
===============
*/
  .main-about {
    justify-items: center;
    align-items: center;
  }

  .index-about-site nav {
    background-color: var(--clr-grey-1);
  }

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

  .page-info {
    max-width: 700px;
  }

  .page-info a:hover {
    color: var(--clr-black);
  }

  /* ///// ABOUT /// */
  /* ////////////////// */
}

.section-center.page-info p {
  color: #deadae;
}
.page-info {
  text-align: center;
  font-size: 1.5rem;
}
.page-info a {
  text-transform: uppercase;
  color: white;
  background-color: #deadae;
  transition: var(--transition);
}

.project-hero {
  height: 90vh;
  width: auto;
  background: var(--clr-primary-10);
  justify-content: center;

  place-items: center;
}

/* ///// IMPRESSUM /// */
/* ////////////////// */

.page-impressum {
  display: grid;
  grid-template-rows: 1fr;
  text-align: center;
  color: white;
  background-color: var(--clr-primary-3);
  
 
}
.page-impressum p {
  color: var(--clr-black);
}

@media screen and (min-width: 900px) {
  .page-impressum {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    /* padding-bottom: 4rem; */
    text-align: left;

    padding-right: 6rem;
    padding-left: 6rem;
    box-shadow: var(--dark-shadow);
    /* margin-bottom: 2rem; */
  
  }
  .page-impressum.about {
    grid-template-columns: 1fr;
  }
}

/* .single-price-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;


} */




.tour-card {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  background: none;
  box-shadow: var(--light-shadow);
  margin-bottom: 0;
  position: relative;
height:auto;
background: var(--clr-grey-2);
color: white;
width: 100%;
justify-self: center;
}

.tour-card:hover {
  box-shadow: var(--dark-shadow);

  transform: scale(0.95) ;
  transition: 2s ease;
}

.tour-img-container {
  position: relative;
  cursor: pointer;




}

.tour-img {
  height: 28rem;
 


  -o-object-fit: cover;
  object-fit: cover;
}
.tour-img::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: black;


}


.tour-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--clr-primary-8);
  margin-bottom: 0;
  color: var(--clr-primary-1);
  text-transform: capitalize;
  padding: 0.25 0.5;
}

.tour-info {
  position: relative;
  padding-top: 1.25rem;
width: auto;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

}
.tour-info.active {
  max-height: 2000px; /* Adjust this value to fit your content */
}

.tour-info table {
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.tour-info .btn {
  margin: 1.5rem auto;
}
.btn.space {
  margin-top: 8.5rem;
  margin-bottom: 0;
}

.tour-info h4 {
  text-decoration: underline;
  text-align: center;
}

.tour-footer {
  text-align: center;
}
.tour-footer span {
  text-decoration: underline;
}

.tour-footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
}

.tour-footer p span {
  border: solid;

  text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.6),
    0px 0px 10px rgba(255, 255, 255, 0.2), 0px 0px 5px rgba(255, 255, 255, 0.2),
    0px 0px 10px rgba(73, 255, 24, 0.2), 0px 0px 10px rgba(73, 255, 24, 0.2),
    0px 0px 10px rgba(73, 255, 24, 0.2), 0px 0px 10px rgba(73, 255, 24, 0.2),
    0px 0px 10px rgba(73, 255, 24, 0.2);
}

.tour-footer p {
  line-height: 0;
  margin-bottom: 0;
  text-transform: capitalize;
  color: var(--clr-primary-5);
}

.tour-btn {
  text-align: center;
}

.tour-title{
  text-align: center;
  padding-top: 1rem;
  color: white;
  padding: 0.5rem;
  font-size: 1.2rem;
  background-color: #deadae;
}
.tour-info h4{
  font-size:1.2rem;
}

.btn.price {
  color: white;
}
.btn.price:hover {
  color: white;
}

.featured-center {
  padding-top: 10rem;
display: grid;
min-height: 75vh;
height: 100%;
width: 100%;
 row-gap: 2rem;
 margin-top: 1rem;
align-content: center;
justify-content: center;
}
.tour-info {
  text-align: left;
  font-size: 1.2rem;
}
.tour-info table td:first-child {
  text-align: left;
}
.tour-info table td:nth-child(2) {
  text-align: right;
}

/* Right-align the "Preis" column */
.tour-info table td:last-child {
  text-align: right;
}
.price-list-container {
  position: absolute;
  bottom: 0; /* Adjust this value as needed */
  left: 0;
; /* Ensure the container spans the full width */
  background-color:var(--clr-primary-1); /* Set background color as needed */
  z-index: 2; /* Ensure the container is above other elements */
  opacity: 0.9; /* Adjust opacity as needed */
  padding: 20px; /* Add padding as needed for spacing */
  box-sizing: border-box; /* Include padding in the width calculation */
}

@media screen and (min-width: 768px) {
  .tour-info {
    padding-top: 1.25rem;
    text-align: left;

    padding-right: 2rem;
    padding-left: 2rem;
  }




  .featured-center {
    display: grid;
    grid-template-columns: 1fr 1fr ;
 
 row-gap: 3rem;
    column-gap: 2rem;
    -webkit-box-pack: justify;
    align-content: center;
    justify-content: center;
  }
  .featured-center.one {
    grid-template-columns: 600px  ;

  }

  .tour-card {
    -webkit-box-flex: 0;
    flex:  0 calc(50% - 2rem);
  }
}
@media screen and (min-width: 1170px) {
  .tour-card {
    -webkit-box-flex: 0;
    flex: 0 0 calc(33.333% - 2rem);
  }
  .featured-center {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr;

    }



    .featured-center.two {
      grid-template-columns: 600px 600px ;

    }
    .featured-center.one {
      grid-template-columns: 800px  ;

    }


table {
  border-spacing: 1rem; /* Adjust the value to set the desired spacing */
}


.section.prices .projects {
  position: relative;
}
.section.prices {
  display: flex; /* Use flexbox */
  justify-content: center;
  padding-top: 10rem;
  background-attachment: fixed;
  background-attachment: fixed; /* Fixed background */
  position: relative;
  overflow: hidden; /* Hide overflow to prevent scrollbar */
;
height: auto;
margin-bottom: 3rem;
}

.price-list-container {
  position: absolute;
  bottom: 0; /* Adjust this value as needed */
  left: 0;
; /* Ensure the container spans the full width */
  background-color:var(--clr-primary-1); /* Set background color as needed */
  z-index: 2; /* Ensure the container is above other elements */
  opacity: 0.9; /* Adjust opacity as needed */
  padding: 20px; /* Add padding as needed for spacing */
  box-sizing: border-box; /* Include padding in the width calculation */
}
.Bildrechte  {
  max-width: 50vw;
  margin: 0 auto;
}

}

.Bildrechte li {
  text-align: center;
}


.card-side.card-front{
  display: flex;

}

.card-info {
  display: flex;
  width: 100vw;
  height: auto;
  padding: 1rem 1rem;
  text-align: center;
flex-direction: column;
justify-content: space-between;
align-items: center;
justify-items: center;
justify-self: center;


}

.card-info img {
  align-self: center;
}