* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

strong {
  font-style: italic;
  font-weight: bold;
}/* Allgemeines Layout */
/* General layout */
.we_are {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
  justify-content: space-between;
  padding: 40px;
  gap: 20px;
  background-color: var(--secondary-color);
}

.canvas {
  position: relative;
  flex: 1 1 40%;
  height: auto;
  /* Sicherstellen, dass die Höhe 100% des Containers beträgt */
}

/* Galerie der Bilder */
.gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Einzelne Bilder mit absoluter Positionierung */
.gallery img {
  position: absolute;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  border: var(--dark-color) solid 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

/* Bild 1: Ganz vorne */
.gallery .gimg1 {
  top: 10%;
  left: 2%;
  width: 80%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  z-index: 1;
}

/* Bild 2: Überlappt Bild 1 */
.gallery .gimg2 {
  top: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 3/2;
  object-fit: cover;
  z-index: 2;
  transform: rotate(-5deg);
}

/* Bild 3: Überlappt Bild 2 */
.gallery .gimg3 {
  bottom: 0;
  left: 0;
  width: 70%;
  aspect-ratio: 3/2;
  object-fit: cover;
  z-index: 3;
  transform: rotate(5deg);
}

/* Skalierung beim Hover */
.gallery img:hover {
  transform: scale(1.05);
  z-index: 4;
}

/* Textinhalt auf der rechten Seite */
.we_are_content {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  /* sorgt dafür, dass der Inhalt den Raum füllt */
}

.we_are_content h2 {
  font-size: var(--h2-font-size);
  color: var(--dark-color);
  margin: 20px 0;
}

.we_are_content p {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: var(--dark-color);
  margin-bottom: -20px;
}

.we_are_content .maps {
  position: relative;
  border: var(--dark-color) solid 5px;
  border-radius: 5px;
  margin-top: 50px;
}

.topm {
  padding-top: 50px;
}
/* CSS for #tours section */
#tours {
  padding: 50px;
  background-color: var(--light-dark-color); /* Light purple background */
  color: var(--dark-color); /* Dark purple text */
  text-align: center; /* Center-align all text */
}

#tours .tours_intro h2 {
  font-size: var(--h2-font-size);
  color: var(--dark-color); /* Purple for heading */
  margin-bottom: 1rem;
}

#tours .tours_intro p {
  font-size: var(--normal-font-size);
  line-height: 1.6;
  margin-bottom: 1rem;
}

#tours .tours_intro p em {
  font-style: italic;
  color: var(--tertiary-color); /* Purple */
}

#tours .tours_intro i {
  display: block;
  font-size: 2rem;
  color: var(--dark-color); /* Light lavender icon */
  margin: 2rem auto 0; /* Spacing around the icon */
}

#tours .tours_intro a {
  text-decoration: none;
}

/* Standardmäßige Darstellung für größere Geräte bleibt unverändert */
.section_title {
  color: var(--dark-color);
  text-align: center;
  z-index: 20;
}

.section_description {
  font-size: var(--normal-font-size);
  margin-bottom: 10px;
}

.section_heading {
  font-size: var(--h2-font-size);
  font-weight: bold;
}

.activities_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: var(--light-dark-color);
}

.card__container {
  width: 100%;
  display: flex;
  align-items: center;
  padding-block: 5rem;
  margin-bottom: 50px;
}

