/*
Theme Name: InspireHER Child (Twenty Twenty-Five)
Template: twentytwentyfive
Author: A. Sharell Mather
Description: Block child theme for Twenty Twenty-Five with countdown + reusable sections for InspireHER 2025.
Version: 1.0.0
Text Domain: inspireher-tt25-child
*/
/* === InspireHER Countdown (final) === */
.inspireher-countdown {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 28px;

  background: #E94D2C !important;   /* orange pill */
  color: #fff !important;
  border-radius: 24px !important;
  padding: 18px 28px !important;
  font-weight: 700;
  box-shadow: none !important;
  width: fit-content;
  margin-inline: auto;
  overflow: hidden;                  /* ensure corners apply */
}

/* Each time unit — force LABEL above NUMBER via CSS Grid */
.inspireher-countdown .bpcdt-box {
  display: grid !important;
  justify-items: center !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  min-width: 74px;
  width: auto !important;
  height: auto !important;
}

/* Label on top */
.wp-block-ctb-countdown-time.inspireher-countdown .bpcdt-label {
  grid-row: 1 !important;
  margin-bottom: 4px !important;
  font-size: .85rem !important;
  letter-spacing: .04em;
  opacity: .95;
  text-transform: none;
}

/* Number below */
.inspireher-countdown .bpcdt-number {
  grid-row: 2 !important;
  font-size: 2.4rem !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  color: #fff !important;
}

/* Optional: hide separators (:) */
.inspireher-countdown .bpcdt-sep {
  display: none !important;
}

/* Responsive */
@media (max-width: 640px) {
  .inspireher-countdown {
    gap: 16px;
    padding: 14px 18px;
    border-radius: 20px;
  }
  .inspireher-countdown .bpcdt-number {
    font-size: 1.8rem !important;
  }
  .inspireher-countdown .bpcdt-label {
    font-size: .75rem !important;
  }
}

/* InspireHER mailing list signup */
.iher-signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 20px auto;
  background: #fff;
  padding: 8px 10px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.iher-signup-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 1rem;
  border-radius: 30px;
}

.iher-signup-form button {
  background: #E3542E; /* InspireHER orange */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.iher-signup-form button:hover {
  background: #c74220; /* darker hover orange */
}

/* Accessibility helper for hidden labels */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}/* InspireHER mailing list signup */
.iher-signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 20px auto;
  background: #fff;
  padding: 8px 10px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.iher-signup-form input[type="email"] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 1rem;
  border-radius: 30px;
}

.iher-signup-form button {
  background: #E3542E; /* InspireHER orange */
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.iher-signup-form button:hover {
  background: #c74220; /* darker hover orange */
}

/* Accessibility helper for hidden labels */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Smooth scroll for anchor links */
html { scroll-behavior: smooth; }

/* Keep section headings from hiding under sticky header (adjust 80px to your header height) */
#home, #save-the-date, #speakers, #highlights, #sponsors, #sponsor, #updates {
  scroll-margin-top: 80px;
}

/* === InspireHER Sponsors Section === */
.inspireher-sponsors {
  background: #E94D2C; /* orange background */
  max-width: 1025px;   
  margin: 45px auto;   /* center on page, reduce top margin */
  padding: 40px 0 0;   /* top reduced, bottom handled by CTA */
  text-align: center;
  color: #fff;
  border-radius: 0;    /* remove rounded edges */
  box-sizing: border-box;
}

/* Heading */
.inspireher-sponsors .sponsor-heading {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px; /* closer to logos */
}

/* Logos grid */
.inspireher-sponsors .sponsor-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 25px;
  justify-items: center;
  margin-bottom: 0; /* CTA sits directly below */
}

.inspireher-sponsors .sponsor-logos img {
  max-width: 120px;
  max-height: 65px;
  object-fit: contain;
}

/* CTA band flush with edges */
.inspireher-sponsors .sponsor-cta {
  background: #6B1C13; /* dark band */
  margin-top: 40px;
  margin-left: 0;
  margin-right: 0;
  padding: 25px 20px;
  border-radius: 0; /* no rounding */
}

.inspireher-sponsors .sponsor-cta p {
  margin: 0 0 12px 0;
  font-size: 1rem;
}

.inspireher-sponsors .btn-sponsor {
  display: inline-block;
  background: #FF6A42;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.inspireher-sponsors .btn-sponsor:hover {
  background: #d74324;
}
