body {
  font-family: 'Work Sans', sans-serif;
  background-color: #faf3e0;
  color: #192a41;
}

.font-winner {
  font-family: "Graduate", serif;
}

.font-courier {
  font-family: 'Courier Prime', monospace;
}

.bg-navy {
  background-color: #192a41;
}
.text-navy {
  color: #192a41;
}
.bg-crimson {
  background-color: #a42a28;
}
.text-crimson {
  color: #a42a28;
}
.border-crimson {
  border-color: #a42a28;
}
.bg-tan {
  background-color: #d2b48c;
}
.text-tan {
  color: #d2b48c;
}
.bg-cream {
  background-color: #faf3e0;
}
.text-cream {
  color: #faf3e0;
}

.hero-bg {
  background: linear-gradient(
      135deg,
      rgba(25, 42, 65, 0.92) 0%,
      rgba(164, 42, 40, 0.88) 100%
    ),
    url("https://image.pollinations.ai/prompt/professional-baseball-stadium-field-sunset-dramatic-lighting-wide-angle-photorealistic-8k?width=1920&height=1080&nologo=true");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-button {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(164, 42, 40, 0.4);
}

.card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.95);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(25, 42, 65, 0.15);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.stat-number {
  font-family: "Graduate", serif;
  font-size: 3rem;
  font-weight: 800;
  color: #a42a28;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #d2b48c;
  border-radius: 0.5rem;
  background: white;
  color: #192a41;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #a42a28;
}

.footer-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #4a5568; /* gray-600 */
  color: white;
  padding: 0.5rem 0;
  width: 100%;
  transition: border-color 0.3s;
}

.footer-input:focus {
  outline: none;
  border-bottom-color: #d2b48c; /* Tan */
}

.schedule-slot {
  border: 2px solid #d2b48c;
  transition: all 0.3s;
  cursor: pointer;
}

.schedule-slot:hover {
  border-color: #a42a28;
  background-color: rgba(164, 42, 40, 0.05);
}

.schedule-slot.selected {
  border-color: #a42a28;
  background-color: rgba(164, 42, 40, 0.1);
}

.learning-point {
  transition: all 0.3s ease;
  border-radius: 0 0.5rem 0.5rem 0;
}

.learning-point:hover {
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.025em;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a42a28; /* Crimson */
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-link:hover::after {
  width: 100%;
}

.sub-nav-link {
  position: relative;
}
.sub-nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a42a28; /* Crimson */
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sub-nav-link:hover::after {
  width: 80%;
}

.social-icon:hover {
  transform: translateY(-2px);
  color: #d2b48c; /* Tan */
}

/* Coach Card Styles */
.coach-card-image {
  transition: transform 0.5s ease;
}
.group:hover .coach-card-image {
  transform: scale(1.05);
}
.coach-card-overlay {
  background: linear-gradient(to top, rgba(25, 42, 65, 0.8) 0%, transparent 60%);
  transition: background 0.5s ease;
}
.group:hover .coach-card-overlay {
  background: linear-gradient(to top, rgba(25, 42, 65, 0.95) 20%, rgba(25, 42, 65, 0.2) 100%);
}
.coach-card-details {
  transform: translateY(60%);
  opacity: 0;
  transition: all 0.5s ease;
}
.group:hover .coach-card-details {
  transform: translateY(0);
  opacity: 1;
}
.object-face {
  object-position: center 25%;
}

/* FAQ Styles */
 .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
 }
 .faq-icon {
  transition: transform 0.3s ease;
 }

/* Blog Styles */
.blog-post-card {
  transition: all 0.3s ease;
}
.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.blog-content h2 {
  font-family: "Graduate", serif;
  font-size: 1.875rem; /* 3xl */
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.blog-content p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}
.blog-content blockquote {
  border-left: 4px solid #a42a28;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #4a5568;
}

/* --- Multi-Step Form Styles (Shared by Booking & Contact) --- */
.booking-step, .contact-step {
  display: none;
}
.booking-step.active, .contact-step.active {
  display: block;
}
.progress-step {
  text-align: center;
  position: relative;
}
.progress-step-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: #e2e8f0; /* gray-300 */
  color: #4a5568; /* gray-600 */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.progress-step-label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #4a5568; /* gray-600 */
  transition: all 0.3s ease;
}
.progress-step.active .progress-step-icon {
  background-color: #192a41; /* navy */
  color: white;
  border-color: #192a41;
}
.progress-step.active .progress-step-label {
  color: #192a41; /* navy */
  font-weight: 600;
}
.progress-step.completed .progress-step-icon {
  background-color: #a42a28; /* crimson */
  color: white;
  border-color: #a42a28;
}
.progress-line {
  flex-grow: 1;
  height: 2px;
  background-color: #e2e8f0; /* gray-300 */
  position: relative;
  top: -1.25rem;
}

.program-card {
  border: 2px solid #e2e8f0;
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.program-card:hover {
  border-color: #a42a28;
  background-color: #fefcbf20;
}
.program-card.selected {
  border-color: #a42a28;
  background-color: #a42a281a;
  box-shadow: 0 0 0 2px #a42a28;
}

/* Contact Reason Card */
.contact-reason-card {
  border: 2px solid #d2b48c;
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}
.contact-reason-card:hover {
  border-color: #a42a28;
}
.contact-reason-card.selected {
  background-color: #192a41;
  color: white;
  border-color: #192a41;
}

/* Calendar Styles */
.calendar-day {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.calendar-day:hover:not(.disabled) {
  background-color: #f3f4f6; /* gray-100 */
}
.calendar-day.selected {
  background-color: #192a41; /* navy */
  color: white;
}
.calendar-day.today {
  border: 2px solid #a42a28; /* crimson */
}
.calendar-day.disabled {
  color: #d1d5db; /* gray-300 */
  cursor: not-allowed;
}

.time-slot {
  border: 2px solid #d2b48c;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.time-slot:hover {
  border-color: #a42a28;
}
.time-slot.selected {
  background-color: #192a41;
  color: white;
  border-color: #192a41;
}

/* Gallery Timeline Styles */
.timeline {
  position: relative;
  max-width: 768px;
  margin: 0 auto;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #d2b48c;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: white;
  border: 4px solid #a42a28;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item.left {
  left: 0;
}
.timeline-item.right {
  left: 50%;
}
.timeline-item.right::after {
  left: -10px;
}
.timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 6px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 10px;
  }
  .timeline-item.left, .timeline-item.right {
    left: 0;
  }
  .timeline-item::after {
    left: 10px;
  }
  .timeline-item.right::after {
    left: 10px;
  }
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img, .lightbox-content video {
    max-width: 100%;
    max-height: 90vh;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  line-height: 1;
}

