/* ============================================
   VITORI GESUNDHEITSKONGRESS 2026
   WordPress Export – Separate CSS-Datei
   Einbinden in WordPress: wp_enqueue_style() oder <link> im Header
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --vit-forest: hsl(150, 28%, 7%);
  --vit-forest-mid: hsl(150, 25%, 11%);
  --vit-forest-light: hsl(150, 20%, 16%);
  --vit-teal: hsl(158, 60%, 38%);
  --vit-teal-light: hsl(158, 55%, 50%);
  --vit-teal-dark: hsl(158, 65%, 25%);
  --vit-amber: hsl(36, 90%, 52%);
  --vit-amber-light: hsl(40, 95%, 65%);
  --vit-cream: hsl(60, 25%, 97%);
  --vit-cream-warm: hsl(48, 30%, 94%);
  --vit-sage-bg: hsl(150, 20%, 95%);
  --vit-teal-hint: hsl(158, 40%, 96%);
  --vit-muted: hsl(150, 10%, 42%);
  --vit-border: hsl(150, 12%, 86%);
  --vit-foreground: hsl(150, 18%, 12%);

  --vit-gradient-teal: linear-gradient(135deg, hsl(158, 65%, 25%) 0%, hsl(158, 60%, 38%) 60%, hsl(158, 55%, 48%) 100%);
  --vit-shadow-teal: 0 0 40px hsl(158 60% 38% / 0.18), 0 4px 24px hsl(0 0% 0% / 0.08);
  --vit-shadow-card: 0 2px 20px hsl(150 20% 10% / 0.08), 0 1px 4px hsl(0 0% 0% / 0.04);
  --vit-shadow-btn: 0 8px 28px hsl(158 60% 38% / 0.35), 0 2px 8px hsl(0 0% 0% / 0.15);
  --vit-radius: 16px;
}

/* ── Reset & Base ── */
.vitori-page * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vitori-page {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--vit-foreground);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

.vitori-page h1,
.vitori-page h2,
.vitori-page h3,
.vitori-page h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.1;
}

/* ── Layout Helpers ── */
.vit-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vit-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.vit-section {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.vit-section-white {
  background: #fff;
}

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

.vit-section-dark {
  background: var(--vit-forest);
}

.vit-section-teal-hint {
  background: var(--vit-teal-hint);
}

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

.vit-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vit-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.vit-flex {
  display: flex;
}

.vit-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vit-gap-2 {
  gap: 8px;
}

.vit-gap-3 {
  gap: 12px;
}

.vit-gap-4 {
  gap: 16px;
}

.vit-mb-2 {
  margin-bottom: 8px;
}

.vit-mb-4 {
  margin-bottom: 16px;
}

.vit-mb-6 {
  margin-bottom: 24px;
}

.vit-mb-8 {
  margin-bottom: 32px;
}

.vit-mb-12 {
  margin-bottom: 48px;
}

.vit-mb-16 {
  margin-bottom: 64px;
}

.vit-mt-8 {
  margin-top: 32px;
}

.vit-mt-10 {
  margin-top: 40px;
}

.vit-mt-12 {
  margin-top: 48px;
}

/* ── Typography ── */
.vit-overline {
  color: var(--vit-teal);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.vit-overline::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--vit-teal);
  flex-shrink: 0;
}

.vit-h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: var(--vit-cream);
}

.vit-h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--vit-foreground);
}

.vit-h2-dark {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--vit-cream);
}

.vit-h3 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--vit-foreground);
}

