/*
Theme Name: The Garage School
Theme URI: https://thegarageschool.org
Author: Safi Benevolent Trust
Description: Custom theme for The Garage School, converted from the original React/Base44 design. Requires the Advanced Custom Fields (ACF) plugin for editable content.
Version: 1.0.0
Text Domain: garage-school
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --background: 40 33% 97%;
  --foreground: 20 10% 12%;
  --card: 40 30% 95%;
  --card-foreground: 20 10% 12%;
  --primary: 24 80% 50%;
  --primary-foreground: 40 33% 97%;
  --secondary: 150 20% 28%;
  --secondary-foreground: 40 33% 97%;
  --muted: 35 20% 90%;
  --muted-foreground: 20 10% 40%;
  --accent: 38 90% 55%;
  --accent-foreground: 20 10% 12%;
  --border: 35 20% 85%;
  --radius: 0.5rem;
}

* { border-color: hsl(var(--border)); }

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  margin: 0;
}

.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

/* Simple scroll-reveal replacement for the framer-motion fade/slide-in effects */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-bounce-slow {
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
