/*
Theme Name: AHRATA Extreem Dynamisch
Author: A. Chatojev
Description: Zeer dynamisch en visueel levendig WordPress-thema voor eclectische psychotherapie.
Version: 1.0
*/
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(270deg, #f3f4f7, #dce4f9);
  animation: gradientShift 15s ease infinite;
  overflow-x: hidden;
}
@keyframes gradientShift {
  0% {background-position: 0%;}
  50% {background-position: 100%;}
  100% {background-position: 0%;}
}
header, footer {
  text-align: center;
  padding: 2rem;
  background-color: rgba(42, 77, 143, 0.8);
  color: white;
}
main {
  max-width: 960px;
  margin: 2rem auto;
  padding: 1rem;
  animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
.therapy {
  background: rgba(255,255,255,0.8);
  border-left: 6px solid #2a4d8f;
  margin: 1.5rem 0;
  padding: 1rem;
  transition: transform 0.4s ease, background 0.5s ease;
}
.therapy:hover {
  transform: scale(1.03);
  background: #e3ecff;
}
.details {
  display: none;
}
nav select {
  padding: 0.5rem;
  font-size: 1rem;
  margin-top: 1rem;
}