.vit-lead {
  font-size: 18px;
  color: var(--vit-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.vit-text-teal {
  color: var(--vit-teal);
}

.vit-text-amber {
  color: var(--vit-amber);
}

.vit-text-cream {
  color: var(--vit-cream);
}

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

.vit-text-sm {
  font-size: 13px;
}

.vit-text-xs {
  font-size: 11px;
}

.vit-font-bold {
  font-weight: 700;
}

.vit-font-semibold {
  font-weight: 600;
}

/* ── Shimmer text ── */
.vit-shimmer {
  background: linear-gradient(90deg,
      var(--vit-teal-dark), var(--vit-teal-light),
      var(--vit-teal), var(--vit-teal-light), var(--vit-teal-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: vit-shimmer 4s linear infinite;
}

.vit-gradient-text {
  background: var(--vit-gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.vit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--vit-gradient-teal);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 40px;
  border-radius: var(--vit-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--vit-shadow-btn);
  transition: opacity 0.2s, transform 0.2s;
  animation: vit-pulse-teal 2.5s ease-in-out infinite;
}

.vit-btn:hover {
  opacity: 0.9;
  transform: scale(1.03);
  text-decoration: none;
  color: #fff;
}

.vit-btn-lg {
  font-size: 20px;
  padding: 22px 52px;
  border-radius: 20px;
}

.vit-btn-sm {
  font-size: 14px;
  padding: 12px 24px;
}

.vit-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 36px;
  border-radius: var(--vit-radius);
  border: 1px solid rgba(66, 195, 170, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.vit-btn-outline:hover {
  background: rgba(66, 195, 170, 0.1);
  color: #fff;
  text-decoration: none;
}

/* ── Cards ── */
.vit-card {
  background: #fff;
  border: 1px solid var(--vit-border);
  border-radius: var(--vit-radius);
  padding: 28px;
  box-shadow: var(--vit-shadow-card);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.vit-card:hover {
  border-color: rgba(66, 195, 170, 0.4);
  box-shadow: 0 4px 24px hsl(158 60% 38% / 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.vit-card-dark {
  background: var(--vit-forest-mid);
  border: 1px solid rgba(66, 195, 170, 0.2);
  border-radius: var(--vit-radius);
  padding: 28px;
  box-shadow: var(--vit-shadow-teal);
  transition: border-color 0.3s, transform 0.3s;
}

.vit-card-dark:hover {
  border-color: rgba(66, 195, 170, 0.5);
  transform: translateY(-2px);
}

/* ── Badge / Tag ── */
.vit-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(66, 195, 170, 0.15);
  border: 1px solid rgba(66, 195, 170, 0.3);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--vit-teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vit-badge-amber {
  background: rgba(247, 168, 45, 0.15);
  border-color: rgba(247, 168, 45, 0.35);
  color: var(--vit-amber);
}

.vit-badge-danger {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
  color: hsl(0, 70%, 45%);
}

.vit-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: vit-pulse 2s ease-in-out infinite;
}

/* ── Trust badges row ── */
.vit-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.vit-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 28, 18, 0.7);
  border: 1px solid rgba(66, 195, 170, 0.3);
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

/* ── Progress bar ── */
.vit-progress-wrap {
  background: rgba(150, 200, 180, 0.15);
  border-radius: 9999px;
  overflow: hidden;
  height: 10px;
}

.vit-progress-fill {
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--vit-teal), var(--vit-amber));
}

/* ── Countdown ── */
.vit-countdown {
  display: flex;
  gap: 16px;
}

.vit-countdown-unit {
  text-align: center;
}

.vit-countdown-box {
  background: rgba(10, 28, 18, 0.8);
  border: 1px solid rgba(66, 195, 170, 0.3);
  border-radius: var(--vit-radius);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--vit-shadow-teal);
}

.vit-countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--vit-teal);
}

.vit-countdown-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Stats bar ── */
.vit-stats-bar {
  background: rgba(10, 28, 18, 0.9);
  border-top: 1px solid rgba(66, 195, 170, 0.2);
  padding: 24px;
}

.vit-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--vit-teal);
  line-height: 1;
  margin-bottom: 4px;
}

.vit-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Divider ── */
.vit-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 195, 170, 0.45), transparent);
  margin: 0;
}

/* ── Hero ── */
.vit-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  background: var(--vit-forest);
}

.vit-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.vit-hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 28, 18, 0.8), rgba(10, 28, 18, 0.4), rgba(10, 28, 18, 0.9));
}

.vit-hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 28, 18, 0.9), rgba(10, 28, 18, 0.5), rgba(10, 28, 18, 0.0));
}

.vit-hero-glow {
  position: absolute;
  top: 33%;
  left: 25%;
  width: 600px;
  height: 500px;
  background: rgba(66, 195, 170, 0.06);
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
}

.vit-hero-content {
  position: relative;
  z-index: 10;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ── Scarcity / Urgency boxes ── */
.vit-urgency-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(247, 168, 45, 0.15);
  border: 1px solid rgba(247, 168, 45, 0.4);
  border-radius: var(--vit-radius);
  padding: 14px 20px;
}

