/*
Theme Name: Praktijk Bergopwaarts
Description: Professional psychology practice theme with natural design
Author: Custom Theme
Version: 1.0
*/

/* ===== ROOT VARIABLES ===== */
:root {
  /* Core brand colors - nature-inspired palette */
  --background: hsl(45, 30%, 97%);
  --foreground: hsl(150, 15%, 15%);
  
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(150, 15%, 15%);
  
  /* Primary - forest green representing growth and trust */
  --primary: hsl(150, 50%, 25%);
  --primary-foreground: hsl(0, 0%, 98%);
  --primary-light: hsl(150, 35%, 45%);
  --primary-lighter: hsl(150, 25%, 65%);
  
  /* Secondary - warm earth tone */
  --secondary: hsl(45, 25%, 85%);
  --secondary-foreground: hsl(150, 15%, 15%);
  
  /* Muted - soft neutral */
  --muted: hsl(45, 15%, 90%);
  --muted-foreground: hsl(150, 8%, 45%);
  
  /* Accent - gentle mountain blue */
  --accent: hsl(200, 25%, 85%);
  --accent-foreground: hsl(150, 15%, 15%);
  
  --border: hsl(45, 15%, 88%);
  --input: hsl(45, 15%, 88%);
  --ring: hsl(150, 50%, 25%);
  
  /* Custom gradients for bergopwaarts theme */
  --gradient-hero: linear-gradient(135deg, hsl(150, 50%, 25%), hsl(150, 35%, 45%));
  --gradient-mountain: linear-gradient(180deg, hsl(200, 25%, 85%) 0%, hsl(150, 25%, 65%) 100%);
  --gradient-section: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, hsl(45, 25%, 95%) 100%);
  
  /* Shadows with natural feel */
  --shadow-gentle: 0 4px 20px -4px hsla(150, 50%, 25%, 0.1);
  --shadow-card: 0 8px 30px -8px hsla(150, 50%, 25%, 0.15);
  --shadow-floating: 0 20px 40px -10px hsla(150, 50%, 25%, 0.2);
  
  /* Smooth transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-gentle: all 0.4s ease;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-gentle);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  height: 48px;
  width: auto;
}

.logo-text h1 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--primary);
}

.logo-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

.nav-link {
  background: none;
  border: none;
  color: var(--foreground);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.nav-link:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  padding: 10px 16px;
  box-shadow: var(--shadow-gentle);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 10px 16px;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-lg {
  height: 44px;
  padding: 0 32px;
  font-size: 1.125rem;
}

.btn-sm {
  height: 36px;
  padding: 0 12px;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
  .mobile-nav {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-mountain);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 64rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--primary-light);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.arrow-down {
  animation: bounce 2s infinite;
  width: 24px;
  height: 24px;
  color: var(--primary-light);
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translateY(0);
  }
  40%, 43% {
    transform: translateY(-30px);
  }
  70% {
    transform: translateY(-15px);
  }
  90% {
    transform: translateY(-4px);
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
  .hero-description {
    font-size: 1.5rem;
  }
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--primary);
  margin-bottom: 64px;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--muted-foreground);
  margin-bottom: 64px;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

/* ===== CARDS ===== */
.card {
  background: var(--card);
  border: 1px solid rgba(var(--primary), 0.2);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-floating);
  transition: var(--transition-gentle);
}

.card-header {
  padding: 24px 32px 16px;
}

.card-content {
  padding: 0 32px 32px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== FORM STYLES ===== */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--input);
  border-radius: 0.375rem;
  background: var(--background);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(var(--ring), 0.2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 4px;
}

/* ===== CONTACT INFO ===== */
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(var(--primary), 0.05);
  border-radius: 0.5rem;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-hero);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.contact-details h4 {
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-details a {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-details a:hover {
  color: var(--primary);
}

/* ===== TABLE ===== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(var(--primary), 0.2);
}

.pricing-table thead {
  background: rgba(var(--primary), 0.05);
}

.pricing-table th,
.pricing-table td {
  padding: 16px 24px;
  text-align: left;
}

.pricing-table th {
  font-weight: 600;
  color: var(--primary);
}

.pricing-table tbody tr {
  border-bottom: 1px solid rgba(var(--primary), 0.1);
  transition: var(--transition-smooth);
}

.pricing-table tbody tr:hover {
  background: rgba(var(--primary), 0.05);
}

.pricing-table .price {
  text-align: right;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.125rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 48px 0;
}

.footer-content {
  max-width: 64rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer h4 {
  font-weight: 600;
  margin-bottom: 16px;
}

.footer p {
  color: rgba(var(--primary-foreground), 0.8);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(var(--primary-foreground), 0.2);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(var(--primary-foreground), 0.8);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

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

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

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

.space-y-6 > * + * {
  margin-top: 24px;
}

.leading-relaxed {
  line-height: 1.625;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 48px;
  }
  
  .hero-content {
    padding: 0 16px;
  }
}