/*=============== HERO SECTION ===============*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/hero_salon.jpg') center/cover no-repeat;
    filter: brightness(0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--secondary-color);
}

.hero__content {
    max-width: 800px;
    padding: 0 1rem;
}

.hero__title {
    font-size: 2.5rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: 1.25rem;
    font-family: var(--body-font);
    line-height: 1.5;
}

/*=============== HERO BUTTON ===============*/
.hero__button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


@media screen and (max-width: 768px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }
}

/*=============== BUTTON STYLES ===============*/
.hero__buttons {
    margin-top: 1.5rem; /* Abstand nach oben */
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    font-size: 1rem;
    text-align: center;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    margin: 0.5rem;
}

/* Primärer Button */
.btn-primary {
    background-color: #f3a683;
}

.btn-primary:hover {
    background-color: transparent;
}

/* Sekundärer Button */
.btn-secondary {
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: #f3a683;
}

/*=============== IMAGE WITH TEXT SECTION ===============*/
.image-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1rem;
    gap: 3rem;
}

.image-text__block {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 2rem;
}

.image-text__block.reverse {
    flex-direction: row-reverse;
}

.image-text__image {
    width: 50%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.image-text__content {
    width: 50%;
    max-width: 500px;
    text-align: center;
}

.image-text__title {
    font-size: 2rem;
    font-family: var(--heading-font);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.image-text__description {
    font-size: 1.125rem;
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
}

@media screen and (max-width: 768px) {
    .image-text__block {
        flex-direction: column;
    }

    .image-text__block.reverse {
        flex-direction: column;
    }

    .image-text__image {
        width: 100%;
    }

    .image-text__content {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }

    .image-text__title {
        font-size: 1.75rem;
    }

    .image-text__description {
        font-size: 1rem;
    }
}

/*=============== ABOUT SALON SECTION ===============*/
.about-salon {
    padding: 4rem 1rem;
    text-align: center;
    background-color: var(--background-color);
    color: var(--text-color);
}

.about-salon__content {
    max-width: 800px;
    margin: 0 auto;
}

.about-salon__title {
    font-size: 2.5rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-salon__description {
    font-size: 1.25rem;
    font-family: var(--body-font);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-salon__button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    font-family: var(--body-font);
    font-weight: var(--font-semi-bold);
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color var(--transition-speed), transform 0.3s ease-in-out;
}

.about-salon__button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(75, 33, 66, 0.8);
}

@media screen and (max-width: 768px) {
    .about-salon__title {
        font-size: 2rem;
    }

    .about-salon__description {
        font-size: 1rem;
    }

    .about-salon__button {
        font-size: 1rem;
    }
}


/*=============== BEAUTY SERVICES SECTION ===============*/
.services {
    padding: 4rem 1rem;
    background-color: var(--background-color);
    text-align: center;
    color: var(--text-color);
}

.services__container {
    max-width: 1400px; /* Breitere Section */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.services__title {
    font-size: 2.5rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Cards in einer Reihe */
    gap: 2rem;
}

.service {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    display: flex;
    flex-direction: column;
    justify-content: center; /* Button mittig */
    align-items: center; /* Button zentrieren */
    text-align: center; /* Inhalt zentrieren */
}

.service__icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service__title {
    font-size: 1.5rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service__description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Abstand vor dem Button */
}

.service__button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.service__button:hover {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 1200px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Cards in einer Reihe */
    }
}

@media screen and (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr; /* 1 Card pro Reihe */
    }
}

/*=============== RESERVATION SECTION ===============*/
.reservation {
    position: relative;
    width: 100%;
    height: 300px; /* Geringere Höhe als ein Hero-Bereich */
    background: url('../images/reservation_bg.jpg') center/cover no-repeat;
    filter: brightness(0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--secondary-color);
    padding: 1rem; /* Zusätzlicher Abstand für kleinere Bildschirme */
}

.reservation__content {
    max-width: 800px;
    padding: 1rem;
    font-family: var(--heading-font);
}

.reservation__title {
    font-size: 2rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 0.5rem;
}

.reservation__subtitle {
    font-size: 1.125rem;
    font-weight: var(--font-regular);
    margin-bottom: 0.5rem;
}

.reservation__info {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0.3rem 0;
}

.reservation__link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: var(--font-semi-bold);
    transition: color var(--transition-speed);
}

.reservation__link:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 768px) {
    .reservation {
        height: 250px; /* Leicht reduzierte Höhe auf Smartphones */
    }

    .reservation__title {
        font-size: 1.5rem;
    }

    .reservation__subtitle {
        font-size: 1rem;
    }

    .reservation__info {
        font-size: 0.875rem;
    }
}


