@import url("https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

:root {
  /* Colors */
  --white-color: #000000;
  --dark-color: #252525;
  --primary-color: #9c9c9c;
  --secondary-color: #af463e;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #868686;

  /* Font Size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border radius*/
  --border-radius-s: 8px;
  --border-radius-m: 23px;
  --border-radius-circle: 50%;

  /*Site max width */
  --site-max-width: 1300px;
}

html {
  scroll-behavior: smooth;
}

/* Styling für ganze Seite*/
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

img {
  width: 100%;
}
.section-content {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

.section-title {
  text-align: center;
  padding: 60px 0 100px;
  text-transform: uppercase;
  font-size: var(--font-size-xl);
}


.section-title:after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 0;
  border-radius: var(--border-radius-s);
  background: var(--secondary-color);
}

.section-titletwo {
  text-align: center;
  padding: 60px 0 100px;
  text-transform: uppercase;
  font-size: var(--font-size-m);
  color: var(--white-color);
}


/* Navbar Styling*/

header {
  position: fixed;
  width: 100%;
  z-index: 5;
  background: var(--primary-color);
}

header .navbar {
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: space-between;
}

.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu {
  display: flex;
  gap: 10px;
}

.navbar .nav-menu .nav-link {
  padding: 10px 18px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  border-radius: var(--border-radius-m);
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
}

.navbar :where(#menu-close-button, #menu-open-button) {
  display: none;
}

.hero-section {
  min-height: 100vh;
  background: var(--primary-color);
  padding: 50px;
}

.hero-section .section-content {
  display: flex;
  align-items: center;
  min-height: 100vh;
  color: var(--white-color);
  justify-content: space-between;
}
 .hero-section .hero-details{
  padding-right: 5%;
 }
.hero-section .hero-details .title {
  font-size: var(--font-size-xxl);
  color: var(--secondary-color);
  font-family: "Miniver", sans-serif;
}

.hero-section .hero-details .subtitle {
  margin-top: 8px;
  padding-right: 5px;
  max-width: 70%;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
  max-width: 70%;
  margin: 24px 0 40px;
  font-size: var(--font-size-m);
}

.hero-section .hero-details .buttons {
  display: flex;
  gap: 23px;
}

.hero-section .hero-details .button {
  padding: 10px 26px;
  border: 2px solid transparent;
  color: var(--primary-color);
  border-radius: var(--border-radius-m);
  background: var(--secondary-color);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us {
  color: var(--white-color);
  border-color: var(--white-color);
  background: transparent;
}

.hero-section .hero-details .contact-us:hover {
  color: var(--primary-color);
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}

.hero-section .hero-image {
  max-width: 80%;

}

/* About section styling */
.about-section {
  padding: 120px 0;
  background: var(--light-pink-color);
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.about-section .about-image-wrapper .about-image {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}

.about-section .about-details .section-title {
  padding: 0;
}

.about-section .about-details {
  max-width: 50%;
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 50px 0 30px;
  text-align: center;
  font-size: var(--font-size-m);
}

/*.about-section .social-link-list {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.about-section .social-link-list .social-link {
  color: var(--primary-color);
  font-size: var(--font-size-l);
  transition: 0.3s ease;
}

.about-section .social-link-list .social-link:hover {
  color: var(--secondary-color);
  padding: 10px 26px;
  border: 2px solid transparent;
  color: var(--primary-color);
  border-radius: var(--border-radius-m);
  background: var(--secondary-color);
  font-weight: var(--font-weight-medium);
}*/

/* Menü section Styling */

.menu-section {
  color: var(--white-color);
  background: var(--medium-gray-color);
  padding: 50px 0 100px;
}

.menu-section .menu-list {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.menu-section .menu-list .menu-item {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.menu-section .menu-list .menu-item .menu-image {
  max-width: 83%;
  aspect-ratio: 1;
  margin-top: 0px;
  width: 900px;
  height: 450px;
}

.menu-section .menu-list .menu-item .name {
  margin-top: 20px;
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-semibold);
}

.menu-section .menu-list .menu-item .text {
  font-size: var(--font-size-m);
}

.menu-section .menu-list .menu-item .menu-image {
  cursor: zoom-in;
  transition: 0.3s ease;
}

.menu-section .menu-list .menu-item .menu-image:hover {
  transform: scale(1.1);
}

/* Team section styling */
.team-section {
  padding: 50px 0 100px;
  background: var(--light-pink-color);
}

.team-section .slider-wrapper {
  overflow: hidden;
  margin: 0 60px 50px;
}

.team-section .team {
  user-select: none;
  display: flex;
  padding: 35px;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.team-section .team .team-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 50px;
  border-radius: var(--border-radius-circle);
  border: 7px solid var(--primary-color);
}

.team-section .team .name {
  margin-bottom: 16px;
  font-size: var(--font-size-m);
}

.team-section .team .beschreibung {
  line-height: 25px;
}

.team-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: var(--secondary-color);
}

.team-section .swiper-slide-button {
  margin-top: -50px;
  color: var(--secondary-color);
  transition: 0.3s ease;
}

.team-section .swiper-slide-button:hover {
  color: var(--primary-color);
}

.slider-wrapper .team-image {
  transition: 500ms ease;
}

.team-section .regeln .hausregeln {
  font-size: var(--font-size-l);
}

.team-section .regeln {
  color: var(--white-color);
  text-align: center;
  padding: 60px 100px;
}

/* Galerie Section styling */

.gallery-section {
  padding: 50px 0 100px;
  background-color: var(--medium-gray-color);
}

.gallery-section a{
    color: var(--dark-color);
}

.gallery-section .gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.gallery-section .gallery-list .gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius-m);
  width: calc(100% / 3 - 32px);
}

.gallery-section .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  transition: 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(0.95);
}
.raum-section .raum {
  font-size: var(--font-size-xl);
}

