/* Custom styles for Coach Milo */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Video container responsive */
.aspect-video {
  aspect-ratio: 16 / 9;
}

/* Prose styles for blog content */
.prose {
  color: #374151;
  line-height: 1.75;
}

.prose h2 {
  color: #111827;
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose h3 {
  color: #111827;
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.prose p {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.prose strong {
  color: #111827;
  font-weight: 600;
}

.prose em {
  font-style: italic;
}

.prose ul {
  list-style-type: disc;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding-left: 1.625rem;
}

.prose ol {
  list-style-type: decimal;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  padding-left: 1.625rem;
}

.prose li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.prose a {
  color: #ff9a3e;
  text-decoration: underline;
  font-weight: 500;
}

.prose a:hover {
  color: #ff8a2e;
}

.prose blockquote {
  font-style: italic;
  border-left: 4px solid #ff9a3e;
  padding-left: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.prose-lg {
  font-size: 1.125rem;
  line-height: 1.8;
}

.prose-lg h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
}

.prose-lg h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
}

/* ==========================================
   NEW STYLES: Animations & Effects
   ========================================== */

/* Orange Underline Accent for Headings */
/* Wrapper for centered headings with accent */
.heading-accent-wrapper {
  text-align: center;
  width: 100%;
}
.heading-accent {
  position: relative;
  display: inline-block;
}
.heading-accent::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff9a3e, #ff8a2e);
  border-radius: 2px;
}

/* Orange Glow for Testimonial Cards */
.card-glow {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card-glow:hover {
  box-shadow: 0 8px 30px rgba(255, 154, 62, 0.25);
  transform: translateY(-2px);
}

/* Orange Glow for FAQ Cards */
.faq-glow {
  transition: box-shadow 0.3s ease;
}
.faq-glow:hover {
  box-shadow: 0 4px 20px rgba(255, 154, 62, 0.2);
}

/* Orange Glow for Feature Images */
.feature-image-glow {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.feature-image-glow:hover {
  box-shadow: 0 12px 40px rgba(255, 154, 62, 0.3);
  transform: scale(1.02);
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-animate.from-left {
  transform: translateX(-50px);
}
.scroll-animate.from-right {
  transform: translateX(50px);
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
