/* Schriftart einfügen */
@font-face {
  font-family: "Made Tommy";
  src: url(../fonts/MADE\ TOMMY\ Light_PERSONAL\ USE.otf);
}
/* Schriftart einfügen Ende */

body {
  background-image: url("../pics/background.jpg");
  background-size: cover; /* Deckt die gesamte Seite ab */
  background-repeat: no-repeat; /* Wiederholt das Bild nicht */
  background-attachment: fixed; /* Hintergrundbild bleibt fest, auch beim Scrollen */
  background-position: center; /* Zentriert das Bild */
  margin: 0; /* Entfernt den Standardabstand */
  padding: 0;
  height: 100vh; /* Stellt sicher, dass der Body die volle Höhe des Bildschirms einnimmt */
  font-family: "arial";
  
}

/*NAVBAR*/

/* Weißer Hintergrund und Schatten für die Navbar */
.navbar {
  background-color: #ffffff;
  
  padding: 10px 0;
}

/* Abstand zwischen den Menüelementen */
.navbar-nav .nav-item {
  margin: 0 10px;
}

/* Styling für Links */
.navbar-nav .nav-link {
  color: black;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: "Made Tommy";
}

/* Aktiver Link */
.navbar-nav .nav-link.active {
  font-weight: bold;
}

/* Mobile Ansicht: Zentriere den Text */
@media (max-width: 768px) {
  .navbar-nav .nav-item {
    text-align: center;
    margin: 5px 0;
  }
}



/*NAVBAR ENDE*/

/* HEADER */

.headerpic {
  display: flex; /* Flexbox für Zentrierung */
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren (wenn Höhe gesetzt ist) */
  height: 300px; /* Festgelegte Höhe für den Container */
  width: 100%; /* Volle Breite */
}

.headerpic img {
  padding-top: 65px;
  max-width: 20%; /* Bildgröße anpassen */
  height: auto; /* Proportionen beibehalten */
}

@media screen and (max-width: 375px) {
  .headerpic img {
    max-width: 80%; /* Bildgröße anpassen */
    padding-top: 10px;
    
  }
}

