/*==========
1. Menü
2. Burgermenü
3. Texte
4. Team
5. Behandlungen
6. Extras
7. Produkte / Shop
8. Kontakt
9. Footer
============*/
* {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
}
.container {
  width: 1000px;
  margin: 0 auto;
}
/*==========Menü============*/
#menue {
  background-color: #D4BE99;
  height: 70px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14pt;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  position: sticky;
  top: 0;
  width: 100%;
  border-bottom: 2px solid white;
}
.display {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 50px;
  flex-shrink: 0;
}
.logo-back {
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
  height: 70px;
  display: flex;
  align-items: center;
}
nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  float: right;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
nav ul li {
  position: relative;
  margin: 0 60px 0 0;
  float: left;
  display: inline-block;
}
li > a:after {
  content: ' »';
}
li > a:only-child:after {
  content: '';
}
nav ul li a {
  padding: 20px;
  display: inline-block;
  color: white;
  text-decoration: none;
}
nav ul li a:hover {
  color: #0E0E0E;
  transition: 0.5s;
}
nav ul li ul {
  display: none;
  position: absolute;
  left: 0;
  background: #E6E6E6;
  float: right;
  min-width: 100%;
  white-space: nowrap;
}
nav ul li ul li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
}
nav ul li ul li a {
  width: 100%;
  display: block;
  padding: 20px 30px;
  background: #E6E6E6;
  color: #1A1A1A;
}
nav ul li ul li a:hover {
  background: #686868;
  color: #FFF;
}
nav ul li:hover ul {
  display: block;
}
/*==========Burgermenü============*/
.main-content {
  padding: 20px;
}
.content-section {
  margin-bottom: 40px;
}
h1, h2, h3 {
  margin-bottom: 15px;
}
p {
  margin-bottom: 15px;
}
/* Seitennavigation */
.side-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: #222;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: right 0.3s ease;
}
.side-nav-container {
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.close-btn {
  color: #fff;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  text-decoration: none;
  cursor: pointer;
}
.nav-header {
  text-align: center;
  margin-bottom: 40px;
}
.nav-header img {
  height: 50px;
}
.nav-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}
.nav-menu li {
  margin-bottom: 15px;
}
.nav-menu li a {
  color: white;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.nav-menu li a span {
  color: #D4BE99;
}
.nav-menu li a:hover {
  color: #D4BE99;
}
.nav-text {
  margin: 20px 0;
  border-top: 1px solid #444;
  padding-top: 20px;
}
.nav-text p {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon img {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.social-icon:hover img {
  opacity: 1;
}
.nav-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #444;
}
.nav-footer a {
  display: block;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.nav-footer a:hover {
  opacity: 1;
}
/* Mobile Header - WICHTIGE ÄNDERUNG: position:relative statt fixed */
#mobile-header {
  display: none;
  position: relative; /* Nicht fixiert, um den Inhalt nach unten zu drücken */
  width: 100%; /* Ganze Breite einnehmen */
  height: 70px;
  background-color: #D4BE99;
  z-index: 997;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.mobile-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 15px;
}
.mobile-logo {
  height: 50px;
  display: flex;
  align-items: center;
}
.mobile-logo img {
  height: 40px;
}
/* Burger-Menü Styling */
.burger-menu {
  cursor: pointer;
}
.burger-icon {
  width: 30px;
  height: 20px;
  position: relative;
}
.burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #222; /* Farbe der Menü-Balken */
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.burger-menu.on-dark span {
  background: #fff;
}
.burger-icon span:nth-child(1) {
  top: 0px;
}
.burger-icon span:nth-child(2) {
  top: 8px;
}
.burger-icon span:nth-child(3) {
  top: 16px;
}
.burger-menu.active .burger-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}
.burger-menu.active .burger-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.burger-menu.active .burger-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}
/* Overlay für Mobile */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}
/*==========Texte============*/
h1 {
  color: #A86F9B;
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 26pt;
  text-align: center;
  margin-top: 60px;
}
h2 {
  color: #FFF;
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 26pt;
  text-align: center;
}
h3 {
  color: #FFF;
  font-family: "Playfair Display";
  font-weight: 600;
  font-size: 28pt;
}
h4 {
  color: #1F1F1F;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-size: 14pt;
}
p {
  color: #1F1F1F;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 12pt;
  line-height: 1.7;
}
/*==========Header===========*/
#header_img {
  width: 100%;
  margin-bottom: -50px;
}
/*==========Philosophie===========*/
.container-philo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: -30px;
}
.container-philo p {
  text-align: left;
}
/* Bild Styling */
.image-container {
  position: relative;
}
.image-container img {
  width: 350px;
  position: relative;
  z-index: 1;
}
.image-container::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
}
.text-container {
  max-width: 500px;
}
.text-container h1 {
  text-align: left;
  margin-bottom: 20px;
}
/*==========Team============*/
.back-team {
  background-color: #D4BE99;
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.team-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}
.team-member {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 900px;
  align-items: flex-start;
}
.team-member img {
  width: 250px;
  height: auto;
  flex-shrink: 0;
  border-radius: 8px;
}
.team-text {
  max-width: 600px;
}
.team-text h3 {
  color: #FFF;
  font-size: 21pt;
  font-family: "Playfair Display";
  font-weight: 600;
  margin-bottom: 5px;
}
.divid {
  border: 0;
  border-top: 2px solid #A86F9B;
  width: 250px;
  margin: 10px 0;
}
.team-text p {
  color: #fff;
  font-size: 12pt;
  margin-top: 5px;
  text-align: left;
}
/*==========Behandlung============*/
details p {
  text-align: left;
}
#galerie {
  margin-bottom: 80px;
}
.summary-content {
  flex-grow: 1;
  margin-right: 10px;
  color: #B3B3B3;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  font-size: 14pt;
  margin-top: 20px;
}
.details-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.details-button:hover {
  background-color: #e0e0e0;
}
.details-button img {
  width: 35px;
  height: 35px;
}
details > summary::-webkit-details-marker {
  display: none;
}
.trenner {
  display: block;
  width: 100%;
  border-top: 2px solid #D4BE99;
  margin-top: 2px 0px;
  margin: 10px auto 0;
}
.bild-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 30px;
}
.bild-container img {
  width: 230px;
  height: auto;
  background-color: #e0e0e0;
  text-align: center;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 20px 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*==========Extras============*/
#extras {
  margin-bottom: -230px;
  transform: translateZ(200px);
  padding-top: 70px;
}
#welle1 {
  margin-bottom: -10px;
  margin-top: 0;
}
#back {
  background-color: #D4BE99;
  height: 150px;
}
.back-extras {
  background-color: #D4BE99;
  margin-top: -50px;
}
.back-extras p {
  color: #fff;
  text-align: left;
}
.extra-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 50px;
  margin-bottom: 100px;
  margin-top: -100px
}
.extra-image {
  width: 260px;
  height: auto;
  object-fit: cover;
  margin-right: 20px;
}
.extra-content {
  max-width: 600px;
  text-align: left;
  margin-left: 100px;
}
.divider {
  border: 0;
  border-top: 2px solid #A86F9B;
  width: 250px;
  margin: 10px 0;
}
/*==========Produkte / Shop============*/
.container-kooperationen {
  text-align: center;
  margin-top: 20px;
}
.container-kooperationen h1 {
  margin-bottom: 40px;
}

