main {
    padding: 100px 2rem 2rem;
    width: 100%;
}

p{
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
}

a{
    font-family: 'Raleway', sans-serif;
}

h1, h2, h3, h4{
    font-family: 'Roboto', sans-serif;
    color: var(--dark-contrast-text-color);
    letter-spacing: 1px;
}

blockquote{
  letter-spacing: 2px;
  padding-top: 5px;
  padding-bottom: 5px;
}


.index-text-box{
    width: var(--desktop-text-block-width);
    margin: 0 auto;
}

.round-image{
    width: 60%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    justify-self: center;
    align-self: center;
}

.index-grid {
  display: grid; /* Grid aktivieren */
  grid-template-columns: repeat(2, 1fr); /* 2 gleich große Spalten */
  row-gap: 120px;
  column-gap: 0rem; /* Abstand zwischen den Zellen */
  padding: 2rem; /* optional */
  margin-bottom: 120px;
}

#grid-3{
    grid-column: 2;
    grid-row: 2;
}
#grid-4{
    grid-column: 1;
    grid-row: 2;
}

.index-booking-button {
  width: 50%;
  padding: 1rem 2rem;
  background-color: var(--header-bg-color);
  color: var(--contrast-text-color); /* ein weiches Dunkelrosa/Braun für guten Kontrast */
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 15px; /* schön abgerundet */
  box-shadow: 0 4px 10px rgba(245, 221, 221, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
  margin: 0 auto;
  margin-top: -30px;
  margin-bottom: 80px;
  display: block;
  text-decoration: none;
  text-align: center;
}

.index-booking-button:hover {
  background-color: #e8c9c9; /* etwas dunkler beim Hover */
  box-shadow: 0 6px 15px rgba(232, 201, 201, 0.7);
  transform: translateY(-3px);
}

.index-booking-button:active {
  transform: translateY(1px);
  box-shadow: 0 3px 8px rgba(232, 201, 201, 0.5);
}


.opening-times-box{
  display: flex;
  flex-direction: column;
  width: 40%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.opening-times-box > h2{
  text-align: center;
}
.opening-times-box > p{
  line-height: 1;
  margin-top: 0;
}


.time-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: -12px;
}


.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.socials-box{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 0px;
}

.socials-box > p{
  text-align: center;
}

.social-media-icon-box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 40px;
  width: var(--desktop-text-block-width);
  margin-bottom: 20px;
}  

.social-icon{
  width: 70px;
  height: auto;
}

.social-box-logo{
  width: 30%;
  max-width: 60%;
  min-width: 250px;
  height: auto;
}

.contact-box{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  margin-bottom: 50px;
}

.contact-box > h2{
  text-align: center;
}

.contact-row{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}

.contact-row img{
  width: 25px;
  height: auto;
}

.impressum-box{
  text-align: center;
}


.swiper {
  width: 35%;
  height: 400px;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
}


.swiper-slide {
  width: 100%;
  height: 100%;
  background-color: var(--header-bg-color);
  border-radius: 15px;
}

.text-swiper .swiper-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding-left: 15%;
  padding-right: 15%;
  font-size: 1.3rem;
}

.text-swiper .swiper-slide q {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
}
.text-swiper .swiper-slide p {
  color: var(--contrast-text-color);
}


.swiper-slide img {
  display: block;
  max-width: 80%;
  max-height: 100%;
  width: 80%;
  height: 100%;
  object-fit: contain;
    margin: 0 auto;
}

.swiper-box{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 400px;
  margin-top: 80px;
  margin-bottom: 140px;
}

.swiper-pagination-bullet{
  background-color: #fff !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--contrast-text-color) !important; /* Ändert die Pfeilfarbe */
}

.swiper-slide q{
  display: block;
  color: var(--contrast-text-color);
}




@media (max-width: 768px) {
  main {
      padding: 10px 2rem 2rem;
      width: 100%;
      margin-top: 100px;
  }

  p{
    line-height: 1.4;
  }

  h1, h2, h3, h4{
      letter-spacing: 1px;
  }

  blockquote{
    letter-spacing: 2px;
    padding-top: 3px;
    padding-bottom: 3px;
  }


  .round-image{
    width: 95%;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    justify-self: center;
    align-self: center;
}

.index-grid {
  display: grid; /* Grid aktivieren */
  grid-template-columns: 1fr; /* 2 gleich große Spalten */
  row-gap: 20px;
  column-gap: 0rem; /* Abstand zwischen den Zellen */
  padding: 0rem; /* optional */
  margin-bottom: 60px;
}

#grid-3{
    grid-column: 1;
    grid-row: 3;
}
#grid-4{
    grid-column: 1;
    grid-row: 4;
}

.index-booking-button {
  width: 95%;
  margin-top: -60px;
  margin-bottom: 40px;
}

.opening-times-box{
  width: 95%;
  margin-bottom: 40px;
}

.time-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: -20px;
}

.social-box-logo{
  width: 95%;
}

.socials-box{
  margin-top: 30px;
  margin-bottom: 0px;
}





.swiper {
  width: 100%;
  height: 400px;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  max-height: 100%;
}


.swiper-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  max-width: 100%;
  max-height: 100%;
  background-color: var(--header-bg-color);
  border-radius: 15px;
}

.text-swiper .swiper-slide {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 1.2rem;
}

.text-swiper .swiper-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-swiper .swiper-slide q {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
}
.text-swiper .swiper-slide p {
  color: var(--contrast-text-color);
}


.swiper-slide img {
  display: block;
  max-width: 80%;
  max-height: 100%;
  width: 80%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.swiper-box{
  flex-direction: column;
  row-gap: 60px;
  width: 100%;
  height: 100%;
  margin-top: 0px;
  margin-bottom: 120px;
}

.swiper-pagination-bullet{
  background-color: #fff !important;
  opacity: 0.5 !important;
}
.swiper-pagination-bullet-active{
  background-color: #fff !important;
  opacity: 1 !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 12px;
  height: 12px;
  display: none !important;
}

.swiper-slide q{
  display: block;
  color: var(--contrast-text-color);
}

}

@media (min-width: 769px) and (max-width: 1200px) {

.index-grid {
  row-gap: 20px;
  margin-bottom: 20px;
}

}