/*
Theme Name: Moments with Magda
Theme URI: https://thefreewebsiteguys.com
Author: The Free Website Guys
Author URI: https://thefreewebsiteguys.com
Description: A beautiful movement & sound wellness theme with aerial classes, sound baths, and custom wellness experiences.
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: moments-with-magda
*/

/* ===============================================
   MOMENTS WITH MAGDA DESIGN SYSTEM
   Light theme with colorful, playful wellness aesthetic
   Colors from palette: Red, Orange, Yellow, Mint, Cyan, Pink, Cream
   All colors in HSL format
   =============================================== */

:root {
  /* Primary: Light Purple #B8A9C9 */
  --primary: 270 25% 72%;
  --primary-foreground: 0 0% 100%;

  /* Background: Warm Cream #F8F6F0 */
  --background: 40 30% 96%;
  /* Foreground: Dark Gray #2D2D2D (not pure black) */
  --foreground: 0 0% 18%;

  /* Card: White */
  --card: 0 0% 100%;
  --card-foreground: 0 0% 18%;

  /* Popover */
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 18%;

  /* Secondary: Vibrant Orange #FF6D00 */
  --secondary: 26 100% 50%;
  --secondary-foreground: 0 0% 100%;

  /* Muted: Light Gray (neutral) */
  --muted: 40 10% 95%;
  --muted-foreground: 0 0% 40%;

  /* Accent: Warm Yellow #F4C430 */
  --accent: 47 90% 57%;
  --accent-foreground: 0 0% 18%;

  /* Custom palette colors for card accents */
  --orange: 26 100% 50%;
  --pink: 330 70% 85%;
  --mint: 170 65% 55%;
  --teal: 190 100% 28%;
  --yellow: 47 90% 57%;
  --deep-purple: 270 50% 40%;

  /* Destructive */
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;

  /* Border */
  --border: 30 20% 88%;
  --input: 30 20% 88%;
  --ring: 270 25% 72%;

  /* Radius */
  --radius: 0.75rem;
}

/* ===============================================
   RESET & BASE STYLES
   =============================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Commissioner', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ===============================================
   CONTAINER & LAYOUT
   =============================================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===============================================
   ANIMATIONS
   =============================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animation-delay-100 {
  animation-delay: 100ms;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-300 {
  animation-delay: 300ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

/* Opacity states for scroll animations */
.opacity-0 {
  opacity: 0;
}

/* Bounce animation for scroll indicator */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* ===============================================
   BUTTONS
   =============================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  border-radius: var(--radius);
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-white {
  background-color: #ffffff;
  color: hsl(var(--deep-purple));
}

.btn-white:hover {
  opacity: 0.9;
}

.btn-lg {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* WordPress specific */
.alignleft {
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