.partner-item img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid #CCCCCC;
  object-fit: contain;
  padding: 10px;
  background-color: #fff;
  margin-bottom: 15px;
}

.partner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.partner-item {
  text-align: center;
  flex: 0 1 calc(50% - 30px);
  max-width: 250px;
}



.button-link {
  display: inline-block;
  background: #B3B3B3;
  color: #fff;
  padding: 10px 20px;
  width: 120px;
  border: none;
  border-radius: 8px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 10pt;
  text-decoration: none;
  margin-top: 10px;
  cursor: pointer;
  text-align: center;
}
.button-link:hover {
  background-color: #D4BE99;
  transition: 0.3s;
}
/*==========Öffnungszeiten=========*/
.back-oeffnungszeiten-image {
  background-image: url("../images/oe_trenner_image.jpg");
  background-size: cover;
  width: 100%;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}
.back-oeffnungszeiten-image p {
  color: #fff;
}
.oeffnungszeiten-box {
  background-color: #1F1F1F;
  font-family: "Roboto Condensed", sans-serif;
  width: 400px;
  height: 100%;
  text-align: center;
  padding-left: 50px;
  padding-right: 50px;
}
.oeffnungszeiten-box h2 {
  color: #D4BE99;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 45px;
}
.basic-hr {
  border: 1px solid #4F4F4F;
  margin-bottom: 25px;
  width: 80%;
}
.zeiten {
  display: flex;
  gap: 80px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}
.tage p, .uhrzeiten p {
  color: #fff;
  margin: 10px 0;
}
.sonntag {
  color: #D4BE99 !important;
}
.geschlossen {
  color: #D4BE99 !important;
}
/*==========Kontakt============*/
footer {
  padding-top: 60px;
}
#title-contact {
  font-size: 32pt;
  text-align: left;
  margin-bottom: 5px;
}
.kontakt-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}
.text_footer b {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding-top: 15px;
}
.text_footer span {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.name, .adresse, .telefon {
  display: flex;
  background-color: #E6E6E6;
  width: 100%;
  height: 70px;
  border-radius: 50px;
  margin: 30px 0;
}
.name:hover, .adresse:hover, .telefon:hover {
  background-color: #B3B3B3;
  transition: 0.5s;
}
.icon_footer {
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
.icon_footer img {
  width: 30px;
  height: 30px;
  margin-left: 40px;
}
.daten {
  width: 40%;
}
iframe {
  width: 60%;
  height: 450px;
}
.kontakt-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.daten {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*==========Footer============*/
.bottom {
  background-color: #D4BE99;
  height: 80px;
  margin-top: 60px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Textlinks */
#float2 {
  display: flex;
  gap: 10px;
  align-items: center;
  float: left;
}
#float2 a {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-decoration: none;
  color: #1F1F1F;
  font-size: 14px;
}
#float2::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #EEC535;
  transition: all 0.3s;
}
.social {
  display: flex;
  gap: 15px;
  float: right;
}
.social a {
  border: 2.5px solid #1F1F1F;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  float: left;
}
.social a:hover {
  background-color: #FFF;
  border-color: #FFF;
  font-weight: bold;
}
.social a > i {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.whatsapp_link {
  background-image: url("../images/icon_whatsapp.png");
}
.facebook_link {
  background-image: url("../images/icon_facebook.png");
}
.insta_link {
  background-image: url("../images/icon_instagram.png");
}