@font-face {
    font-family: "bahnschrift.tff";
    src: url(../fonts/bahnschrift.ttf);
    font-size: 16px;
    font-style: normal;
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {

    overflow-x: hidden;
    scroll-behavior: smooth;
}

body{
    font-family: "Bahnschrift", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/*STARTSEITE*/

header {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 1;
  padding: 0 20px;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url(../images/Startseite1.webp) center/cover no-repeat;
  filter: blur(8px);
  transform: scale(1.08); /* verhindert harte Ränder durch den Blur */
}

header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.6)
  );
  z-index: -1;
}

/*header {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  color: rgb(0, 0, 0);
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/Startseite1.webp);
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.658);
  background-blend-mode: darken;
}
*/
.logo-container{
    text-align: center;
}
.Logo{
    padding-top: 1rem;
    height: auto;
    max-width: 12vh;
    min-width: 8vh;
    filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.801))blur(0.2px);
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {
  .Logo {
    padding-top: 1rem;
  }
}

.Logo:hover{
  transform: scale(1.1);
}

.navigationsleiste-desktop{
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    gap: 4rem;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 2rem 0 0 0;
    text-decoration: none;
    font-weight: 100;
    font-size: 3vh;
    letter-spacing: 3px;
    color: white;
    transition: transform 0.6s ease;
}


.navigation:hover {
    color: #e4c5af;
    font-weight: lighter;
    transform:scale(1.1);  
}


.navi-icons{
    height: 1em;
    width: auto;
    vertical-align: middle;

}

.navigation:hover .navi-icons {

  transform: scale(1.1);
  transition: transform 0.6s ease;
}



@media (max-width: 768px) {
  .navigationsleiste-desktop,
  .navigation {
    display: none;
  }
}


  .hamburger {
    width: 2rem;
    height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    z-index: 1100;
    opacity: 0.5;
    transition: opacity 0.3s ease;

  }

  .hamburger:hover {
    opacity: 1;
  }

  .hamburger span {
    height: 3px;
    width: 100%;
    background-color: #e4c5af;
    border-radius: 2px;
    transition: all 0.6s ease;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  @media (max-width: 768px) {
  .hamburger {
    opacity: 0.5;
  }
  }

  /*
  nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(100vw);
    transition: transform 0.4s ease;
    padding: 12rem 2rem 2rem;
    z-index: 999;
  }

  nav.open {
    transform: translateX(0%);
    right: 0;
  }

  nav ul {
    list-style: none;
    padding: 0;
  }
    */

  nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(100vw);
  transition: transform 0.4s ease;
  padding-top: 3rem; /* HIER steuerst du, wie hoch die Links erscheinen */
  z-index: 999;
  display: flex;
  flex-direction: column;
}

