/* Cito Landing – warmes Terminbuchungs-Design */

:root {
  --brand: #c45a2e;
  --brand-light: #fdeee6;
  --brand-dark: #9e4523;
  --bg-warm: #fff9f2;
  --text-primary: #2b1d14;
  --text-secondary: #6b5344;
  --border: #e6d8c8;
  --success: #22c55e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-warm);
}

.font-heading {
  font-family: 'Fraunces', 'Georgia', serif;
}

.hero-gradient {
  background-color: #2b1d14;
  background-image:
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(196, 90, 46, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 88% 15%, rgba(253, 238, 230, 0.12) 0%, transparent 50%),
    linear-gradient(145deg, #1a120c 0%, #2b1d14 35%, #4a2f1f 70%, #6b3d28 100%);
  position: relative;
}

.hero-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 12, 0.15) 0%, transparent 45%, rgba(26, 18, 12, 0.2) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 249, 242, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero-gold-text {
  color: #f5c49a;
}

.header-on-hero .brand-name,
.header-on-hero .nav-link-hero {
  color: #fff9f2;
}

.header-on-hero .menu-toggle-hero {
  color: #fff9f2;
}

.header-scrolled {
  background: rgba(255, 249, 242, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}

.header-scrolled .brand-name,
.header-scrolled .nav-link-hero {
  color: var(--text-primary);
}

.header-scrolled .menu-toggle-hero {
  color: var(--text-primary);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(196, 90, 46, 0.35);
  box-shadow: 0 12px 32px rgba(43, 29, 20, 0.08);
}

.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdeee6;
  color: var(--brand);
  margin-bottom: 1rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}

.pricing-card.featured {
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(196, 90, 46, 0.12);
}

.pricing-badge {
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.mockup-frame {
  background: linear-gradient(145deg, #fff 0%, #f5ebe0 100%);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-screen {
  background: var(--bg-warm);
  border-radius: 0.75rem;
  min-height: 260px;
}

.mockup-bar {
  background: var(--border);
  border-radius: 4px;
  height: 8px;
}

.mockup-bar-fill {
  background: var(--brand);
  border-radius: 4px;
}

.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.btn-brand {
  background: var(--brand);
  color: #fff;
}

.btn-brand:hover {
  background: var(--brand-dark);
}

.btn-outline-light {
  border: 2px solid rgba(255, 249, 242, 0.85);
  color: #fff9f2;
}

.btn-outline-light:hover {
  background: rgba(255, 249, 242, 0.12);
}
