/* Mobile First Styles */
body {
  font-family: 'Verdana', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
  color: #222;
}
.header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 950px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}
.logo img {
  height: 48px;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
}
.nav-toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #4db6b6;
  border-radius: 2px;
}
.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
  position: absolute;
  top: 64px;
  right: 1rem;
  min-width: 160px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 1rem;
}
.nav-links.open {
  display: flex;
}
.nav-links li a {
  color: #4db6b6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}
.section {
  padding: 3.5rem 1rem 3rem 1rem;
  max-width: 950px;
  margin: 2.5rem auto 2.5rem auto;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
.section:nth-of-type(even) {
  background: #f8fafd;
}
.section:nth-of-type(odd) {
  background: #ffffff;
}
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #008080;
  letter-spacing: 0.01em;
  text-align: center;
}
.hero-bg {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  height: 260px;
  background: #e0f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 32px 32px;
}
.hero-img {
  width: 100%;
  max-width: 700px;
  object-fit: cover;
  border-radius: 18px;
  opacity: 0.85;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.hero-content {
  margin-top: -120px;
  background: rgba(255,255,255,0.97);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  text-align: center;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-content h1 {
  color: #4db6b6;
  font-size: 2.3rem;
  margin-bottom: 0.7rem;
  margin-top: 2.7rem;
  
}
.btn {
  display: inline-block;
  background: #4db6b6;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 24px;
  border: none;
  margin: 0.5rem 0.3rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-outline {
  background: #fff;
  color: #4db6b6;
  border: 2px solid #4db6b6;
}
.btn:hover, .btn-outline:hover {
  background: #008080;
  color: #fff;
}
.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.about-img {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  object-fit: cover;
  background: #e0f7fa;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.treatments-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
.tab-btn {
  background: #e0f7fa;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 20px;
  font-size: 1rem;
  color: #008080;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.tab-btn.active, .tab-btn:hover {
  background: #4db6b6;
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.treatment-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.treatment-img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  object-fit: cover;
  background: #e0f7fa;
}
.price-tables {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.price-table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 270px;
  max-width: 350px;
  margin: 0 auto;
  transition: box-shadow 0.2s;
}
.price-table:hover {
  box-shadow: 0 8px 32px rgba(0,128,128,0.13);
}
.price-table h4 {
  color: #4db6b6;
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
}
.price-table th, .price-table td {
  padding: 0.5rem 0.3rem;
  text-align: left;
}
.price-table th {
  color: #008080;
  border-bottom: 2px solid #e0f7fa;
}
.price-table tr:not(:last-child) td {
  border-bottom: 1px solid #f0f0f0;
}
.price-table tr:hover td {
  background: #f8fafd;
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 350px;
}
.contact-form input, .contact-form textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #b2dfdb;
  font-size: 1rem;
}
.contact-form button {
  width: 100%;
}
.contact-info {
  font-size: 1.1rem;
  color: #008080;
}
.footer {
  background: #4db6b6;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
.footer a {
  color:#fff;
}

/* Desktop Styles */
@media (min-width: 700px) {
  .navbar {
    padding: 1rem 2rem;
  }
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    box-shadow: none;
    min-width: unset;
    padding: 0;
    gap: 2rem;
  }
  .section {
    padding: 4rem 2rem 3rem 2rem;
  }
  .about-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
  .about-img {
    margin-right: 2.5rem;
    width: 260px;
    height: 260px;
  }
  .treatment-info {
    flex-direction: row;
    align-items: flex-start;
  }
  .treatment-img {
    max-width: 340px;
    margin-right: 2rem;
  }
  .price-tables {
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
  }
  .contact-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

/* Section Abstand auf Mobile */
@media (max-width: 700px) {
  .section {
    padding: 2.2rem 0.5rem 2rem 0.5rem;
    margin: 1.2rem 0;
    border-radius: 10px;
  }
  .hero-bg {
    height: 140px;
    border-radius: 0 0 18px 18px;
  }
  .hero-content {
    margin-top: -60px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    border-radius: 10px;
  }
}

/* Technik-Bilder Haarentfernung */
.technique-images {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin: 2rem 0 2.5rem 0;
}
.technique-images img {
  max-width: 140px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.technique-images span {
  display: block;
  margin-top: 0.5rem;
  color: #008080;
  font-size: 1em;
}

/* Gesichtsbehandlungs-Section modern */
.facial-treatments-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.facial-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.facial-title {
  color: #36b6b6;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  margin-top: 0;
  font-weight: 700;
}
.facial-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: block;
}
.facial-text {
  flex: 2;
}
.facial-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 800px) {
  .facial-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .facial-text {
    flex: 2;
    min-width: 320px;
  }
  .facial-img {
    flex: 1;
    min-width: 220px;
    justify-content: flex-end;
  }
}

/* Kontakt-Icons-Liste modern */
.contact-icons-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: center;
}
.contact-icon-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.15rem;
  color: #008080;
  font-weight: 500;
  background: #f8fafd;
  border-radius: 12px;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s;
}
.contact-icon-row:hover {
  background: #e0f7fa;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e0f7fa;
  color: #008080;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-decoration: none;
}
.contact-icon:hover {
  background: #4db6b6;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,128,128,0.13);
}
@media (min-width: 700px) {
  .contact-icons-list {
    flex-direction: row;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
  }
  .contact-icon-row {
    flex-direction: column;
    align-items: center;
    min-width: 160px;
    font-size: 1.08rem;
    padding: 1.1rem 1.2rem;
    gap: 0.7rem;
  }
}

.nowrap {
  white-space: nowrap;
}

.facial-treatments-modern {
  margin: 0 auto;
  max-width: 600px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 2.2rem 1.2rem 2.2rem 1.2rem;
}
.facial-treatment-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 1.13rem;
  font-weight: 600;
  color: #008080;
  margin-top: 1.7em;
  margin-bottom: 0.2em;
}
.facial-treatment-title {
  flex: 1 1 60%;
  text-align: left;
  font-weight: 600;
  font-size: 1.13rem;
}
.facial-treatment-price {
  flex: 0 0 auto;
  text-align: right;
  font-weight: 600;
  font-size: 1.13rem;
  color: #4db6b6;
  min-width: 90px;
}
.facial-treatment-desc {
  font-size: 1rem;
  color: #222;
  margin-bottom: 0.5em;
  margin-top: 0.1em;
  line-height: 1.6;
}
.facial-treatment-footnote {
  display: block;
  font-size: 0.93em;
  color: #888;
  margin-top: 0.2em;
}
.facial-treatment-upgrade {
  color: #e49c3c;
  font-size: 1.02rem;
  margin-bottom: 0.7em;
  margin-top: 0.7em;
  font-weight: 500;
}
.facial-treatment-upgrade span {
  color: #888;
  font-size: 0.98em;
  font-weight: 400;
}
.facial-treatment-extras {
  margin-top: 2.2em;
  background: #f8fafd;
  border-radius: 10px;
  padding: 1.1em 1em 1.3em 1em;
}
.facial-treatment-extras-title {
  color: #e49c3c;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.2em;
}
.facial-treatment-extras-desc {
  color: #888;
  font-size: 0.98rem;
  margin-bottom: 0.7em;
}
.facial-extras-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.2em;
}
.facial-extras-table td {
  font-size: 1rem;
  padding: 0.2em 0.3em;
  color: #222;
}
.facial-extras-table td:last-child {
  text-align: right;
  color: #4db6b6;
  font-weight: 600;
}
@media (max-width: 600px) {
  .facial-treatments-modern {
    padding: 1.2rem 0.3rem 1.2rem 0.3rem;
  }
  .facial-treatment-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1em;
  }
  .facial-treatment-price {
    text-align: left;
    margin-top: 0.1em;
    min-width: unset;
  }
}

.contact-icon-row-wide {
  width: 320px;
  max-width: 100%;
  min-width: 220px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  justify-content: flex-start;
}
@media (max-width: 700px) {
  .contact-icon-row-wide {
    width: 100%;
    min-width: unset;
  }
} 