﻿html {
  scroll-behavior: smooth;
}

:root {
  --bg: #f7f5f0;
  --text: #1f2d3d;
  --accent: #1a9988;
  --card: #ffffff;
  --muted: #5c6b73;
  --shadow: 0 15px 40px rgba(31, 45, 61, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  max-width: 100%;
  border-radius: 1rem;
  display: block;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  background: var(--accent);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

main {
  padding: 2rem 5vw 4rem;
}

.section {
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 0.2rem;
  font-size: 2rem;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(26, 153, 136, 0.25);
}

.primary-cta:focus-visible,
.primary-cta:hover {
  transform: translateY(-1px);
}

.config-error {
  background: #fff1f0;
  color: #a8071a;
  border: 1px solid #ffa39e;
  padding: 1rem;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
}