nav.open {
  transform: translateX(0%);
  right: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

nav ul li {
  width: 80%;
  text-align: center;
}

  nav ul li a {
    display: block;
    font-size: clamp(1.5rem, 2vmin, 8rem);
    color: #fff;
    text-decoration: none;
    text-align: center;
    letter-spacing: 9px;
    padding: 2rem 0;
    border-bottom: 1px solid #e4c5af;
    transition: transform 0.6s ease;
    width: 100%;
  }
  nav ul li a:hover {
    font-size: clamp(1.5rem, 2vmin, 8rem);
    color: #e4c5af;
    transform:scale(1.04); 
  }




.Ueberschrift{
    display: block;
    padding-top: 2rem;
    justify-content: center;
    line-height: 5rem;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight:normal;
    font-size: clamp(3.2rem, 2vmin, 5rem);
    letter-spacing: 8px;

}

.Ueberschrift h2{
  font-size: clamp(4rem, 2vmin, 5rem);
}

.PhysioterapieGold{
    color: #e4c5af;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.342);
    font-size: larger;
}

.linie {
  display: block;
  height: 1px;
  background-color: #e4c5af;
  width: 50vw;
  margin: 0.5rem auto 0 auto;;
}

.unterschrift{
    display: block;
    justify-content: center;
    color: white;
    text-align: center;
    font-size: clamp(0.8rem, 2vmin, 5rem);
    font-weight:lighter;
    flex-wrap: wrap;
    gap: 2rem;
    letter-spacing: 0.5vh;
    line-height: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .Ueberschrift
{
    font-size: 5vw;
    line-height: 3rem;
    padding-top: 3rem;

  }
}
@media (max-width: 768px) {
  .PhysioterapieGold
{
    font-size: 9vw;
  }
}

@media (max-width: 768px) {
  .linie
{
    width: 90vw;
  }
}

.Button-Anrufen{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;

}

.button{
    border: 1px solid white;
    font-size: clamp(1rem, 2vmin, 5rem);
    text-decoration: none;
    text-align: center;
    color: white;
    letter-spacing: 0.5vh;
    background-color: transparent;
    padding: 1rem;
    transition: transform 0.6s ease;
}


.button:hover{
    color: #e4c5af;
    border-color: #e4c5af;
    font-weight: bold;
    transform:scale(1.1);  
}

.arrowdown {
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  
}

.arrow-icon {
  height: 30px;
  width: auto;
  transition: transform 0.6s ease;
}

.arrow-icon:hover{
  transform:scale(1.5);
}

@media (max-width: 768px) {
  .arrowdown {
    padding: 3rem;
  }
}



/*SEKTION PRAXISGEMEINSCHAFT*/

.Praxisgemeinschaft {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url(../images/praxisgemeinschaft.webp) no-repeat center center/cover;
  padding: 60px 20px;
  color: white;
}

.Rahmenpraxisgemeinschaft {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  max-width: 1000px;
  margin: auto;
  padding: 40px 30px;
  box-sizing: border-box;
  text-align: center;
}

.textbereich p {
  font-size: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: lighter;
}

.schrift-herzlichwillkommen {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}


.schrift-gemeinschaftspraxis {
  color: #E3CDA4;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 1px;
}

/*
.Button-Anrufen {
  margin-top: 30px;
}

.Button-Anrufen .button {
  background-color: #E3CDA4;
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.Button-Anrufen .button:hover {
  background-color: #d1b777;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .Rahmenpraxisgemeinschaft {
    padding: 30px 20px;
  }

  .textbereich p {
    font-size: 1rem;
  }

  .schrift-herzlichwillkommen {
    font-size: 1.6rem;
  }
}








/*
.Praxisgemeinschaft{
    display: block;
    align-items: center;
    box-sizing: border-box;
    margin-top: 0;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.5)
      ), url(../images/praxisgemeinschaft.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: center;
    height: 100%;  
}


.Rahmenpraxisgemeinschaft{
  width: 100vw;


  height: 100vh;


  background-color: rgba(27, 25, 25, 0.253);
  backdrop-filter: blur(8px);

  display: block;
  justify-content: center;
  align-items: center;

  margin: auto;
  padding: 2rem;
  box-sizing: border-box;

  overflow-wrap: break-word;
  word-break: break-word;

}

.Rahmenpraxisgemeinschaft p{
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 100%;
  color: #fff;
  text-align: center;
  font-weight: lighter;
  font-size: clamp(0.8rem, 2vmin, 3rem);
  letter-spacing: 0.3vh;
  line-height: 3vh;
  padding: 5rem;
}

@media (max-width: 768px) {
  .Rahmenpraxisgemeinschaft {
    padding: 1rem;
  }
  .Rahmenpraxisgemeinschaft p {
    font-size: 1rem;
    letter-spacing: 0.1vh;
    padding: 2rem 0 0 0;
  }
}

.schrift-herzlichwillkommen{
  font-size: 20px;
}

.schrift-gemeinschaftspraxis{
    color: #e4c5af;
    font-size: 20px;

}
*/


/*SEKTION KONTAKT*/
.kontakt-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), #074F57),
              url(../images/kontaktieren.webp) center/cover fixed;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kontakt-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.kontakt-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.kontakt-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: lighter;
}

