/* styles.css - Standaard voor First Steps Coaching & childcare sites */

/* ============================================
   TYPOGRAFIE & KLEUREN
============================================ */
:root {
  --primary-color: #4f46e5;      /* Indigo voor coaching */
  --secondary-color: #06b6d4;    /* Cyan accent */
  --success-color: #10b981;      /* Groen voor groei */
  --light-bg: #f8fafc;
  --dark-text: #1e293b;
  --muted-text: #64748b;
  --background: #b6767e;
  --background2: #c6a294;
  
}

.background-color {
    background: var(--background) !important;
}

.background2-color {
    background: var(--background2) !important;
}


body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
}

h1, h2, h3 { font-weight: 700; }
h4, h5, h6 { font-weight: 600; }

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);

}

/* ============================================
   CARDS & COMPONENTS
============================================ */
.card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.card-bg-l {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.dashed-card {
  border: 2px dashed rgba(79, 70, 229, 0.2);
}

/* ============================================
   LOGO & HERO
============================================ */


.logo {
  transition: all 0.3s ease;
}


.logo:hover {
  transform: scale(1.05);
}

/* ============================================
   ICONS
============================================ */
.icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.primary-color { color: var(--primary-color) !important; }

/* ============================================
   RESPONSIVE BREAKPOINTS
============================================ */
@media (max-width: 768px) {
  .btn-lg { padding: 14px 24px; font-size: 1.1rem; }
}

/* ============================================
   ANIMATIES
============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* ============================================
   UTILITIES
============================================ */
.rounded-4 { border-radius: 24px !important; }
.text-shadow { text-shadow: 0 2px 4px rgba(0,0,0,0.1); }


footer{
    background-color: #739c85;
}