/* =============================================
   AYURVEDA MASSAGE HAMBURG — STYLE.CSS
   Warme, natürliche Farben — Wellness-Thema
   ============================================= */

/* === CSS Custom Properties === */
:root {
  --color-primary: #8B6914;
  --color-primary-dark: #6B4F0E;
  --color-primary-light: #C9A84C;
  --color-secondary: #2E5E4E;
  --color-secondary-light: #3D7A65;
  --color-accent: #D4A853;
  --color-bg: #FFFCF5;
  --color-bg-warm: #F9F3E8;
  --color-bg-section: #F5EDE0;
  --color-text: #3A3028;
  --color-text-light: #6B5E50;
  --color-text-muted: #8A7D6F;
  --color-white: #FFFFFF;
  --color-border: #E8DFD0;
  --color-sale-bg: #2E5E4E;
  --color-sale-text: #FFFFFF;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(58,48,40,0.08);
  --shadow-md: 0 4px 12px rgba(58,48,40,0.1);
  --shadow-lg: 0 8px 30px rgba(58,48,40,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.3;
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* === Container === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === Sale Banner (sticky, над навигацией) === */
.sale-banner {
  background: var(--color-sale-bg);
  color: var(--color-sale-text);
  text-align: center;
  padding: 0.6rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.sale-banner span {
  font-weight: 500;
}

.sale-banner form {
  display: inline;
}

.sale-banner button {
  background: var(--color-accent);
  color: var(--color-text);
  border: none;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.sale-banner button:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

/* === Navigation === */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 40px;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-logo .logo-icon {
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  position: relative;
  transition: color var(--transition);
}

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

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

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

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(58,48,40,0.45), rgba(58,48,40,0.65));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  padding: 2rem;
  max-width: 750px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-small {
  height: 45vh;
  min-height: 300px;
  max-height: 450px;
}

.hero-small .hero-content h1 {
  font-size: 2.4rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

/* === Sections === */
.section {
  padding: 5rem 0;
}

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

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

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 1rem auto 1.5rem;
  border: none;
}

/* === Services Grid === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

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

/* === Philosophy / Two-column layout === */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col-image {
  border-radius: var(--radius-md);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.two-col-text h2 {
  margin-bottom: 1rem;
}

.two-col-text p {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

/* === Parallax Banner === */
.parallax-section {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

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

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46,94,78,0.75);
  z-index: 2;
}

.parallax-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
}

.parallax-content h2 {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.parallax-content p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* === Blog Cards === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-body .blog-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.blog-card-body h3 {
  margin-bottom: 0.6rem;
}

.blog-card-body h3 a {
  color: var(--color-text);
  transition: color var(--transition);
}

.blog-card-body h3 a:hover {
  color: var(--color-primary);
}

.blog-card-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.read-more {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.read-more:hover {
  color: var(--color-primary-dark);
}

/* === Breadcrumbs === */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0;
  margin: 0;
}

.breadcrumbs li::after {
  content: '›';
  margin-left: 0.4rem;
  color: var(--color-text-muted);
}

.breadcrumbs li:last-child::after {
  content: '';
}

.breadcrumbs a {
  color: var(--color-text-muted);
}

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

/* === Article Content === */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.article-content h1 {
  margin-bottom: 0.5rem;
}

.article-meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary-dark);
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.article-content p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.article-content ul, .article-content ol {
  color: var(--color-text-light);
  font-size: 1.05rem;
}

.article-image {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

.article-cta {
  background: var(--color-bg-warm);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-cta p {
  margin-bottom: 0.5rem;
}

/* === Contact Page === */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

.contact-section h1 {
  margin-bottom: 1rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 1rem 2rem;
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
  margin: 2rem 0;
  transition: all var(--transition);
}

.contact-email:hover {
  background: var(--color-bg-section);
  color: var(--color-primary-dark);
}

.contact-info-text {
  color: var(--color-text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* === Über uns page === */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* === Spa Room Image Section === */
.spa-room-section {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 3rem auto 0;
  box-shadow: var(--shadow-lg);
}

.spa-room-section img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* === Footer === */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.8);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--color-accent);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer-section a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

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

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
}

/* === Responsive === */
@media (max-width: 992px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-content h1 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    margin: 0;
  }

  .nav-links a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  /* Hero */
  .hero {
    height: 55vh;
    min-height: 350px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-small {
    height: 40vh;
    min-height: 250px;
  }

  /* Sections */
  .section {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .sale-banner {
    font-size: 0.85rem;
    padding: 0.5rem 0.8rem;
  }

  .site-header {
    top: 36px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .article-content {
    padding: 2rem 1rem;
  }

  .contact-email {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
}
