/* Golden Heart Academy — custom styles supporting landing-page-1.html replica */

html { scroll-behavior: smooth; }

/* ============ Sticky navy header ============ */
.gh-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.gh-header .wp-block-navigation .wp-block-navigation-item__content {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.2s ease;
}

.gh-header .wp-block-navigation .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--gold-400);
}

/* Nav CTA — gold pill */
.gh-nav-cta a.wp-block-navigation-item__content,
.gh-nav-cta .wp-block-navigation-item__content {
  background: var(--wp--preset--color--gold-500);
  color: var(--wp--preset--color--navy-500) !important;
  font-weight: 600;
  padding: 0.625rem 1.25rem !important;
  border-radius: 0.375rem;
  transition: background 0.2s ease;
}

.gh-nav-cta a.wp-block-navigation-item__content:hover,
.gh-nav-cta .wp-block-navigation-item__content:hover {
  background: var(--wp--preset--color--gold-400);
  color: var(--wp--preset--color--navy-500) !important;
}

/* ============ Hero ============ */
.gh-hero {
  position: relative;
  overflow: hidden;
}

/* Decorative blurred orbs in the hero background */
.gh-hero::before,
.gh-hero::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.gh-hero::before {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: var(--wp--preset--color--gold-500);
}
.gh-hero::after {
  bottom: 2.5rem;
  right: 5rem;
  width: 24rem;
  height: 24rem;
  background: var(--wp--preset--color--heart-500);
}

.gh-hero > * {
  position: relative;
  z-index: 1;
}

/* "Now Enrolling" badge with pulse dot */
.gh-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(197, 165, 90, 0.2);
  border: 1px solid rgba(197, 165, 90, 0.3);
  color: var(--wp--preset--color--gold-200);
  font-size: 0.875rem;
  font-weight: 500;
}

.gh-pulse-badge::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--wp--preset--color--gold-400);
  animation: gh-pulse 2s ease-in-out infinite;
}

@keyframes gh-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* Hero visual: circular gradient bg + logo + floating stat cards */
.gh-hero-visual {
  position: relative;
  width: 20rem;
  height: 20rem;
  margin: 0 auto;
}

.gh-hero-circle {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(197,165,90,0.3) 0%, rgba(196,30,58,0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gh-hero-circle img {
  width: 15rem;
  height: 15rem;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,0.3));
}

.gh-hero-stat {
  position: absolute;
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
  text-align: left;
}
.gh-hero-stat-tr { top: -1rem; right: -1rem; }
.gh-hero-stat-bl { bottom: -1rem; left: -1rem; }
.gh-hero-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.gh-hero-stat-number--gold { color: var(--wp--preset--color--gold-600); }
.gh-hero-stat-number--heart { color: var(--wp--preset--color--heart-500); }
.gh-hero-stat-label {
  font-size: 0.75rem;
  color: var(--wp--preset--color--gray-500);
  margin-top: 0.125rem;
}

/* Hero trust indicators row */
.gh-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  color: var(--wp--preset--color--gray-400);
  font-size: 0.875rem;
}
.gh-trust-row > div {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.gh-trust-row svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--wp--preset--color--gold-400);
}

/* ============ Buttons ============ */
.wp-block-button__link {
  padding: 1rem 2rem;
}

/* Gold solid (hero primary CTA) */
.gh-btn-gold .wp-block-button__link {
  background: var(--wp--preset--color--gold-500) !important;
  color: var(--wp--preset--color--navy-500) !important;
  font-weight: 700;
  padding: 1rem 2rem !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 20px 25px -5px rgba(197,165,90,0.2);
  transition: background 0.2s ease;
}
.gh-btn-gold .wp-block-button__link:hover {
  background: var(--wp--preset--color--gold-400) !important;
}

/* White outline on dark (hero secondary CTA) */
.gh-btn-outline .wp-block-button__link {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  font-weight: 600;
  padding: 1rem 2rem !important;
  border-radius: 0.5rem !important;
  transition: background 0.2s ease;
}
.gh-btn-outline .wp-block-button__link:hover {
  background: rgba(255,255,255,0.1) !important;
}

/* Heart-strip primary (white-on-heart) */
.gh-btn-heart .wp-block-button__link {
  background: #ffffff !important;
  color: var(--wp--preset--color--heart-600) !important;
  font-weight: 700;
  padding: 1rem 2rem !important;
  border-radius: 0.5rem !important;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2);
  transition: background 0.2s ease;
}
.gh-btn-heart .wp-block-button__link:hover {
  background: var(--wp--preset--color--gray-100) !important;
}

/* Heart-strip secondary (white outline) */
.gh-btn-outline-light .wp-block-button__link {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  font-weight: 600;
  padding: 1rem 2rem !important;
  border-radius: 0.5rem !important;
  transition: background 0.2s ease;
}
.gh-btn-outline-light .wp-block-button__link:hover {
  background: rgba(255,255,255,0.1) !important;
}

/* Eyebrow text */
.gh-eyebrow {
  color: var(--wp--preset--color--gold-600);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gh-eyebrow--gold-light {
  color: var(--wp--preset--color--gold-400);
}

/* ============ Program cards ============ */
.gh-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .gh-program-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gh-program-grid { grid-template-columns: 1fr; }
}