.vit-app-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(66, 195, 170, 0.15);
  border: 1px solid rgba(66, 195, 170, 0.4);
  border-radius: var(--vit-radius);
  padding: 16px 20px;
}

/* ── CTA row ── */
.vit-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* ── Speaker avatar ── */
.vit-speaker-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(66, 195, 170, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

/* ── Testimonial ── */
.vit-stars {
  color: var(--vit-amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.vit-testimonial-quote {
  font-style: italic;
  font-size: 14px;
  color: rgba(20, 50, 35, 0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}

.vit-testimonial-author {
  color: var(--vit-teal);
  font-size: 12px;
  font-weight: 700;
}

/* ── Social proof box ── */
.vit-social-proof-box {
  background: var(--vit-teal-hint);
  border: 1px solid rgba(66, 195, 170, 0.15);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

/* ── How it works steps ── */
.vit-step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--vit-gradient-teal);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--vit-shadow-btn);
}

.vit-step-card {
  text-align: center;
  border-radius: var(--vit-radius);
  padding: 24px;
  border: 1px solid;
}

.vit-step-card-normal {
  background: rgba(150, 200, 180, 0.1);
  border-color: var(--vit-border);
}

.vit-step-card-highlight {
  background: rgba(66, 195, 170, 0.08);
  border-color: rgba(66, 195, 170, 0.4);
  box-shadow: 0 4px 24px rgba(66, 195, 170, 0.12);
}

/* ── FAQ accordion ── */
.vit-faq-item {
  background: #fff;
  border: 1px solid var(--vit-border);
  border-radius: var(--vit-radius);
  overflow: hidden;
  transition: border-color 0.2s;
  margin-bottom: 12px;
}

.vit-faq-item.open {
  border-color: rgba(66, 195, 170, 0.4);
}

.vit-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--vit-foreground);
  gap: 16px;
}

.vit-faq-btn:hover {
  color: var(--vit-teal);
}

.vit-faq-btn.open {
  color: var(--vit-teal);
}

.vit-faq-arrow {
  color: var(--vit-teal);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.vit-faq-arrow.open {
  transform: rotate(180deg);
}

.vit-faq-body {
  display: none;
  padding: 0 24px 24px;
  color: var(--vit-muted);
  line-height: 1.7;
}

.vit-faq-body.open {
  display: block;
}

/* ── Registration form ── */
.vit-form-card {
  background: #fff;
  border: 1px solid var(--vit-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(10, 28, 18, 0.1);
  position: relative;
  overflow: hidden;
}

.vit-input {
  width: 100%;
  background: hsl(150, 10%, 94%);
  border: 1px solid var(--vit-border);
  border-radius: var(--vit-radius);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--vit-foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vit-input:focus {
  border-color: rgba(66, 195, 170, 0.4);
  box-shadow: 0 0 0 3px rgba(66, 195, 170, 0.1);
}

.vit-input::placeholder {
  color: var(--vit-muted);
}

.vit-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--vit-muted);
  margin-bottom: 8px;
}

/* ── Sticky / Notification bar ── */
.vit-sticky-top {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--vit-teal);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
}

.vit-sticky-top a {
  color: #fff;
  font-weight: 700;
}

/* ── Live event card stripe ── */
.vit-event-stripe {
  height: 4px;
  background: var(--vit-gradient-teal);
  opacity: 0.6;
  transition: opacity 0.2s;
}

.vit-card-dark:hover .vit-event-stripe {
  opacity: 1;
}

/* ── Footer ── */
.vit-footer {
  background: var(--vit-forest-mid);
  border-top: 1px solid rgba(66, 195, 170, 0.15);
  padding: 48px 24px;
  text-align: center;
}

.vit-footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--vit-teal);
}

.vit-footer-tagline {
  color: var(--vit-muted);
  font-size: 13px;
  margin-top: 4px;
}

.vit-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.vit-footer-links a {
  color: var(--vit-muted);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.vit-footer-links a:hover {
  color: var(--vit-teal);
}

.vit-footer-copy {
  color: var(--vit-muted);
  font-size: 11px;
  margin-top: 24px;
}

/* ── Glow orbs (decorative, absolute positioned within section) ── */
.vit-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* ── Checklist ── */
.vit-checklist {
  list-style: none;
}

.vit-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(20, 50, 35, 0.85);
}

