/*
Theme Name: Minicursus Platform
Description: Een WordPress thema voor minicursussen voor vrouwen die (te) veel dragen. Gebaseerd op een moderne, rustgevende design met emerald en stone kleuren.
Author: Health Collab
Version: 1.0
Text Domain: minicursus-platform
*/

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Color Variables */
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;

  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;

  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;

  --white: #ffffff;
  --gray-600: #4b5563;
  --gray-700: #374151;

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;

  /* Spacing */
  --radius: 0.625rem;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--stone-800);
  background: linear-gradient(135deg, var(--emerald-50) 0%, var(--white) 50%, var(--blue-50) 100%);
  min-height: 100vh;
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 3rem 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  color: var(--emerald-800);
}

h2 {
  font-size: 2rem;
  color: var(--emerald-800);
}

h3 {
  font-size: 1.5rem;
  color: var(--emerald-700);
}

p {
  margin-bottom: 1rem;
  color: var(--stone-700);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border: 1px solid var(--stone-200);
}

.card-gradient-emerald {
  background: linear-gradient(135deg, var(--emerald-50) 0%, var(--emerald-100) 100%);
  border-color: var(--emerald-200);
}

.card-gradient-stone {
  background: linear-gradient(135deg, var(--stone-50) 0%, var(--stone-100) 100%);
  border-color: var(--stone-200);
}

.card-gradient-blue {
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--blue-100) 100%);
  border-color: var(--blue-200);
}

.card-gradient-amber {
  background: linear-gradient(135deg, var(--amber-50) 0%, var(--amber-100) 100%);
  border-color: var(--amber-200);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-emerald {
  background-color: var(--emerald-600);
  color: var(--white);
}

.btn-emerald:hover {
  background-color: var(--emerald-700);
  color: var(--white);
}

.btn-stone {
  background-color: var(--stone-600);
  color: var(--white);
}

.btn-stone:hover {
  background-color: var(--stone-700);
  color: var(--white);
}

.btn-blue {
  background-color: var(--blue-600);
  color: var(--white);
}

.btn-blue:hover {
  background-color: var(--blue-700);
  color: var(--white);
}

.btn-amber {
  background-color: var(--amber-600);
  color: var(--white);
}

.btn-amber:hover {
  background-color: var(--amber-700);
  color: var(--white);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Grid Layout */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* Header */
.site-header {
  text-align: center;
  margin-bottom: 3rem;
}

.site-title {
  font-size: 3rem;
  color: var(--emerald-800);
  margin-bottom: 1rem;
}

.site-subtitle {
  font-size: 1.25rem;
  color: var(--emerald-600);
  margin-bottom: 0.5rem;
}

.site-description {
  font-size: 1.125rem;
  color: var(--stone-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Course Cards */
.course-card {
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.course-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.course-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.course-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.course-title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.course-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.course-description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.course-goals {
  margin-bottom: 1.5rem;
}

.course-goals h4 {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.course-goals ul {
  list-style: none;
  padding: 0;
}

.course-goals li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

/* Color Classes */
.text-emerald-800 {
  color: var(--emerald-800);
}
.text-emerald-700 {
  color: var(--emerald-700);
}
.text-emerald-600 {
  color: var(--emerald-600);
}
.text-stone-800 {
  color: var(--stone-800);
}
.text-stone-700 {
  color: var(--stone-700);
}
.text-stone-600 {
  color: var(--stone-600);
}
.text-blue-800 {
  color: var(--blue-800);
}
.text-blue-700 {
  color: var(--blue-700);
}
.text-blue-600 {
  color: var(--blue-600);
}
.text-amber-800 {
  color: var(--amber-800);
}
.text-amber-700 {
  color: var(--amber-700);
}
.text-amber-600 {
  color: var(--amber-600);
}

/* Personas Section */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.persona-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--emerald-200);
}

/* Call to Action */
.cta-section {
  text-align: center;
  margin: 3rem 0;
}

.cta-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }

  .site-title {
    font-size: 2rem;
  }

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

  .course-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-icon {
    margin-top: 0.5rem;
  }

  .cta-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .site-title {
    font-size: 1.75rem;
  }

  .card {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