/* Kontakt Section styling */
.kontakt-section {
  padding: 50px 0 100px;
  background: var(--light-pink-color);
}

.kontakt-section .section-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.kontakt-section .name {
  margin-bottom: 16px;
  font-size: var(--font-size-n);
}

.kontakt-section .kontakt-info-list .kontakt-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.kontakt-section .kontakt-info-list .kontakt-info a {
  color: black;
  transition: 0.3s ease;
}

.kontakt-section .kontakt-info-list .kontakt-info a:hover {
  color: var(--primary-color);
  padding: 10px 26px;
  border: 2px solid transparent;
  color: var(--primary-color);
  border-radius: var(--border-radius-m);
  background: var(--secondary-color);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}

.kontakt-section .kontakt-info-list .kontakt-info i {
  font-size: var(--font-size-m);
}

.kontakt-section .kontakt-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 16px;
  background: var(--white-color);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--medium-gray-color);
}

.kontakt-section .kontakt-form {
  max-width: 50%;
}

.kontakt-section .kontakt-form .form-input:focus {
  border-color: var(--secondary-color);
}

.kontakt-section .kontakt-form textarea .form-input {
  height: 100px;
  padding: 12px;
  resize: vertical;
}

.kontakt-section .kontakt-form .submit-button {
  padding: 10px 26px;
  margin-top: 10px;
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  background: var(--primary-color);
  border-radius: var(--border-radius-m);
  border: 1px solid var(--primary-color);
  transition: 0.3s ease;
}

.kontakt-section .kontakt-form .submit-button:hover {
  color: var(--primary-color);
  background: transparent;
}
.kontakt-section .kontakt-info .buchung{
  font-weight: var(--font-weight-bold);
}

.kontakt-section .kontakt-info .buchen{
  text-decoration: underline;
}

/* Footer section styling */

.footer-section {
  padding: 20px 0;
  background: var(--primary-color);
}

.footer-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-section :where(.copyright-text, .social-link, .policy-link) {
  color: var(--secondary-color);
  transition: 0.2s ease;
}

.footer-section .social-link-list {
  display: flex;
  gap: 25px;
}

.footer-section .social-link-list .social-link {
  font-size: var(--font-size-l);
}

.footer-section .social-link-list .social-link:hover,
.footer-section .policy-text .policy-link:hover {
  color: var(--light-pink-color);
}

.footer-section .policy-text .separator {
  margin: 0 5px;
  color: var(--white-color);
}

/*Dropdown Liste*/
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s ease;
}
.dropdown .dropdown-button:hover {
  color: var(--secondary-color);
  padding: 10px 26px;
  border: 4px solid transparent;
  color: var(--primary-color);
  border-radius: var(--border-radius-m);
  background: var(--secondary-color);
  font-weight: var(--font-weight-medium);
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.1);
  list-style-type: none;
  padding: 0;
  margin: 5px 0;
  border-radius: 10px;
  width: 600px;
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown-menu li:hover {
  background-color: #f1f1f1;
}

.dropdown .dropdown-menu .title {
  font-size: 30px;
  font-weight: bold;
}

.dropdown .dropdown-menu .nebensache {
  font-size: 15px;
  font-weight: var(--font-weight-semibold);
}

/*Räumlichkeiten
  .body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
    margin: 0;
}
  .section-div {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    width: 100%;
    max-width: 10000px;
}

.section-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.big {
    grid-row: span 100;
} */