.kontakt-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.kontakt-buttons .btn {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border: 1px solid #f9f6fe;
  text-decoration: none;
  color: white;
  transition: transform 0.6s ease;
}

.kontakt-buttons .primary {
  background-color: #794eab00;

}

.kontakt-buttons .primary:hover {
  background-color: #e4c5a4;
    transform: scale(1.1);
}

.kontakt-buttons .secondary {
  background-color: #55555500;
}

.kontakt-buttons .secondary:hover {
  background-color: #E4C5A4;
    transform: scale(1.1);
}


@media (max-width: 768px) {
  .kontakt-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


/*SEKTION ÜBER UNS*/

.cards-section {
  padding: 4rem 2rem;
  background-color: #555;
  background-image: linear-gradient(
        rgba(0, 0, 0, 0.733), 
        rgba(0, 0, 0, 0.74)
      ), url(../images/praxisgemeinschaft.webp);
      backdrop-filter: blur(5px);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
}

.schrift-ueberuns{
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #f9f6fe;
  letter-spacing: 5px;
}

.cards-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background-color: rgba(255, 255, 255, 0.459);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.6s ease;
}

.card:hover{  
  transform:scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 2);
}


.card img {
  padding-top: 10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.card h5 {
  padding: 1rem;
  color: #f9f6fe;
  flex-grow: 1;
  font-size: 1.2rem;
}

.card p {
  padding: 1rem;
  color: #555;
  flex-grow: 1;
}

.card-button {
  background-color: #e4c5af00;
  color: #f9f6fe;
  padding: 0.75rem 1.5rem;
  margin: 1rem;
  border: 1px solid white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.card-button:hover {
  background-color: #e4c5af;
  color: black;
}

/*SECTION FAQ*/

.faq-section {
background-image: linear-gradient(
        rgba(0, 0, 0, 0.5), 
        rgba(0, 0, 0, 0.5)
      ), url(../images/faq.webp);
  padding: 4rem 1rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: #f9f6fe;
}

.faq-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #f9f6fe;
}

.accordion-toggle {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 1rem;
  text-align: left;
  letter-spacing: 1px;
  font-size: 1.1rem;
  color: #f9f6fe;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-toggle:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.accordion-content {
  max-height: 0;
  letter-spacing: 1px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 1rem;
}


/*SECTION FOOTER*/

.footer {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.692), 
      rgba(0, 0, 0, 0.5)
    ), url(../images/haus.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000000b9;
  color: #f9f6fe;
  padding: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  text-align: justify;
}

.footer-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 1rem;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}


.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section p {
  color: #f9f6fe;
  text-decoration: none;
  font-weight: lighter;
  font-size: 0.9rem;
}

.footer-section h4 {
  margin-bottom: 0.5rem;
  color: #e4c5af;
  letter-spacing: 1px;
}

