/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Public site styles */

/* Hero video background — fade-out overlay hides Bunny play button flash before autoplay */
@keyframes heroVideoFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}



/* Hide number input spin buttons (up/down arrows) */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: none;
}

/* FontAwesome font-display: swap overrides moved to font-awesome.css */
/* Terms Page Styling */
.terms-block h1 {
  font-size: 1.5rem !important;
  /* 24px */
  line-height: 2rem !important;
  font-weight: 700 !important;
  margin-top: 2.5rem !important;
  margin-bottom: 1rem !important;
  padding-top: 1.5rem !important;
}

.terms-block h2 {
  font-size: 1.25rem !important;
  /* 20px */
  line-height: 1.75rem !important;
  font-weight: 600 !important;
  margin-top: 2rem !important;
  margin-bottom: 0.75rem !important;
  padding-top: 1.25rem !important;
}

.terms-block h3 {
  font-size: 1.125rem !important;
  /* 18px */
  line-height: 1.5rem !important;
  font-weight: 600 !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0.5rem !important;
  padding-top: 1rem !important;
}

.terms-fixed-content {
  font-size: 1rem !important;
  line-height: 1.25rem !important;
}

/* Reveal Animations */
.reveal-slide-down {
  opacity: 0;
  transform: translateY(-2rem);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-slide-down.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade-in {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

.reveal-fade-in.reveal-active {
  opacity: 1;
}