@media screen and (max-width: 430px) {
  .headerpic img {
    max-width: 80%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 360px) {
  .headerpic img {
    max-width: 90%;
    margin-top: 40px;
    
  }
}



/* HEADER ENDE */

/* ANWENDUNGEN */
.anwendungen {
  padding: 25px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.anwendungen-headline {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Made Tommy";
}

/* Dünne Linie unter der Überschrift */
.anwendungen-headline:after {
  content: ""; /* Erzeugt das Linien-Element */
  display: block;
  width: 100px; /* Länge der Linie */
  height: 2px; /* Dicke der Linie */
  background-color: black; /* Linienfarbe */
  margin: 10px auto 0; /* Zentriert und Abstand oben */
}

.accordion-item {
  border: 1px solid #ddd;
  margin: 10px auto 0;
  /*margin-bottom: 10px;*/
  max-width: 900px;
}

.accordion-button {
  background-color: #ffffff;
  color: black;
  font-weight: 600;
  font-family: "Made Tommy";
}

.accordion-button:hover {
  background-color: #f0f0f0;
}

.accordion-body {
  color: black;
  padding: 15px;
}

.accordion-body ul {
  list-style-type: disc;
  padding-left: 20px;
}

.accordion-body li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.blocksatzanwendungen{
  text-align: justify;
}

@media screen and (max-width: 375px) {
  .accordion-item {
    max-width: 80%;
    
  }
}

@media screen and (max-width: 375px) {
  .accordion {
    padding-right: 5px;
    padding-left: 1px;
  }
}



/* ANWENDUNGEN ENDE */

/*ÜBER MICH*/

.about {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 20px;
  padding: 20px;
}

/* Überschrift für die Über mich Seite */
.about-headline {
  text-align: center; /* Zentrierter Text */
  font-size: 1.6rem; /* Angemessene Schriftgröße */
  font-weight: 600; /* Mittlere Schriftstärke */
  color: black; /* Dezente Schriftfarbe */
  margin-bottom: 10px; /* Abstand zur Liste */
  margin-top: 10px;
  position: relative;
  padding-bottom: 10px; /* Platz für die Linie */
  padding-top: 25px;
  font-family: "Made Tommy";
}

/* Dünne Linie unter der Überschrift */
.about-headline:after {
  content: ""; /* Erzeugt das Linien-Element */
  display: block;
  width: 100px; /* Länge der Linie */
  height: 2px; /* Dicke der Linie */
  background-color: black; /* Linienfarbe */
  margin: 10px auto 0; /* Zentriert und Abstand oben */
}

/* Bild-Container */
.image-container {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

.circle-background {
  position: absolute;
  width: 420px;
  height: 380px;
  background-color: #3b3b3b;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  z-index: 1;
}

.profile-image {
  position: relative;
  z-index: 2;
  width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

/* Text-Container */
.info {
  flex: 1;
  max-width: 600px;
}

.info blockquote {
  font-style: italic;
  color: #444;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: black;
  font-family: "Made Tommy";
}

.info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: black;
}

.info ul li strong {
  font-weight: bold;
  color: #000;
}


@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .image-container {
    margin-bottom: 30px;
  }

  .info {
    max-width: 100%;
  }
}

@media screen and (max-width: 375px) {
  .container {
    justify-content: center;
    align-items: center;
  }
}

/* jz noch text alignen */



/*ÜBER MICH ENDE*/

/* LEISTUNGEN */
/* Überschrift für die Liste */
.service-list-headline {
  text-align: center; /* Zentrierter Text */
  font-size: 1.6rem; /* Angemessene Schriftgröße */
  font-weight: 600; /* Mittlere Schriftstärke */
  color: black; /* Dezente Schriftfarbe */
  margin-bottom: 10px; /* Abstand zur Liste */
  margin-top: 10px;
  position: relative;
  padding-bottom: 10px; /* Platz für die Linie */
  font-family: "Made Tommy";
}

/* Dünne Linie unter der Überschrift */
.service-list-headline:after {
  content: ""; /* Erzeugt das Linien-Element */
  display: block;
  width: 100px; /* Länge der Linie */
  height: 2px; /* Dicke der Linie */
  background-color: black; /* Linienfarbe */
  margin: 10px auto 0; /* Zentriert und Abstand oben */
}

/* Voller Hintergrundbereich */
.service-list {
  width: 100%;
  margin: 0;
  padding: 20px 0; /* Vertikales Padding */
  background: #fff; /* Weißer Hintergrund */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
}

/* Zentrierte Liste */
.service-list ul {
  list-style: none; /* Entfernt Punkte */
  margin: 0 auto; /* Zentriert die Liste horizontal */
  padding: 0;
  max-width: 900px; /* Maximale Breite der Liste */
}

/* Einzelne Listenelemente */
.service-list li {
  display: flex;
  justify-content: space-between; /* Abstand zwischen Service und Preis */
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee; /* Trennlinie zwischen Einträgen */
  font-size: 1rem;
}

/* Letztes Element ohne Trennlinie */
.service-list li:last-child {
  border-bottom: none;
}

/* Massageart (Service-Name) */
.service {
  font-weight: 600;
  color: black;
  flex: 1; /* Nimmt verfügbaren Platz ein */
}

/* Preis */
.price {
  font-weight: bold;
  color: black;
  margin-left: 20px;
  text-align: right;
  white-space: nowrap; /* Verhindert Zeilenumbrüche beim Preis */
}

/* Separator (optional, falls du eine Linie willst) */
.separator {
  flex-grow: 1; /* Trennt Service und Preis flexibel */
  height: 1px;
  margin: 0 10px;
  background: #ddd;
}

/* Hover-Effekt für Listenelemente */
.service-list li:hover {
  background: #f9f9f9;
  transition: 0.3s ease;
}

/* RESPONSIVE DESIGN */

/* Tablets (768px und kleiner) */
@media (max-width: 768px) {
  .service-list ul {
    padding: 0 20px; /* Mehr Platz an den Seiten auf Tablets */
  }

  .service-list li {
    flex-direction: column; /* Service und Preis untereinander */
    align-items: flex-start;
    padding: 10px;
  }

  .service {
    margin-bottom: 5px;
  }

  .price {
    margin-left: 0;
    text-align: left;
  }

  .separator {
    display: none; /* Separator ausblenden */
  }
}

/* Smartphones (480px und kleiner) */
@media (max-width: 480px) {
  .service-list ul {
    padding: 0 10px; /* Weniger seitlicher Abstand */
  }

  .service-list li {
    font-size: 0.9rem;
    padding: 8px;
  }

  .service {
    font-size: 1rem;
  }

  .price {
    font-size: 1rem;
  }
}
/* Stil für den Hinweis unter der Liste */
.service-note {
  text-align: center; /* Zentriert den Text */
  font-size: 1rem; /* Angemessene Schriftgröße */
  margin-top: 1.5rem; /* Abstand zur Liste */
  color: #555; /* Dezente Farbe */
  line-height: 1.5; /* Angenehmer Zeilenabstand */
}

/* LEISTUNGEN ENDE*/

/* FRAGEN UND ANTWORTEN */
/* Überschrift für FAQ */
.faq-headline {
  text-align: center;
  font-size: 1.8rem; /* Angemessene Größe */
  font-weight: 600; /* Etwas fetter */
  position: relative;
  font-family: "Made Tommy";
}

.faq-headline:after {
  content: "";
  display: block;
  width: 60px; /* Länge der Linie */
  height: 2px; /* Dicke der Linie */
  background-color: black; /* Farbe der Linie */
  margin: 0.5rem auto 0; /* Zentriert und Abstand zur Überschrift */
  margin-bottom: 20px;
}

/* Allgemeines Styling für den FAQ-Bereich */
.faq {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 50px;
}

@media screen and (max-width: 375px) {
  .faq {
    max-width: 90%; /* Bildgröße anpassen */
  }
}

@media screen and (max-width: 430px) {
  .faq {
    max-width: 80%;
  }
}

/* Styling für die Frage-Buttons */
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1em;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}

/* Styling für den Pfeil */
.faq-question .arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
  transition: transform 0.3s ease;
}