.vit-check-icon {
  color: var(--vit-teal);
  font-size: 18px;
  flex-shrink: 0;
}

/* ── Pillar tags ── */
.vit-pillar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(66, 195, 170, 0.2);
  border-radius: 9999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--vit-foreground);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .vit-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .vit-grid-3 {
    grid-template-columns: 1fr;
  }

  .vit-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .vit-cta-row {
    flex-direction: column;
  }

  .vit-btn-lg {
    font-size: 17px;
    padding: 18px 32px;
  }

  .vit-section {
    padding: 60px 16px;
  }

  .vit-social-proof-box {
    padding: 32px 20px;
  }

  .vit-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .vit-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .vit-countdown {
    gap: 10px;
  }

  .vit-countdown-box {
    width: 60px;
    height: 60px;
  }

  .vit-countdown-num {
    font-size: 22px;
  }
}

/* ── Keyframes ── */
@keyframes vit-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes vit-breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes vit-pulse-teal {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(66, 195, 170, 0.3), var(--vit-shadow-btn);
  }

  50% {
    box-shadow: 0 0 50px rgba(66, 195, 170, 0.65), 0 0 80px rgba(66, 195, 170, 0.2), var(--vit-shadow-btn);
  }
}

@keyframes vit-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes vit-fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.vit-animate-breathe {
  animation: vit-breathe 4s ease-in-out infinite;
}

.vit-animate-fade-up {
  animation: vit-fade-up 0.7s ease-out both;
}

.vit-animate-pulse {
  animation: vit-pulse 2s ease-in-out infinite;
}

/* TAILWIND UTILITIES */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*
! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: DM Sans, Inter, system-ui, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

:root {
  /* Core: Deep Forest Green Background */
  --background: 150 28% 7%;
  --foreground: 150 18% 12%;
  /* Light section backgrounds */
  --section-light: 60 30% 97%;
  --section-light-warm: 150 20% 95%;
  --section-mid: 150 15% 90%;
  --card: 0 0% 100%;
  --card-foreground: 150 18% 12%;
  --popover: 0 0% 100%;
  --popover-foreground: 150 18% 12%;
  /* Primary: Vitori Teal-Grün */
  --primary: 158 60% 38%;
  --primary-foreground: 0 0% 100%;
  /* Secondary */
  --secondary: 150 15% 93%;
  --secondary-foreground: 150 18% 18%;
  --muted: 150 10% 94%;
  --muted-foreground: 150 10% 42%;
  --accent: 158 60% 38%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 62.8% 50%;
  --destructive-foreground: 0 0% 100%;
  --border: 150 12% 86%;
  --input: 150 12% 88%;
  --ring: 158 60% 38%;
  --radius: 0.75rem;
  /* Custom Brand Tokens */
  --forest:        150 28% 7%;
  --forest-mid:    150 25% 11%;
  --forest-light:  150 20% 16%;
  --teal:          158 60% 38%;
  --teal-light:    158 55% 50%;
  --teal-dark:     158 65% 25%;
  --sage:          145 25% 48%;
  --amber:         36 90% 52%;
  --amber-light:   40 95% 65%;
  --cream:         60 25% 97%;
  --cream-warm:    48 30% 94%;
  /* Section backgrounds (light) */
  --bg-white:      0 0% 100%;
  --bg-off-white:  60 30% 97%;
  --bg-sage-light: 150 20% 95%;
  --bg-teal-hint:  158 40% 96%;
  /* Gradients */
  --gradient-hero:        linear-gradient(160deg, hsl(150 30% 5%) 0%, hsl(158 35% 9%) 60%, hsl(148 28% 7%) 100%);
  --gradient-teal:        linear-gradient(135deg, hsl(158 65% 25%) 0%, hsl(158 60% 38%) 60%, hsl(158 55% 48%) 100%);
  --gradient-teal-subtle: linear-gradient(135deg, hsl(158 60% 38% / 0.12) 0%, hsl(158 60% 38% / 0.04) 100%);
  --gradient-amber:       linear-gradient(135deg, hsl(36 85% 44%) 0%, hsl(40 95% 58%) 100%);
  --gradient-card:        linear-gradient(145deg, hsl(0 0% 100%) 0%, hsl(150 20% 97%) 100%);
  --gradient-nature:      linear-gradient(180deg, hsl(150 28% 7% / 0) 0%, hsl(150 28% 7%) 75%);
  /* Shadows */
  --shadow-teal:   0 0 40px hsl(158 60% 38% / 0.18), 0 4px 24px hsl(0 0% 0% / 0.08);
  --shadow-card:   0 2px 20px hsl(150 20% 10% / 0.08), 0 1px 4px hsl(0 0% 0% / 0.04);
  --shadow-btn:    0 8px 28px hsl(158 60% 38% / 0.35), 0 2px 8px hsl(0 0% 0% / 0.15);
  --shadow-amber:  0 8px 28px hsl(36 90% 52% / 0.3), 0 2px 8px hsl(0 0% 0% / 0.12);
  --sidebar-background: 0 0% 100%;
  --sidebar-foreground: 150 18% 12%;
  --sidebar-primary: 158 60% 38%;
  --sidebar-primary-foreground: 0 0% 100%;
  --sidebar-accent: 150 15% 93%;
  --sidebar-accent-foreground: 150 18% 18%;
  --sidebar-border: 150 12% 86%;
  --sidebar-ring: 158 60% 38%;
}

