/* connACT – Huisstijl & Website Styles */
:root {
  --teal: #5B8A8C;
  --teal-dark: #3D6A6C;
  --peach: #E8A07A;
  --peach-light: #F5D5C0;
  --olive: #8B9A6E;
  --cream: #F7F3EB;
  --cream-dark: #EFE9DC;
  --text: #2C3E50;
  --text-light: #5A6A7A;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
  --radius: 12px;
  --transition: all 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

/* Typography */
h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--text);
}

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

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

/* Layout */
.container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--peach);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

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

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.hero-logo {
  width: 420px;
  max-width: 88%;
  height: auto;
  margin: 0 auto 1.6rem;
  display: block;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 0.8rem;
  color: var(--text);
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 1.8rem;
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 2.2rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  margin-left: 0.8rem;
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
}

/* Sections */
section {
  padding: 3.5rem 0;
}

section:nth-child(even) {
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--peach);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(44, 62, 80, 0.12);
}

.card h3 {
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.98rem;
  margin-bottom: 0;
  color: var(--text-light);
}

/* Content pages */
.page-header {
  padding: 3.5rem 0 2rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.content-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.content-block p {
  font-size: 1.05rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* Contact form */
.contact-wrapper {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

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

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #D0D5D8;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  transition: var(--transition);
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(91, 138, 140, 0.15);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Footer */
footer {
  background: var(--text);
  color: #A0AEC0;
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  color: #CBD5E0;
}

footer a:hover {
  color: var(--peach);
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-logo span {
  color: var(--peach);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Responsive */
@media (max-width: 700px) {
  h1 { font-size: 1.9rem; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 3rem 0 2.5rem; }
  
  nav ul {
    gap: 1.2rem;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 0.8rem;
  }
  
  .hero .btn {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0.5rem auto;
  }
}