/*
Theme Name:   Celia Theodosopoulou
Theme URI:    https://celiatheodosopoulou.gr
Author:       (your name / agency)
Author URI:   https://celiatheodosopoulou.gr
Description:  Custom one-page theme for psychologist Celia Theodosopoulou
Version:      1.0.0
Requires at least: 6.1
Tested up to: 6.6
Requires PHP: 8.0
Text Domain:  celia
*/

/* ────────────────────────────────────────────────
   Google Fonts
───────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

/* ────────────────────────────────────────────────
   Tailwind + Custom overrides
───────────────────────────────────────────────── */
@tailwind base;
@tailwind components;
@tailwind utilities;

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  @apply bg-slate-50 text-slate-800;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
}

/* Custom blob animation */
@keyframes blob {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(30px, -50px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
  animation: blob 7s infinite;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

/* ────────────────────────────────────────────────
   Να έχεις υπόψη: το Tailwind script φορτώνεται από functions.php
───────────────────────────────────────────────── */