/* Eenvoudige, schone styling voor Vreugde in Balans */
:root {
  --accent: #6b9f7a;
  --bg: #fff;
  --bg-accent: #e1ebe4;
  --muted: #666;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
  line-height: 1.5;
  color: #222;
  margin: 0;
  background: var(--bg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

.link {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.link:hover {
  text-decoration: underline;
}

.welcome {
  text-align: center;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0 0.5rem;
  font-size: 0.95rem;
}

.page-breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

.page-action-row {
  display: flex;
  width: 100%;
  margin: 0.5rem 0 1rem;
}

.page-action-row .button {
  display: flex;
  width: 80%;
  justify-content: center;
  margin: 0rem 10%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background-color: var(--accent);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background-color: #567e64;
  color: #fff;
}

.table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.8rem 0.95rem;
  border-bottom: 1px solid #e5ece7;
  text-align: left;
  vertical-align: top;
}

.pricing-table thead th {
  background: var(--bg-accent);
}

.pricing-table tbody tr:nth-child(odd) {
  background: #fcfdfc;
}

.price-cell {
  font-weight: 700;
  white-space: nowrap;
}

.muted {
  color: var(--muted);
}

.top-header {
  background: var(--bg-accent);
}

.top-header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem 1rem;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.top-header a,
.footer-section a {
  color: #222;
  text-decoration: none;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.top-header a:hover,
.footer-section a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-icon {
  display: inline-flex;
  width: 1em;
  height: 1em;
  margin-right: 0.35rem;
  vertical-align: middle;
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fcf7f4;
  border-bottom: 1px solid #fefdfc;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
  min-height: 76px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0 1rem;
  min-height: 76px;
}

.header-inner.with-logo .main-nav {
  margin-left: auto;
}

.site-logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 70%;
  height: 2px;
  background: #333;
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  color: #333;
  padding: 0.25rem 0.5rem;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--accent);
  background-color: rgba(107, 159, 122, 0.1);
  border-radius: 4px;
}

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-dropdown > a::after {
  content: '▾';
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.8rem;
  vertical-align: middle;
}

.submenu {
  position: absolute;
  left: 0;
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  z-index: 10;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  display: flex;
}

.submenu a {
  padding: 0.75rem 1rem;
  display: block;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.submenu a:hover {
  background: rgba(107, 159, 122, 0.08);
}

@media (max-width: 700px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fffffb;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.25s ease;
    border-bottom: 1px solid #eee;
    z-index: 19;
  }

  .main-nav.open {
    max-height: 1000px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.08);
  }

  .main-nav > * {
    width: 100%;
  }

  .main-nav a {
    margin: 0;
    padding: 1rem;
    border-top: 1px solid #eee;
  }

  .nav-dropdown > a {
    display: block;
  }

  .nav-dropdown > a:first-child,
  .main-nav > a:first-child {
    border-top: none;
  }

  .submenu {
    position: static;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    border: none;
    box-shadow: none;
    padding: 0;
    transition: max-height 0.25s ease;
  }

  .main-nav.open .nav-dropdown .submenu {
    max-height: 500px;
  }

  .submenu a {
    padding: 1rem 1rem 1rem 3rem;
    border-top: 1px solid #eee;
  }

  .submenu a:first-child {
    border-top: none;
  }

  .main-nav a:hover,
  .submenu a:hover {
    background-color: rgba(107, 159, 122, 0.1);
  }

  .header-inner {
    justify-content: space-between;
  }

  .menu-toggle {
    margin-left: auto;
  }
}

.hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
  background-color: #FFFFFB;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/media/vreugde-inbalans-banner.jpg');
  background-position: center top;
  background-size: auto 300px;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(100, 100, 100, 0.25);
  z-index: 0;
}

.bg-accent {
  background: var(--bg-accent);
}

.bg-accent .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.services h2 {
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #FCF7F4;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
}

.card-image--access-bars {
  background-image: url('/media/services/cta-access-bars.png');
}

.card-image--hsp-coaching {
  background-image: url('/media/services/cta-hsp-coaching.png');
}

.card-image--reiki {
  background-image: url('/media/services/cta-reiki.png');
}

.card-image h3 {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.card p {
  padding: 1.25rem;
  margin: 0;
}

.card:hover,
.card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(107, 159, 122, 0.35);
  box-shadow: 0 18px 40px rgba(107, 159, 122, 0.08);
}

.site-footer {
  margin-top: 3rem;
  background: #fff;
  border-top: 1px solid #e8e8e8;
}

.footer-content {
  display: flex;
  gap: 3rem;
  padding: 2.5rem 1rem;
  justify-content: space-between;
}

.footer-intro {
  flex: 0 0 220px;
}


.footer-section {
  flex: 0 0 auto;
}

.footer-section h4 {
  margin: 0 0 1rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
}

.footer-section p {
  margin: 0.4rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
}

.footer-section a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-links a {
  font-size: 0.9rem;
}

.small {
  font-size: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid #fefdfc;
  padding: 1.5rem 1rem;
  background: #fcf7f4;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Responsive overrides (placed last so they take precedence) */
@media (max-width: 700px) {
  .header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0.5rem;
  }

  .main-nav a {
    margin-left: 0.5rem;
  }

  .hero {
    min-height: 440px;
    background-size: 220px auto;
    padding-bottom: 1.5rem;
  }

  /* Footer responsive adjustments */
  .footer-content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  .footer-intro {
    flex: 1 1 auto;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 1.5rem;
  }

  .footer-section {
    flex: 1 1 auto;
  }
}
