/* Custom styles for Dahara Yoga e Constelação Familiar */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700&display=swap');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Offset to prevent sticky header from covering titles */
}

body {
  font-family: 'Inter', sans-serif;
  color: #3d2e34;
  background-color: #faf3ee;
  overflow-x: hidden;
}

/* Custom premium transitions */
.transition-smooth {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ken Burns effect for Hero section */
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.1) translate(-1%, -1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

.animate-kenburns {
  animation: kenburns 20s infinite ease-in-out;
}

/* Glassmorphism details */
.glass-effect {
  background: rgba(250, 243, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(224, 201, 181, 0.4);
}

.glass-header {
  background: rgba(250, 243, 238, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