/*=============== SALON & TEAM SECTION ===============*/
.salon-team {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--background-color);
}

.salon-team__title {
    font-size: 2rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
    color: var(--text-color);
}

.salon-team__description {
    font-size: 1.1rem;
    font-family: var(--body-font);
    line-height: 1.6;
    margin: 0 auto 2rem;
    color: var(--text-color);
    max-width: 800px; /* Begrenzte Breite */
}

.salon-team__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery__item {
    position: relative;
}

.gallery__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.gallery__image:hover {
    transform: scale(1.05);
}

.gallery__caption {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
    text-align: center;
}

/*=============== PRICES SECTION ===============*/
.prices {
    padding: 4rem 2rem;
    background-color: var(--background-color);
}

.prices__title {
    text-align: center;
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.prices__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price__item {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.price__item h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price__item p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.price__item span {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}


/*=============== INHALTSVERZEICHNIS ===============*/
.toc {
    background-color: white;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.toc__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.toc__list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.toc__link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: #e0e0e0;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.toc__link:hover {
    background-color: #d4d4d4;
}

/*=============== RESPONSIVE DESIGN ===============*/
@media screen and (max-width: 768px) {
    .toc__title {
        font-size: 1.25rem;
    }

    .toc__link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .toc {
        padding: 1.5rem;
    }

    .toc__title {
        font-size: 1.1rem;
    }

    .toc__list {
        flex-direction: column;
        align-items: center;
    }

    .toc__link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
}

/*=============== KONTAKT & INFOS ===============*/

/* Grid Layout */
.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem; /* Weniger Abstand zwischen den Karten */
    justify-content: center; /* Karten horizontal zentrieren */
    align-items: stretch; /* Karten auf gleiche Höhe ausrichten */
    margin: 2rem auto;
    max-width: 1200px; /* Begrenzung für Desktop */
}

/* Karten Styling */
.contact__card {
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    width: 100%; /* Einheitliche Breite */
    display: flex;
    flex-direction: column; /* Inhalt vertikal anordnen */
    justify-content: space-between; /* Gleichmäßige Verteilung innerhalb der Karte */
}

.contact__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.contact__card p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #555;
}

.contact__card a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact__card a:hover {
    color: #0056b3;
}

/* Karte */
.contact__map iframe {
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin: 0 auto;
    display: block;
}

/* Klimaneutral Sektion */
.climate__content {
    background-color: #e0f7fa;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    text-align: center;
    max-width: 1200px;
}

.climate__title {
    font-size: 1.8rem;
    color: #00796b;
    font-weight: bold;
    margin-bottom: 1rem;
}

.climate__content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr; /* Karten auf einem einzigen Spaltenlayout */
    }

    .contact__map iframe {
        height: 300px;
    }

    .contact__card {
        max-width: 90%; /* Kartenbreite für kleinere Bildschirme */
        margin: 0 auto; /* Zentrierung auf mobilen Geräten */
    }
}


/* ======= ANGEBOTE SECTION (Hintergrund & Abstände) ======= */
.angebote {
  padding: 2.8rem 0 2.3rem 0;
  background: linear-gradient(110deg, #f6eaf7 60%, #f6d8ec 100%);
}

/* ======= SPEZIALANGEBOT (Wellness für Freund:innen & Paare) ======= */
.special-offer__container {
  max-width: 800px;
  margin: 0 auto 2.4rem auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(75,33,66,.08);
  background: #fff;
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.special-offer__icon {
  flex: 0 0 auto;
  font-size: 3.5rem;
  color: #4B2142;
  background: #f6eaf7;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(75,33,66,.10);
}

.special-offer__content {
  flex: 1 1 300px;
  min-width: 0;
}

.special-offer__title {
  font-size: 1.7rem;
  color: #4B2142;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  word-break: break-word;
}

.special-offer__subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
  color: #654f5f;
  word-break: break-word;
}

.special-offer__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem 0;
}

.special-offer__list li {
  padding-left: 1.6em;
  position: relative;
  margin-bottom: 0.5em;
  font-size: 1.04rem;
  word-break: break-word;
}

.special-offer__list li::before {
  content: "✓";
  color: #4B2142;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.1em;
}

.special-offer__button {
  display: inline-block;
  margin-top: 0.7rem;
  background: #4B2142;
  color: #fff;
  font-size: 1.05rem;
  padding: 0.72em 1.6em;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(75,33,66,0.09);
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.special-offer__button:hover {
  background: #32122d;
  box-shadow: 0 4px 16px rgba(75,33,66,0.18);
}

/* ======= HEADSPA-UPGRADE (Head Spa Angebote) ======= */
.headspa-upgrade__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 3rem;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(75,33,66,0.08);
  background: #fff;
  overflow: hidden;
  padding: 0;
}