* {
  border-color: hsl(var(--border));
}

body {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  color: hsl(var(--foreground));
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: hsl(var(--forest));
}

/* Override heading color in dark sections */

::-moz-selection {
  background: hsl(158 60% 38% / 0.25);
  color: hsl(var(--forest));
}

::selection {
  background: hsl(158 60% 38% / 0.25);
  color: hsl(var(--forest));
}

html {
  scroll-behavior: smooth;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.hidden {
  display: none;
}

.flex-shrink {
  flex-shrink: 1;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.flex-wrap {
  flex-wrap: wrap;
}

.border {
  border-width: 1px;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes enter {
  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}

@keyframes exit {
  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}

.ease-in-out {
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Colors */

/* Light section backgrounds */

/* Gradients */

/* Shadows */

/* Glow */

/* Layout */

/* Dividers */

/* Animations */

/* ============================================
   VITORI GESUNDHEITSKONGRESS 2026
   Design System – Natur Grün · Teal · Crème
   Inspiriert von vitori.de & mein-gesundheitskongress.de
   ============================================ */

/* ── Utility Classes ──────────────────────── */

/* ── Keyframes ───────────────────────────── */

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50%       {
    transform: translateY(-10px);
  }
}

@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50%       {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes pulseTeal {
  0%, 100% {
    box-shadow: 0 0 20px hsl(158 60% 42% / 0.3);
  }

  50%       {
    box-shadow: 0 0 50px hsl(158 60% 42% / 0.65), 0 0 80px hsl(158 60% 42% / 0.2);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes shimmer {
  0%   {
    background-position: -200% center;
  }

  100% {
    background-position:  200% center;
  }
}

/* Shimmer text effect */

.shimmer-teal {
  background: linear-gradient(90deg,
    hsl(var(--teal-dark)),
    hsl(var(--teal-light)),
    hsl(var(--teal)),
    hsl(var(--teal-light)),
    hsl(var(--teal-dark))
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.shimmer-amber {
  background: linear-gradient(90deg,
    hsl(var(--amber)),
    hsl(var(--amber-light)),
    hsl(var(--amber)),
    hsl(var(--amber-light)),
    hsl(var(--amber))
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Leaf / nature accent decoration */

.nature-dot::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: hsl(var(--teal));
  margin-right: 8px;
  vertical-align: middle;
}

/* Organic card hover border */

.card-organic {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--bg-white));
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card-organic:hover {
  border-color: hsl(var(--teal) / 0.4);
  box-shadow: 0 4px 24px hsl(var(--teal) / 0.12), 0 1px 4px hsl(0 0% 0% / 0.06);
  transform: translateY(-2px);
}

/* Dark card variant for hero/dark sections */

.card-organic-dark {
  border: 1px solid hsl(var(--teal) / 0.2);
  background: hsl(var(--forest-mid));
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.card-organic-dark:hover {
  border-color: hsl(var(--teal) / 0.5);
  box-shadow: var(--shadow-teal);
  transform: translateY(-2px);
}