.footer-section a {
  color: #f9f6fe;
  text-decoration: none;
  font-weight: lighter;
  font-size: 0.9rem;
  transition: transform 0.6s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: #e4c5af;
  text-decoration: none;
  transform: scale(1.1);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f9f6fe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-link:hover {
  text-decoration: none;
  color: #e4c5af;
}

.map-link img {
  filter: brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.map-link:hover img {
  filter: brightness(1.5);
  transform: scale(1.1);
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.footer-logo img {
  max-width: 120px;
  height: auto;
  filter: drop-shadow(12px 12px 12px rgba(0, 0, 0, 0.801))blur(0.2px);
  transition: transform 0.6s ease;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1rem;
  }

  .footer-section {
    width: 100%;
  }

  .footer-logo {
    margin-top: 1rem;
  }
}


.designedsection{
  padding:20px;
  background-color: rgba(0, 0, 0, 0.884);
}

.designedsection p{
  color: white;
  text-align: center;
  font-size: 12px;
  font-weight: lighter;
  letter-spacing: 2px;
}


/*Leistungen*/
.leistungen-section {
      background: linear-gradient(
    135deg,
    #074F57 0%,
    #074F57 10%,
    #050505 100%
  );
  padding: 4rem 2rem;
  color: white;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.leistungen-section-b {
background: linear-gradient(
  135deg,
  #000000 5%,
  #E4C5A4 30%,
  #000000 100%
);
  padding: 4rem 2rem;
  color: white;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.leistungen-section-c {
  background: linear-gradient(
    135deg,
    #0da9a0 0%,
    #077187 50%,
    #043f3c 100%
  );
  padding: 4rem 2rem;
  color: white;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}



.leistung-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2rem;
}

.leistung-title {
  font-size: 2rem;
  color: #f9f6fe;
  text-align: left;
  font-weight: lighter;
  letter-spacing: 3px;
}

.leistung-content {
  font-size: 1rem;
  font-weight: lighter;
  color: #f9f6fe;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  letter-spacing: 2px;
}

.leistung-text {
    flex: 1;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 1rem;
  color: #f9f6fe;
  display: flex;            /* ← notwendig */
  flex-direction: column;
}

.leistung-bild {
  flex: 1;
}

.leistung-bild img {
  width: 100%;
  max-height: 250px; /* hier kannst du die Höhe anpassen */
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.leistung-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 1rem;
}

.leistung-akkordeon {
  width: 100%;
  max-width: 100%;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.6s ease;
  color: #f9f6fe;
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: lighter;
  color: #f9f6fe;
  cursor: pointer;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  gap: 0.5rem;
}


.accordion-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  font-weight: lighter;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #f9f6fe;
}

.accordion-content-b{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  font-weight: lighter;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #f9f6fe;
}


.accordion-item.active .accordion-content {
  max-height: 600px;
  padding-bottom: 1rem;
}

.accordion-item.active .accordion-content-b {
  max-height: 600px;
  padding-bottom: 1rem;
}

.Anwendung{
  font-size: larger;
}


.leistung-button {
  text-align: center;
}

.button-a {
  background-color: #e4c5af00;
  color: #f9f6fe;
  padding: 0.75rem 1.5rem;
  border: 1px solid #f9f6fe;
  font-size: medium;
  font-weight: 100;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.6s ease-in-out;
}

.button-b {
  background-color: #e4c5af00;
  color: #f9f6fe;
  padding: 0.75rem 1.5rem;
  border: 1px solid #f9f6fe;
  font-size: medium;
  font-weight: 100;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.6s ease-in-out;
}

.button-c {
  background-color: #e4c5af00;
  color: #f9f6fe;
  padding: 0.75rem 1.5rem;
  border: 1px solid #f9f6fe;
  font-size: medium;
  font-weight: 100;
  letter-spacing: 2px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

.button-a:hover {
  transform: scale(1.1);
  color: #E4C5A4;
  border-color: #E4C5A4;
}
.button-b:hover {
  transform: scale(1.1);
  color: #074F57;
  border-color: #074F57;
}

.button-c:hover {
  transform: scale(1.1);
  color: #E4C5A4;
  border-color: #E4C5A4;
}

/*GRID-LEISTUNGEN*/
.leistungen-extra {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #074F57, #000000);
  color: #1E1E1E;
}

.leistungen-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.leistungen-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #f9f6fe;
  letter-spacing: 2px;
  font-weight: lighter;
  text-align: left;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.leistung-item {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.leistung-item h2 {
  font-size: 1.4rem;
  font-weight: lighter;
  margin: 0;
}

@media (max-width: 900px) {
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .leistung-content {
    flex-direction: column;
  }

  @media (max-width: 768px) {
  .accordion-header {
    justify-content: center;
  }

  .leistung-footer {
    flex-direction: column;
    align-items: stretch;
  }
}
}

.datenschutz-section {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #074F57 50%,
    #000000 100%
  );
  padding: 4rem 2rem;
  color: #f9f6fe;
  text-align: left;
}

.datenschutz-title {
  font-size: 2.5rem;
  color: #f9f6fe;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.datenschutz-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bildnachweise-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #f9f6fe;
  padding: 0;
  overflow: hidden;
}

.bildnachweise-accordion summary {
  cursor: pointer;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  user-select: none;
  transition: background-color 0.3s ease;
  list-style: none;
}

.bildnachweise-accordion summary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.bildnachweise-accordion summary::-webkit-details-marker {
  display: none;
}

.bildnachweise-accordion p {
  padding: 1rem 2rem;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.impressum-section {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #074F57 50%,
    #000000 100%
  );
  padding: 4rem 2rem;
  color: #f9f6fe;
  text-align: left;
}

.impressum-title {
  text-align: center;
  font-size: 2.5rem;
  color: #f9f6fe;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.impressum-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}




.scroll-to-top {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background-color: #e4c5af;
  color: black;
  font-size: 1.5rem;
  text-align: center;
  line-height: 2rem;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 0.5;
  pointer-events: auto;
}

.scroll-to-top:hover {
  background-color: #d1b295;
  transform: scale(1.1);
}


/* === Cookie-Banner Basis === */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 500px;
  background-color: #074F57;
  backdrop-filter: blur(8px);
  border: 3px solid #E4C5A4;
  border-radius: 12px;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-family: sans-serif;
  transition: all 0.3s ease;
}

/* === Cookie-Logo === */
.cookie-logo {
  display: block;
  max-width: 50px;
  margin: 0 auto 10px;
}

/* === Cookie-Text === */

#cookie-banner {
  transition: all 0.3s ease-in-out;
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #f9f6fe;
}

.cookie-banner a {
  color: #E4C5A4;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #E4C5A4;
}

/* === Checkboxen === */
.cookie-options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 20px 0;
  gap: 10px;
  font-size: 0.9rem;
  color: #f9f6fe;
}

.cookie-options label {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* === Buttons Bereich === */
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 10px;
}

/* === Button Style allgemein === */
.cookie-buttons .btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

/* Akzeptieren */
.cookie-buttons .accept {
  background-color: #e4c5a400;
  color: #f9f6fe;
}

.cookie-buttons .accept:hover {
  background-color: #e4c5a4;
}

/* Ablehnen */
.cookie-buttons .decline {
  background-color: #e4c5a400;
  color: #f9f6fe;
}

.cookie-buttons .decline:hover {
  background-color: #E4C5A4;
}

/* Auswahl speichern */
.cookie-buttons .save {
  background-color: #e4c5a400;
  color: #f9f6fe;
}

.cookie-buttons .save:hover {
  background-color: #E4C5A4;
}

/* === Minimierter Button === */
.cookie-settings-button {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  padding: 10px 15px;
  background-color: #074F57;
  color: white;
  border: none;
  border-radius: 25px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999;
  font-size: 0.9rem;
  opacity: 0.5;
  /*display: none; /* initial versteckt */
}

.cookie-settings-button:hover {
  background-color: #E4C5A4;
  color: #000000;
  opacity: 1;
}

/* === Responsive für kleine Bildschirme === */
@media (max-width: 480px) {
  .cookie-banner {
    width: 90%;
    padding: 15px;
  }

  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-logo {
    max-width: 50px;
    margin: 0 auto 10px;
  }

  .cookie-banner p {
    text-align: center;
  }
}

/* === Overlay bei Cookie-Banner === */
.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 79, 87, 0.8); /* Dunkler halbtransparenter Hintergrund */
  backdrop-filter: blur(4px);
  z-index: 9998; /* unterhalb des Banners */
  transition: opacity 0.3s ease-in-out;
}

/* Optional: Overlay verstecken */
.cookie-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