.headspa-upgrade__image-wrapper {
  flex: 0 0 380px;
  max-width: 420px;
  min-width: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #eee;
}

.headspa-upgrade__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-right: 1px solid #e6dae7;
}

.headspa-upgrade__img-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  background: linear-gradient(0deg, rgba(75,33,66,0.84) 75%, rgba(75,33,66,0.25) 100%);
  font-size: 1.05rem;
  padding: 2.2rem 1.2rem 1.3rem 1.2rem;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.headspa-upgrade__text {
  flex: 1 1 300px;
  padding: 2.8rem 2rem 2.8rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.headspa-upgrade__text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #4B2142;
  margin-bottom: 1.4rem;
  line-height: 1.23;
}

.headspa-upgrade__offer {
  margin-bottom: 1.5rem;
}

.headspa-upgrade__offer h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.2rem 0;
  color: #4B2142;
}

.headspa-upgrade__offer p {
  margin: 0;
  color: #4B2142;
  font-size: 1.05rem;
}

.headspa-upgrade__price {
  display: inline-block;
  font-weight: 700;
  color: #4B2142;
  font-size: 1.08rem;
  margin-top: 0.3em;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1100px) {
  .headspa-upgrade__container {
    max-width: 98vw;
  }
}

@media (max-width: 950px) {
  .angebote {
    padding: 1.5rem 0 1.3rem 0;
  }
  .special-offer__container,
  .headspa-upgrade__container {
    max-width: 98vw;
    margin-left: auto;
    margin-right: auto;
    border-radius: 14px;
  }
  .headspa-upgrade__container {
    flex-direction: column;
    gap: 0;
    box-shadow: 0 2px 14px rgba(75,33,66,0.13);
  }
  .headspa-upgrade__image-wrapper {
    min-width: 100%;
    max-width: 100%;
    flex: unset;
    min-height: 340px;
    border-radius: 18px 18px 0 0;
  }
  .headspa-upgrade__image {
    min-height: 300px;
    max-height: 380px;
    border-right: none;
    border-bottom: 1px solid #e6dae7;
    border-radius: 18px 18px 0 0;
  }
  .headspa-upgrade__img-text {
    font-size: 1rem;
    padding: 1.1rem 0.8rem 0.9rem 0.8rem;
    border-radius: 0 0 18px 18px;
  }
  .headspa-upgrade__text {
    padding: 2rem 1.2rem 2rem 1.2rem;
  }
}

@media (max-width: 800px) {
  .special-offer__container {
    max-width: 97vw;
    padding: 2rem 1.2rem;
    gap: 1.2rem;
  }
}

@media (max-width: 650px) {
  .angebote {
    padding: 1.2rem 0 0.6rem 0;
  }
  .special-offer__container,
  .headspa-upgrade__container {
    padding-left: 0.3rem !important;
    padding-right: 0.3rem !important;
    margin-bottom: 1.5rem;
  }
  .special-offer__container {
    flex-direction: column;
    align-items: flex-start;
    width: 98vw;
    border-radius: 14px;
    box-sizing: border-box;
    margin: 0 auto 1.5rem auto;
    gap: 0.8rem;
    padding: 1.2rem 0.6rem !important;
  }
  .special-offer__icon {
    margin-bottom: 0.4rem;
    width: 64px;
    height: 64px;
    font-size: 2.3rem;
  }
  .special-offer__title {
    font-size: 1.18rem;
  }
  .special-offer__subtitle {
    font-size: 0.97rem;
  }
  .special-offer__list li {
    font-size: 0.98rem;
  }
  .special-offer__button {
    font-size: 0.97rem;
    padding: 0.65em 1.25em;
  }
  .headspa-upgrade__container {
    border-radius: 11px;
    box-shadow: 0 1px 7px rgba(75,33,66,0.11);
  }
  .headspa-upgrade__image {
    min-height: 180px;
    max-height: 200px;
    border-radius: 11px 11px 0 0;
  }
  .headspa-upgrade__img-text {
    font-size: 0.99rem;
    border-radius: 0 0 11px 11px;
    padding: 0.85rem 0.55rem 0.7rem 0.7rem;
  }
  .headspa-upgrade__text {
    padding: 1rem 0.5rem 1.2rem 0.5rem;
  }
  .headspa-upgrade__text h2 {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
  }
  .headspa-upgrade__offer h3 {
    font-size: 1rem;
  }
}