.card__content {
  margin-inline: 1.75rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.card__article {
  width: 300px;
  border-radius: 1.25rem;
  overflow: hidden;
}

.card__data {
  background-color: var(--tertiary-color);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
  box-shadow: #6c4e31;
}

.card__img {
  width: 200px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.special {
  width: 100%;
  margin-bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  aspect-ratio: 3/2;
  border-radius: 1.25rem;
  border: var(--dark-color) solid 5px;
}

.card__name {
  font-size: var(--h3-font-size);
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.card__description {
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 1rem;
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.card__button {
  display: inline-block;
  background-color: var(--dark-color); /* Custom dark color for button */
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  color: var(--light-color); /* Light text on dark background */
  font-weight: 600;
  text-align: center;
  text-decoration: none; /* Remove underline */
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none; /* Remove border */
  outline: none; /* Show pointer cursor on hover */
}

.card__button:hover {
  background-color: var(--light-dark-color); /* Darker color when hovered */
  transform: scale(1.05); /* Slightly enlarge button on hover */
}

/* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 3rem;
  color: var(--dark-color);
  display: none;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination-bullet {
  background-color: var(--light-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--dark-color);
}

/* Modal Popup */
.popup-modal {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

#carousel {
  width: 100%;
  height: auto; /* Adjust height as needed */
}

.carousel-image {
  width: 80%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 1.25rem;
  border: var(--dark-color) solid 5px;
}

.popup-content {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 100%;
}

#closeModal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.popup-buttons {
  margin-top: 1.5rem;
}

.close-btn {
  color: var(--light-color);
}

.popup-btn {
  display: inline-block;
  background-color: var(--dark-color);
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.popup-btn:hover {
  background-color: var(--light-dark-color);
}

/* About Us Section Styles */
.about-us {
  background-color: var(--secondary-color); /* Light purple from your palette */
  padding: 50px 20px;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-image img {
  max-height: 100%;
  max-width: 400px;
  border-radius: 15px;
  border: var(--dark-color) solid 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: var(--h2-font-size);
  color: var(--dark-color); /* Dark purple from your palette */
  margin-bottom: 15px;
}

.about-content p {
  font-size: var(--normal-font-size);
  color: var(--dark-color); /* Purple from your palette */
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  color: var(--light-color);
  background-color: var(--dark-color); /* Purple from your palette */
  text-decoration: none;
  border-radius: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color); /* Dark purple from your palette */
  transform: translateY(-2px);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.contact-section {
  padding: 60px 20px;
  background-color: var(--tertiary-color);
}

.contact-section h2 {
  text-align: center;
  font-size: var(--h2-font-size);
  margin-bottom: 10px;
  color: var(--dark-color);
}

.contact-section p {
  text-align: center;
  margin-bottom: 40px;
  font-size: var(--normal-font-size);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.contact-details {
  flex: 1;
  min-width: 300px;
  font-size: 1rem;
}

.contact-details h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: var(--dark-color);
}

.contact-details p a {
  color: var(--dark-color);
  text-decoration: none;
}

.contact-details p a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form label {
  font-size: 1rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 2px solid var(--dark-color);
  border-radius: 1.5rem;
  background-color: var(--light-color);
  color: var(--text-color);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--light-dark-color);
  outline: none;
}

.contact-form button {
  padding: 10px;
  font-size: 1rem;
  color: var(--light-color);
  background-color: var(--dark-color);
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: var(--light-dark-color);
}

footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 20px 0;
  text-align: center;
  position: relative;
  z-index: 1000;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content p {
  margin: 0;
  font-size: 1rem;
}

.socials {
  margin-top: 15px;
}

.socials a {
  text-decoration: none;
  margin: 0 10px;
  display: inline-block;
}

.socials i {
  font-size: 25px;
  color: var(--light-color);
  transition: transform 0.3s ease;
}

.socials i:hover {
  transform: scale(1.2);
}

.footer_important_infos {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer_important_infos a {
  text-decoration: none;
  color: var(--light-color);
}

.footer_important_infos a:hover {
  text-decoration: underline;
}
/* Bis 320px */
@media screen and (max-width: 320px) {
  .card__data {
    padding: 1rem;
  }
}

/* Bis 768px */
@media screen and (max-width: 768px) {
  .we_are {
    flex-direction: column;
    align-items: flex-start;
  }

  .canvas {
    width: 100%;
    position: relative;
  }

  .platzhalter1 {
    padding-bottom: 56.25%;
  }

  .gallery {
    position: relative;
    width: 100%;
    /* Passt sich der Höhe des Inhalts an */
  }

  .gallery img {
    transform: none;
  }

  .gallery .gimg1 {
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .gallery .gimg2 {
    width: 45%;
  }

  .gimg3 {
    display: none;
  }

  .we_are_content {
    max-width: 100%;
  }
  .about-image img {
    width: 100%;
    height: auto;
    max-width: 300px;
  }
}

/* Ab 769px */
@media screen and (min-width: 769px) {
  .card__content {
    margin-inline: 3rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
  .about-container {
    flex-direction: row;
    text-align: left;
  }
}

/* Ab 1120px */
@media screen and (min-width: 1121px) {
  .card__container {
    max-width: 1120px;
  }

  .swiper-button-prev {
    left: -1rem;
  }

  .swiper-button-next {
    right: -1rem;
  }
}
