/* ===== CUSTOM PROPERTIES ===== */
:root {
  --green: #ACC824;
  --green-dark: #8FA51D;
  --green-light: #c8e04a;
  --green-bg: #f4f7e6;
  --text: #1B1D1F;
  --text-light: #555;
  --text-muted: #888;
  --bg: #FFFFFF;
  --bg-alt: #F9FAF5;
  --bg-dark: #1B1D1F;
  --border: #E5E7EB;
  --shadow: 0 2px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-height: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

section {
  padding: 100px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--text);
  font-weight: 600;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  border: 2px solid var(--green);
  color: var(--text);
}
.btn-outline:hover { background: var(--green); color: var(--text); transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: var(--text);
  font-weight: 600;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-dark {
  background: var(--bg-dark);
  color: #fff;
  font-weight: 600;
}
.btn-dark:hover { background: #333; transform: translateY(-2px); }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: 0 1px 8px rgba(0,0,0,.04); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--green-bg);
}
.nav-cta {
  margin-left: 8px;
  padding: 10px 24px !important;
  background: var(--green) !important;
  color: var(--text) !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-dark) !important; color: #fff !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, var(--green-bg) 100%);
  padding-top: var(--nav-height);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 24px;
}
.hero-badge span {
  background: var(--green);
  color: var(--text);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .7rem;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--green-dark);
}
.hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-meta-item strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--green-dark);
}
.hero-meta-item span {
  font-size: .85rem;
  color: var(--text-muted);
}
.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: left center;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--green);
  opacity: .15;
  border-radius: 50%;
  z-index: -1;
}
.hero-image::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--green);
  opacity: .3;
  border-radius: 50%;
  z-index: -1;
}

/* ===== HOURS STRIP ===== */
.hours-strip {
  background: var(--bg-dark);
  color: #fff;
  padding: 16px 0;
}
.hours-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: .9rem;
}
.hours-strip svg { width: 18px; height: 18px; color: var(--green); }
.hours-strip a {
  color: var(--green);
  font-weight: 600;
  transition: color var(--transition);
}
.hours-strip a:hover { color: var(--green-light); }

/* ===== SERVICES / LEISTUNGEN ===== */
#leistungen { background: var(--bg); }
.services-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 4px;
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn.active,
.tab-btn:hover {
  background: #fff;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.tab-btn.active { font-weight: 600; }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.service-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  gap: 16px;
}
.service-item:hover { background: var(--green-bg); transform: translateX(4px); }
.service-name {
  font-weight: 600;
  font-size: .95rem;
}
.service-desc {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.service-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
  white-space: nowrap;
}

/* Men Feature */
.men-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.men-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.men-feature-content { padding: 40px; }
.men-feature-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.men-feature-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ===== GUTSCHEIN ===== */
.gutschein-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.gutschein-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--green);
  opacity: .06;
  border-radius: 50%;
}
.gutschein-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gutschein-inner img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.gutschein-content .section-title { color: #fff; }
.gutschein-content p {
  color: rgba(255,255,255,.75);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ===== PRAXIS ===== */
#praxis { background: var(--bg-alt); }
.praxis-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.praxis-gallery .gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.praxis-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.praxis-gallery .gallery-item:hover img { transform: scale(1.05); }
.praxis-gallery .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.praxis-gallery .gallery-item:nth-child(1) img { min-height: 400px; }

/* ===== AKTUELLES ===== */
#aktuelles { background: var(--bg); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.news-card-content { padding: 24px; }
.news-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-card-content p {
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== ONLINESHOP ===== */
#onlineshop {
  background: linear-gradient(135deg, var(--green-bg) 0%, #fff 100%);
}
.shop-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shop-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}
.shop-card-content { padding: 48px; }
.shop-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.shop-card-content .shop-subtitle {
  color: var(--green-dark);
  font-weight: 500;
  font-size: .9rem;
  margin-bottom: 20px;
}
.shop-card-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ===== BESUCH / KONTAKT ===== */
#besuch {
  background: var(--bg);
}
.besuch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--green-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--green-dark); }
.contact-item h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item p,
.contact-item a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--green-dark); }
.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  padding: 48px 0 32px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo img {
  height: 40px;
  filter: brightness(10);
  opacity: .8;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: .85rem; width: 100%; text-align: center; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { margin: 0 auto 36px; }
  .hero-buttons { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .men-feature { grid-template-columns: 1fr; }
  .gutschein-inner { grid-template-columns: 1fr; }
  .shop-card { grid-template-columns: 1fr; }
  .shop-card img { min-height: 250px; }
  .besuch-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .praxis-gallery { grid-template-columns: 1fr 1fr; }
  .praxis-gallery .gallery-item:nth-child(1) img { min-height: 280px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  section { padding: 64px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    box-shadow: -4px 0 24px rgba(0,0,0,.1);
    transition: right var(--transition);
    align-items: stretch;
  }
  .nav-links.open { right: 0; }
  .nav-links a { padding: 14px 16px; font-size: 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.5rem); }
  .hero-meta { gap: 24px; }
  .hero-image::before, .hero-image::after { display: none; }

  .services-tabs { gap: 2px; }
  .tab-btn { padding: 10px 16px; font-size: .85rem; }
  .service-item { padding: 16px; }

  .news-grid { grid-template-columns: 1fr; }
  .praxis-gallery { grid-template-columns: 1fr; }
  .praxis-gallery .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .praxis-gallery .gallery-item:nth-child(1) img { min-height: 220px; }

  .gutschein-section { padding: 60px 0; }
  .footer .container { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-meta { flex-direction: column; gap: 16px; align-items: center; }
  .contact-buttons { flex-direction: column; }
}
