:root {
  --primary-color: #d2b48c;
  --secondary-color: #f4efe9;
  --accent-color: #bc8f8f;
  --text-color: #333;
  --light-text: #777;
  --white: #fff;
  --dark: #222;
  --border-radius: 4px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--dark);
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.divider {
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 15px auto;
}

section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

/* HEADER */
header {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.3s ease;
}

header.sticky {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo a {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 25px;
}

.nav-menu a {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a:hover::after, .nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
}

/* HERO SECTION */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.artistic-face {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  opacity: 0.8;
}

.artistic-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-content h1 {
  font-size: 58px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInDown 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content .btn {
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

.line-art-accent {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: auto;
  opacity: 0.3;
  z-index: 1;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  padding: 40px 30px 70px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-color);
}

.service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--light-text);
  margin-bottom: 25px;
}

.service-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.btn-service {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: var(--border-radius);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* PRICES SECTION */
#prices {
  background-color: var(--secondary-color);
  position: relative;
}

#prices::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}

#prices .container {
  position: relative;
  z-index: 2;
}

.logo-small {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

.logo-small img {
  height: 40px;
  width: auto;
}

.price-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.price-category {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  transform: translateY(0);
}

.price-category:hover {
  transform: translateY(-5px);
}

.price-category h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.service-name {
  font-weight: 500;
}

.price {
  font-weight: 600;
  color: var(--accent-color);
  font-size: 18px;
}

.price-update {
  text-align: right;
  font-style: italic;
  color: var(--light-text);
  margin-top: 30px;
}

/* ABOUT SECTION */
#about {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.about-bg-accent {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 30%;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.about-bg-accent img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left;
}

.about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.about-image:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 70%;
  height: 70%;
  background-color: var(--primary-color);
  opacity: 0.1;
  z-index: -1;
  border-radius: 4px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  position: relative;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

.line-art-small {
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 150px;
  opacity: 0.1;
  z-index: -1;
  transform: rotate(-15deg);
}

/* CONTACT SECTION */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-details {
  margin: 25px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 18px;
  color: var(--primary-color);
  width: 30px;
}

.contact-item a {
  color: var(--text-color);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(210, 180, 140, 0.2);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 4px;
}

.checkbox-group label {
  font-size: 14px;
  line-height: 1.4;
}

/* INSTAGRAM SECTION */
#instagram {
  padding: 80px 0;
  background-color: var(--white);
}

.instagram-title {
  text-align: center;
  margin-bottom: 40px;
}

.instagram-title h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.instagram-title p {
  color: var(--light-text);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.instagram-post {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--box-shadow);
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-post:hover img {
  transform: scale(1.05);
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 30px;
  transition: var(--transition);
}

.instagram-link i {
  margin-right: 8px;
  font-size: 20px;
}

.instagram-link:hover {
  color: var(--accent-color);
}

/* REVIEWS SECTION */
#reviews {
  background-color: var(--secondary-color);
  position: relative;
}

.reviews-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-top: 30px;
}

.review-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  max-width: 300px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-rating {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.review-card h4 {
  margin-top: 15px;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

/* FOOTER */
footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 30px;
  margin-right: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-info {
  margin: 15px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-info p {
  margin-bottom: 5px;
}

.footer-legal {
  text-align: center;
  margin-top: 15px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* MODAL STYLES */
.service-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  overflow-y: auto;
}

.modal-content {
  position: relative;
  background-color: white;
  margin: 50px auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  color: var(--dark);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 30px;
}

/* Neuer Block: Button am unteren Rand vom Modal */
.bottom-close {
  text-align: center;
  padding: 20px 0;
}
.close-modal-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.close-modal-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.service-detail {
  display: none;
}

.service-detail-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--secondary-color);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-detail-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.service-detail-header h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-detail-description p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.treatment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.treatment-card {
  background-color: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 20px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.treatment-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.treatment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.treatment-card-header h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.treatment-price {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 18px;
}

.treatment-card-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 15px;
}

.treatment-card-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.treatment-card-info span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--light-text);
  gap: 5px;
}

.treatment-card .btn.book-now-btn {
  display: inline-block;
  margin-top: auto;
  font-size: 14px;
  padding: 10px 20px;
  text-transform: uppercase;
}

.treatment-card .btn.book-now-btn:hover {
  background-color: var(--accent-color);
}

.treatment-benefits {
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 30px;
}

.treatment-benefits h3 {
  margin-bottom: 10px;
}

.treatment-benefits ul {
  list-style: disc;
  padding-left: 25px;
  color: var(--text-color);
}

/* COOKIE STYLES */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-button {
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.cookie-button.accept {
  background-color: var(--primary-color);
  color: white;
}

.cookie-button.necessary {
  background-color: #f1f1f1;
  color: #333;
}

.cookie-button.settings {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 50px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .artistic-face {
    width: 100%;
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding-top: 50px;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  section {
    padding: 60px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-bg-accent,
  .line-art-small,
  .line-art-accent {
    display: none;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .modal-content {
    margin: 20px auto;
  }

  .modal-body {
    padding: 20px;
  }

  .about-buttons {
    flex-direction: column;
  }

  .price-categories {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    gap: 30px;
  }
}
