/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #2c3e50;
  --accent-color: #607a8f;
  --header-bg: #acc6dc;
  --hero-overlay: rgba(172, 198, 220, 0.77);
  --text-color: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #fff;
  --black: #000;
  --font-headline: 'Raleway', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--header-bg);
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 100%;
}

.logo {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--primary-color);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 280px;
}

.nav {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex: 1;
}

.nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--primary-color);
  padding: 5px 0;
  position: relative;
  text-decoration: none;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

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

.social-links {
  display: flex;
  gap: 15px;
  min-width: 280px;
  justify-content: flex-end;
}

.social-links a {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 400;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  color: var(--primary-color);
}

@media (max-width: 900px) {
  .header .container {
    padding: 15px 20px;
  }

  .logo {
    min-width: auto;
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav.open {
    display: flex;
  }

  .social-links {
    display: none;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: var(--primary-color);
  padding-bottom: 120px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 700px;
  text-align: left;
}

.hero h1 {
  font-family: var(--font-headline);
  font-size: 4rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero .tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background: var(--black);
  color: var(--white);
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.scroll-down:hover {
  opacity: 1;
  color: var(--primary-color);
}

.scroll-down svg {
  width: 14px;
  height: 8px;
  fill: var(--primary-color);
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 80px;
    min-height: 600px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero .tagline {
    font-size: 0.85rem;
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-gray {
  background: #5e5e5e;
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.text-center {
  text-align: center;
}

/* Gallery Section */
.gallery-section {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .gallery-item img {
    height: 300px;
  }

  .gallery-overlay {
    opacity: 1;
    padding: 20px;
  }
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-content {
  padding: 25px;
  text-align: center;
}

.card h3 {
  margin-bottom: 0.75rem;
  font-weight: 300;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card .btn {
  margin-top: 0;
}

/* Contact Section */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.contact-box h3 {
  margin-bottom: 1rem;
  font-weight: 300;
}

.contact-box p {
  margin-bottom: 0.5rem;
}

.contact-box a {
  color: inherit;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: var(--white);
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-info p {
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.footer-info a {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* Page Headers (for internal pages) */
.page-header {
  background: var(--accent-color);
  color: var(--white);
  padding: 150px 0 80px;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.page-header p {
  margin-bottom: 0;
  opacity: 0.9;
}

/* Service List */
.service-list {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.service-item:last-child {
  border-bottom: none;
}

.service-name {
  font-weight: 300;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.product-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-card img {
  max-height: 200px;
  max-width: 100%;
  object-fit: contain;
}

.product-card h3 {
  margin-bottom: 0.75rem;
}

.product-card p {
  color: var(--text-light);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

/* Gift Section */
.section-accent {
  background: var(--header-bg);
  padding: 60px 0;
}

/* Utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

/* ========================================
   LEISTUNGEN PAGE - Botanical Serenity
   ======================================== */

.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
}

.services-intro::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  margin: 2rem auto 0;
}

.services-intro p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Service Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Service Card */
.service-card {
  background: var(--white);
  border: 1px solid rgba(44, 62, 80, 0.08);
  padding: 45px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: cardReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--header-bg), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px -20px rgba(44, 62, 80, 0.2);
  border-color: transparent;
}

/* Decorative corner element */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--header-bg) 0%, transparent 70%);
  opacity: 0.3;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card:hover::after {
  opacity: 0.5;
  transform: scale(1.2);
}

/* Service Card Header */
.service-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.service-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(172, 198, 220, 0.2) 0%, rgba(96, 122, 143, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--accent-color);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--header-bg) 0%, var(--accent-color) 100%);
  transform: rotate(5deg) scale(1.05);
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-card-header h3 {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary-color);
  margin: 0;
  letter-spacing: 0.02em;
}

/* Service Items List */
.service-items {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.service-items li {
  padding: 12px 0;
  padding-left: 22px;
  position: relative;
  font-weight: 300;
  color: var(--text-color);
  border-bottom: 1px solid rgba(44, 62, 80, 0.06);
  transition: all 0.3s ease;
}

.service-items li:last-child {
  border-bottom: none;
}

.service-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--header-bg);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-items li::before {
  background: var(--accent-color);
}

.service-items li:hover {
  padding-left: 28px;
  color: var(--primary-color);
}

.service-items li:hover::before {
  transform: translateY(-50%) scale(1.3);
  background: var(--accent-color);
}

/* Feature Card (for special items like Beauty Hours) */
.service-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(172, 198, 220, 0.15) 0%, rgba(255, 255, 255, 1) 50%);
  text-align: center;
  padding: 55px 50px;
}

@media (max-width: 900px) {
  .service-card.featured {
    grid-column: span 1;
  }
}

.service-card.featured .service-card-header {
  flex-direction: column;
  gap: 15px;
}

.service-card.featured .service-icon {
  width: 80px;
  height: 80px;
}

.service-card.featured .service-icon svg {
  width: 40px;
  height: 40px;
}

.service-card.featured .service-items {
  display: inline-block;
  text-align: left;
}

.service-card.featured p {
  font-style: italic;
  color: var(--text-light);
  margin-top: 15px;
}

/* Gift Voucher Section */
.gift-section {
  background: linear-gradient(135deg, var(--header-bg) 0%, #9ab8d0 100%);
  position: relative;
  overflow: hidden;
}

.gift-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.gift-section h2 {
  color: var(--primary-color);
  position: relative;
}

.gift-section p {
  color: var(--primary-color);
  opacity: 0.85;
  position: relative;
}

.gift-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.gift-icon svg {
  width: 35px;
  height: 35px;
  stroke: var(--primary-color);
  stroke-width: 1.5;
  fill: none;
}

/* CTA Section for Services */
.services-cta {
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.services-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent-color));
}

.services-cta p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