/* Wenn Antwort sichtbar ist, Pfeil drehen */
.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

/* Styling für die Antworten */
.faq-answer {
  display: none;
  padding: 10px 0;
  font-size: 1em;
  color: black;
}

/* Antwort anzeigen, wenn aktiv */
.faq-item.active .faq-answer {
  display: block;
}


@media screen and (max-width: 375px) {
  .faq-question {
    color:black;
    
  }
}

@media screen and (max-width: 430px) {
  .faq-question {
    color:black;
    
  }
}


/* KONTAKT */
/* Überschrift für CONTACT-Bereich */
.contact-headline {
  text-align: center;
  font-size: 1.8rem; /* Angemessene Größe */
  font-weight: 600; /* Etwas fetter */
  margin: 2rem 0 1rem; /* Abstände oben und unten */
  padding-top: 2rem;
  position: relative;
  font-family: "Made Tommy";
}

.contact-headline:after {
  content: "";
  display: block;
  width: 60px; /* Länge der Linie */
  height: 2px; /* Dicke der Linie */
  background-color: black; /* Farbe der Linie */
  margin: 0.5rem auto 0; /* Zentriert und Abstand zur Überschrift */
  margin-bottom: 20px;
}

.contact-info {
  position: relative;
  line-height: 1.5;
}

.contact-info a {
  color: black;
  font-family: "Made Tommy";
}

.contact-info:before {
  position: absolute;
}

.contact-map-iframe {
  width: 100%;
  height: 435px;
  margin-bottom: 10px;
  border: 1px solid #aaaaaa;
}

/* Allgemeines Styling für den CONTACT-Bereich */
.contact {
  background: #fff; /* Weißer Hintergrund */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sanfter Schatten */
  padding-bottom: 25px;
}
.contact-item {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 10px;
}

/* Styling für das Kontaktformular */

.contact-form {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 30px;
}

.contact-form-item input,
.contact-form-item select,
.contact-form-item option,
.contact-form-item textarea {
  width: 100%;
  padding: 7px;
  margin-bottom: 20px;
  float: left;
}


@media screen and (max-width: 375px) {
  .contact-info  {
    text-align: center;
    margin:5px;
  }
}

@media screen and (max-width: 430px) {
  .contact-info   {
    text-align: center;
    margin:5px;
    
  }
}



/* FOOTER */
/* Allgemeines Styling für den FOOTER-Bereich */
.footer {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}

footer h5 {
  font-family: "Made Tommy";
  font-weight: 900;
}

.impressumheadline {
  font-family: "Made Tommy";
}

.Datenschutzbestimmungenheadline {
  font-family: "Made Tommy";
}

.mailfooter {
  color: black;
}


@media screen and (max-width: 375px) {
  .footer  {
    margin-left:20px;
    margin-right:20px;
    
  }
}

@media screen and (max-width: 375px) {
  .footer h5  {
    font-size: 20px;
    
  }
}

@media screen and (max-width: 430px) {
  .footer   {
    margin-left:20px;
    margin-right:25px;
    
  }
}