/* ================================================================
   1. GLOBAL TYPOGRAPHY & GOLDEN RULES
================================================================ */

/* Google Fonts Import */

/* Headlines ALWAYS Montserrat */

h1, h2, h3, h4, h5, h6, .hero-headline {
  font-family: 'Montserrat', sans-serif !important;
}

/* Paragraphs & Body Copy ALWAYS Inter 20px */

body, p, li, span:not(.hero-tag):not(.coupon-code), .hero-sub {
  font-family: 'Inter', sans-serif !important;
}

p {
  font-size: 20px !important;
  line-height: 1.6;
}

/* Mobile Typography adjustment to prevent text clipping on small phones */

@media (max-width: 576px) {
  p {
    font-size: 18px !important;
  }
}

/* ================================================================
   2. LAYOUT & CONTAINERS
================================================================ */

.max-content-width {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   3. BULLETPROOF RESPONSIVE VIDEO (The "Glove")
================================================================ */

.bootstrap-studio-video-wrapper, .bootstrap-studio-video-wrapper iframe, video, iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
}

/* ================================================================
   4. ANNOUNCEMENT BAR (The "Motor")
================================================================ */

#announcement-bar {
  background-color: var(--bs-body-color, #0a0a0a) !important;
  z-index: 1030;
  overflow: hidden;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

#announcement-bar .container-fluid > div {
  width: 200%;
  display: flex;
  animation: ticker-scroll 30s linear infinite;
}

/* ================================================================
   5. GLOBAL BUTTON OVERRIDE (RULE #3: Green #1a7a45 -> Hover Blue #1d63c9)
================================================================ */

/* Normal State: Green #1a7a45 */

.btn, .btn-primary, .btn-buy {
  background-color: #1a7a45 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(26, 122, 69, 0.3) !important;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 800;
}

/* Hover State: Blue #1d63c9 */

.btn:hover, .btn-primary:hover, .btn-buy:hover {
  background-color: #1d63c9 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(29, 99, 201, 0.4) !important;
  transform: translateY(-2px);
}

/* Active/Focus State */

.btn:focus, .btn:active, .btn-primary:focus, .btn-primary:active {
  background-color: #1d63c9 !important;
  border: none !important;
  outline: none !important;
}

/* ================================================================
   6. FORCED VISIBILITY TEXT LINKS
================================================================ */

/* Normal Link State: Green #1a7a45 */

p a, span a, .text-link {
  color: #1a7a45 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #1a7a45 !important;
  text-decoration: underline !important;
  font-weight: 600;
  transition: color 0.2s ease;
}

/* Hover Link State: Blue #1d63c9 */

p a:hover, span a:hover, .text-link:hover {
  color: #1d63c9 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #1d63c9 !important;
  text-decoration: none !important;
}

/* ================================================================
   7. UTILITIES
================================================================ */

/* --- VIDEO BACKGROUND OVERLAY FIX --- */

.video-hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.video-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

/* ================================================================
   8. RS SOCIAL PROOF WIDGET — hlah.html
================================================================ */

.rs-proof {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-left: 4px solid #c0392b;
  border-radius: 4px;
  padding: 14px 40px 14px 14px;
  min-width: 280px;
  max-width: 340px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateX(calc(-100% - 30px));
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34,1.1,0.64,1), opacity 0.35s ease;
  overflow: hidden;
}

@media (max-width: 576px) {
  .rs-proof {
    bottom: 12px;
    left: 12px;
    max-width: calc(100vw - 24px);
  }
}

.rs-proof__avatar {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: #c0392b;
  border: 2px solid rgba(0,0,0,0.08);
}

.rs-proof__body {
  flex: 1;
  min-width: 0;
}

.rs-proof__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: #111111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

.rs-proof__action {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #444;
  line-height: 1.35;
}

.rs-proof__time {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #999;
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-transform: uppercase;
}

.rs-proof__close {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.7rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  user-select: none;
}

.rs-proof__close:hover {
  color: #c0392b;
}

.rs-proof__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #c0392b;
  transform-origin: left center;
  transform: scaleX(1);
}

.rs-proof::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 18px 18px 0;
  border-color: transparent #c0392b transparent transparent;
  opacity: 0.6;
}