.gh-program-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--wp--preset--color--gray-100);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.05);
  transition: box-shadow 0.2s ease;
  height: 100%;
}
.gh-program-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.gh-program-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: var(--wp--preset--color--navy-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.gh-program-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--wp--preset--color--gold-400);
}
.gh-program-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wp--preset--color--navy-500);
  margin: 0 0 0.75rem;
  font-family: 'Playfair Display', serif;
}
.gh-program-card__desc {
  color: var(--wp--preset--color--gray-500);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.gh-program-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wp--preset--color--gold-600);
}
.gh-program-card__meta-sep { color: var(--wp--preset--color--gray-300); }

/* Corner ribbons */
.gh-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: 0.5rem;
}
.gh-ribbon--heart { background: var(--wp--preset--color--heart-500); }
.gh-ribbon--gold {
  background: var(--wp--preset--color--gold-500);
  color: var(--wp--preset--color--navy-500);
}

/* ============ About: feature mini-cards ============ */
.gh-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.gh-feature__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--wp--preset--color--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-feature__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--wp--preset--color--gold-600);
}
.gh-feature__title {
  font-weight: 600;
  color: var(--wp--preset--color--navy-500);
  font-size: 1rem;
  margin: 0;
}
.gh-feature__desc {
  color: var(--wp--preset--color--gray-500);
  font-size: 0.875rem;
  margin: 0;
}

/* Mission card (right column of About) */
.gh-mission-card {
  background: linear-gradient(135deg, #1B2A4A 0%, #131d36 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: #ffffff;
}
.gh-mission-card__avatar {
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  margin: 0 auto 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gh-mission-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gh-mission-card__title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wp--preset--color--gold-400);
  margin: 0 0 1.5rem;
}
.gh-mission-card__quote {
  text-align: center;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--wp--preset--color--gray-300);
  margin: 0 0 2rem;
}
.gh-mission-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.gh-mission-card__stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--wp--preset--color--gold-400);
  line-height: 1;
}
.gh-mission-card__stat-label {
  font-size: 0.75rem;
  color: var(--wp--preset--color--gray-400);
  margin-top: 0.25rem;
}

/* ============ Why Us: icon-stat tiles on navy ============ */
.gh-why-tile { text-align: center; }
.gh-why-tile__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(197,165,90,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.gh-why-tile__icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--wp--preset--color--gold-400);
}
.gh-why-tile__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
}
.gh-why-tile__desc {
  color: var(--wp--preset--color--gray-400);
  font-size: 0.875rem;
  margin: 0;
}

/* ============ Testimonial cards ============ */
.gh-testimonial {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}
.gh-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--wp--preset--color--gold-500);
}
.gh-stars svg { width: 1.25rem; height: 1.25rem; }
.gh-testimonial__quote {
  color: var(--wp--preset--color--gray-600);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.gh-testimonial__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.gh-testimonial__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--wp--preset--color--navy-500);
  color: var(--wp--preset--color--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.gh-testimonial__name {
  font-weight: 600;
  color: var(--wp--preset--color--navy-500);
  font-size: 0.875rem;
  line-height: 1.2;
}
.gh-testimonial__role {
  color: var(--wp--preset--color--gray-400);
  font-size: 0.75rem;
}

/* ============ Contact ============ */
.gh-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.gh-contact-row + .gh-contact-row { margin-top: 1.5rem; }
.gh-contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--wp--preset--color--navy-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gh-contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--wp--preset--color--gold-400);
}
.gh-contact-row__title {
  font-weight: 600;
  color: var(--wp--preset--color--navy-500);
  margin: 0 0 0.125rem;
}
.gh-contact-row__body {
  color: var(--wp--preset--color--gray-500);
  font-size: 0.875rem;
  margin: 0;
}

/* Contact form */
.gh-form {
  background: var(--wp--preset--color--gray-100);
  border-radius: 1rem;
  padding: 2rem;
}
.gh-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wp--preset--color--navy-500);
  margin: 0 0 1.5rem;
  font-family: 'Playfair Display', serif;
}
.gh-form .gh-form-row { margin-bottom: 1rem; }
.gh-form .gh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.gh-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--wp--preset--color--gray-700);
  margin-bottom: 0.25rem;
}
.gh-form input,
.gh-form select,
.gh-form textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--wp--preset--color--gray-300);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
  box-sizing: border-box;
}
.gh-form input:focus,
.gh-form select:focus,
.gh-form textarea:focus {
  border-color: var(--wp--preset--color--gold-500);
  box-shadow: 0 0 0 3px rgba(197,165,90,0.2);
}
.gh-form button {
  width: 100%;
  background: var(--wp--preset--color--navy-500);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.gh-form button:hover {
  background: var(--wp--preset--color--navy-600);
}

/* ============ Footer ============ */
.gh-footer-heading {
  color: var(--wp--preset--color--gold-400);
  font-weight: 600;
  margin: 0 0 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
}
.gh-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gh-footer-list li { margin-bottom: 0.5rem; }
.gh-footer-list a {
  color: var(--wp--preset--color--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.gh-footer-list a:hover { color: #ffffff; }

/* ============ Responsive ============ */
@media (max-width: 1023px) {
  .gh-hero-visual { display: none; }
}
@media (max-width: 768px) {
  .gh-trust-row { gap: 1rem; font-size: 0.75rem; }
  .gh-hero::before { width: 12rem; height: 12rem; }
  .gh-hero::after { width: 16rem; height: 16rem; }
  .gh-form .gh-form-grid { grid-template-columns: 1fr; }
}
