/* =============================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS
   ============================================= */
:root {
  --bg:          #FFFFFF;
  --bg2:         #FAF7F2;
  --bg3:         #FDF0F3;
  --fg:          #333333;
  --heading:     #2A1A0E;
  --gold:        #B8975A;
  --gold-dark:   #9A7A44;
  --gold-light:  #D4B57A;
  --rose:        #C9848F;
  --muted:       #888078;
  --card-bg:     rgba(255, 255, 255, 0.85);
  --card-border: rgba(184, 151, 90, 0.25);

  --font-body:    'Raleway', sans-serif;
  --font-display: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.25;
}

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

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

a:hover {
  text-decoration: underline;
}

p + p {
  margin-top: 1rem;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.gold-divider {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 80px;
  height: 1px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.ornament {
  color: var(--gold);
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  margin: 1rem 0;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: #FFFFFF;
}

.btn-outline {
  display: inline-block;
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(184, 151, 90, 0.5);
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-outline:hover {
  background: rgba(184, 151, 90, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Service cards */
.service-card {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Layout helpers */
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 1.5rem;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeUp 0.9s ease both;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 90, 0.2);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--heading);
}

.nav-logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--muted);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
  text-decoration: none;
}

.nav-links a.btn-nav {
  color: #fff;
  background: var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
}

.nav-links a.btn-nav:hover {
  background: var(--gold-dark);
  text-decoration: none;
  color: #fff;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  background-image:
    linear-gradient(to right,
      rgba(255, 255, 255, 0.80) 0%,
      rgba(255, 255, 255, 0.55) 45%,
      rgba(255, 255, 255, 0.25) 100%),
    url('/subsrc/hero.webp');
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8975A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--heading);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-divider {
  margin: 1.75rem auto;
}

.hero-subtext {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* =============================================
   DAS BESONDERE
   ============================================= */
#besondere {
  background: var(--bg2);
  padding-top: 0;
}

.besondere-banner {
  width: 100%;
  max-height: 320px;
  overflow: hidden;
  margin-bottom: 0;
}

.besondere-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

#besondere .section-inner {
  text-align: center;
}

.besondere-text {
  max-width: 680px;
  margin: 0 auto 3rem;
}

.besondere-text p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 1rem;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}

.highlight-item {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 2rem 1.75rem 0;
  max-width: 300px;
  flex: 1 1 240px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* Karten ohne Foto: Innenabstand unten */
.highlight-item:not(:has(.highlight-foto)) {
  padding-bottom: 1.75rem;
}

.highlight-foto {
  margin: 1.25rem -1.75rem 0;
}

.highlight-foto img {
  width: 100%;
  height: auto;
  display: block;
}

.highlight-foto figcaption {
  font-size: 0.68rem;
  color: var(--muted);
  font-style: italic;
  padding: 0.4rem 0.75rem;
  line-height: 1.4;
  text-align: center;
}

.highlight-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.highlight-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--heading);
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =============================================
   LEISTUNGEN
   ============================================= */
#leistungen {
  background: var(--bg);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.leistungen-grid .service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}

.leistungen-grid .service-card p {
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.leistungen-grid .service-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.leistungen-grid .service-card ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.leistungen-grid .service-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

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

/* =============================================
   PARTNER
   ============================================= */
#partner {
  background: var(--bg3);
}

#partner .section-inner {
  text-align: center;
}

.partner-text {
  max-width: 620px;
  margin: 0 auto;
}

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

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}

.partner-item {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.partner-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--heading);
  display: block;
}

.partner-item span {
  font-size: 0.85rem;
  color: var(--muted);
}

.partner-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* =============================================
   ABLAUF
   ============================================= */
#ablauf {
  background-image:
    linear-gradient(rgba(250, 247, 242, 0.92), rgba(250, 247, 242, 0.92)),
    url('/subsrc/Ablauf.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#ablauf .section-inner {
  text-align: center;
}

.ablauf-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.ablauf-step {
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 2px solid rgba(184, 151, 90, 0.25);
  margin-left: 1.5rem;
  position: relative;
}

.ablauf-step::before {
  content: attr(data-step);
  position: absolute;
  left: -1.5rem;
  top: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
}

.ablauf-step-body h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.ablauf-step-body p {
  font-size: 0.95rem;
  color: var(--fg);
}

.ablauf-step-body small {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.ablauf-steps .ablauf-step:last-child {
  border-left-color: transparent;
}

/* =============================================
   ÜBER ROSALIE
   ============================================= */
#ueber {
  background: var(--bg);
}

.ueber-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.ueber-foto {
  background: var(--bg2);
  border-radius: 1rem;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  border: 1px solid var(--card-border);
  /* Foto: <img src="/subsrc/rosalie.webp" alt="Rosalie Postatny"> einsetzen */
}

.ueber-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.ueber-text .section-label {
  text-align: left;
}

.ueber-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.ueber-text p {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--fg);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.ueber-signatur {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.ueber-adresse {
  background: var(--bg2);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.9;
}

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

  .ueber-foto {
    aspect-ratio: 4/3;
    max-height: 300px;
  }
}

/* =============================================
   FAQ
   ============================================= */
#faq {
  background: var(--bg2);
}

#faq .section-inner {
  max-width: 760px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-list details {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 0.6rem;
  overflow: hidden;
}

.faq-list details[open] {
  border-color: rgba(184, 151, 90, 0.5);
}

.faq-list summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details > p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.75;
}

.faq-list details > p a {
  color: var(--gold);
}

/* =============================================
   KONTAKT-CTA (auf Startseite)
   ============================================= */
#kontakt-cta {
  background-image:
    linear-gradient(rgba(253, 240, 243, 0.88), rgba(253, 240, 243, 0.88)),
    url('/subsrc/Kontakt.webp');
  background-size: cover;
  background-position: center;
  text-align: center;
}

#kontakt-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.kontakt-subtext {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.kontakt-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.kontakt-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--fg);
}

.kontakt-item .k-icon {
  font-size: 1.1rem;
}

.kontakt-hint {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

/* =============================================
   KONTAKT-SEITE (kontakt.html)
   ============================================= */
.kontakt-page {
  background: var(--bg2);
  min-height: 80vh;
}

.kontakt-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.kontakt-form-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.form-card {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg2);
  border: 1px solid var(--card-border);
  border-radius: 0.4rem;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  appearance: none;
}

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

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

.form-privacy {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.form-privacy a {
  color: var(--gold);
}

.kontakt-info-box {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 0.75rem;
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kontakt-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ki-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ki-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 0.2rem;
}

.ki-body span, .ki-body a {
  font-size: 0.9rem;
  color: var(--muted);
}

.ki-body a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  .kontakt-form-wrap { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--heading);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.footer-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-divider {
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.25rem;
}

.footer-powered {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.18);
  margin-top: 0.25rem;
}

.footer-powered a {
  color: inherit;
}

.footer-powered a:hover {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page {
  min-height: 70vh;
  background: var(--bg);
}

.legal-page h1 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--card-border);
}

.legal-page h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--heading);
}

.legal-page h3 {
  font-size: 1.05rem;
  color: var(--gold-dark);
  margin: 1.25rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