/*galerie styling*/
.gallerie {
  padding: 30px;
}
.rahmenimg {
  width: 20vw;
  height: 20vw;
  overflow: hidden;
}

.textlayout {
  width: 20vw;
  height: 20vw;
  background-color: var(--primary-color);
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.rahmenimg img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
}

.flexlayout {
  display: flex;
  justify-content: center;
}

#impressum {
  padding-top: 100px;
}

#impressum2 {
  background-color: var(--primary-color);
}

#impressum4 {
  background-color: var(--primary-color);
}



@media (min-height: 850px) {
  .rahmenimg img:hover {
    transform: scale(1.1);
  }
}

/* Responsive media query code for max width 1024px */
@media screen and (max-width: 1024px) {
  .menu-section .menu-list {
    gap: 60px;
  }

  .menu-section .menu-list .menu-item {
    width: calc(100% / 3 - 60px);
  }
}

/* Responsive media query code for max width 900px */
@media screen and (max-width: 900px) {
  :root {
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
  }

  body.show-mobile-menu header::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.2);
  }

  .navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: var(--font-size-l);
  }

  .navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
  }

  .navbar #menu-open-button {
    color: var(--white-color);
  }

  .navbar .nav-menu {
    display: block;
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    background: var(--white-color);
    transition: left 0.2s ease;
  }

  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: var(--dark-color);
    display: block;
    margin-top: 17px;
    font-size: var(--font-size-l);
  }

  .hero-section .section-content {
    gap: 50px;
    text-align: center;
    padding: 30px 20px 20px;
    flex-direction: column-reverse;
    justify-content: center;
  }

  .hero-section .hero-details :is(.subtitle, .description),
  .about-section .about-details,
  .kontakt-section .kontakt-form {
    max-width: 100%;
  }

  .hero-section .hero-details .buttons {
    justify-content: center;
  }

  .hero-section .hero-image-wrapper {
    max-width: 270px;
    margin-right: 0;
  }

  .about-section .section-content {
    gap: 70px;
    flex-direction: column-reverse;
  }

  .about-section .about-image-wrapper .about-image {
    width: 100%;
    height: 100%;
    max-width: 250px;
    aspect-ratio: 1;
  }

  .menu-section .menu-list {
    gap: 30px;
  }

  .menu-section .menu-list .menu-item {
    width: calc(100% / 2 - 30px);
  }

  .menu-section .menu-list .menu-item .menu-image {
    max-width: 200px;
  }

  .gallery-section .gallery-list {
    gap: 30px;
  }

  .gallery-section .gallery-list .gallery-item {
    width: calc(100% / 2 - 30px);
  }

  .kontakt-section .section-content {
    align-items: center;
    flex-direction: column-reverse;
  }
}
/* Responsive media query code for max width 640px */
@media screen and (max-width: 640px) {
  .menu-section .menu-list {
    gap: 60px;
  }

  .menu-section .menu-list .menu-item,
  .gallery-section .gallery-list .gallery-item {
    width: 100%;
  }

  .team-section .slider-wrapper {
    margin: 0 0 30px;
  }

  .team-section .swiper-slide-button {
    display: none;
  }

  .footer-section .section-content {
    flex-direction: column;
    gap: 20px;
  }
}

/* ===== Verbesserte Responsivität für Galerie & Kalender ===== */

@media screen and (max-width: 768px) {
  .rahmenimg {
    width: 80%;
    height: auto;
    margin: 10px auto;
  }

  .flexlayout {
    flex-direction: column;
    align-items: center;
  }

  .kontakt-section iframe {
    width: 100% !important;
    height: 400px !important;
  }

  .hero-section .hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .about-section .about-details .text {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .item .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .item .image-container img {
    max-width: 100%;
    height: auto;
  }

  .item .text {
    padding: 10px;
  }
}
body {
  overflow-x: hidden;
}
.nav-menu {
  max-width: 100vw;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  .nav-menu {
    background-color: white !important;  /* heller Hintergrund */
    color: black !important;             /* dunkle Schrift */
    border-left: 2px solid #ccc;         /* optional: leichte Abgrenzung */
  }

  .nav-menu .nav-link {
    color: black !important;
  }

  #menu-open-button,
  #menu-close-button {
    color: black !important;
  }
}
@media screen and (max-width: 768px) {
  .menu-section {
    display: block;
    min-height: 400px;
    padding-bottom: 80px;
  }

  .elfsight-app-76343731-3fed-472b-b75f-ea0a5f219208 {
    width: 100% !important;
    display: block !important;
    min-height: 300px !important;
  }
}
