/* ============================================
   MY 7 STREAMS — Shared Styles
   ============================================ */

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; }

/* ── Hero Backgrounds ─────────────────────── */
.hero-bg {
  background: linear-gradient(135deg, #0f1b2e 0%, #1a2d4d 30%, #243b5e 50%, #1a2d4d 70%, #0f1b2e 100%);
  background-size: 400% 400%;
  animation: heroShift 12s ease-in-out infinite;
}

@keyframes heroShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,46,0.85) 0%, rgba(26,45,77,0.75) 50%, rgba(15,27,46,0.85) 100%);
}

/* Page hero with image bg */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,46,0.88) 0%, rgba(26,45,77,0.78) 50%, rgba(15,27,46,0.88) 100%);
}

/* ── Subtle Patterns ──────────────────────── */
.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-glow::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,165,116,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Gold Underline ───────────────────────── */
.gold-underline {
  position: relative;
  display: inline-block;
}
.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

/* ── Cards ────────────────────────────────── */
.stream-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stream-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-tile {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

/* ── Number Circle ────────────────────────── */
.number-circle { position: relative; }
.number-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(212,165,116,0.3);
}

/* ── Animations ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Mobile Menu ──────────────────────────── */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open {
  max-height: 500px;
}

/* ── Buttons ──────────────────────────────── */
.btn-glow {
  transition: all 0.3s ease;
}
.btn-glow:hover {
  box-shadow: 0 0 25px rgba(212,165,116,0.3);
  transform: translateY(-2px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d4a574;
  color: #0f1b2e;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  box-shadow: 0 10px 25px rgba(212,165,116,0.3);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #e2be98;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(212,165,116,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #1a2d4d;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #d4a574;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
  font-weight: 500;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: #d4a574;
  color: #d4a574;
}

/* ── CTA Gradient ─────────────────────────── */
.cta-gradient {
  background: linear-gradient(135deg, #1a2d4d 0%, #243b5e 40%, #1a2d4d 100%);
}

/* ── Section Divider Wave ─────────────────── */
.wave-divider {
  position: relative;
}
.wave-divider::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23f9fafb' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  pointer-events: none;
}
.wave-divider-white::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}
.wave-divider-navy::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%230f1b2e' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
}

/* ── Gold Accent Frame ────────────────────── */
.gold-frame {
  position: relative;
}
.gold-frame::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(212,165,116,0.3);
  border-radius: 1rem;
  pointer-events: none;
}

/* ── Stats Bar ────────────────────────────── */
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

/* ── Active Nav Link ──────────────────────── */
.nav-link-active {
  color: #d4a574 !important;
}

/* ── Newsletter Form ──────────────────────── */
.newsletter-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  outline: none;
  transition: border-color 0.3s ease;
}
.newsletter-input::placeholder {
  color: rgba(255,255,255,0.4);
}
.newsletter-input:focus {
  border-color: #d4a574;
}

/* ── VSL Video Section ────────────────────── */
.vsl-section {
  background: linear-gradient(135deg, #0a1628 0%, #0f1b2e 30%, #162742 50%, #0f1b2e 70%, #0a1628 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vsl-player {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(212, 165, 116, 0.2),
    0 0 60px rgba(212, 165, 116, 0.1),
    0 25px 60px rgba(0, 0, 0, 0.5);
}

.vsl-player video {
  width: 100%;
  display: block;
  border-radius: 1rem;
  background: #000;
}

.vsl-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: background 0.3s ease;
  border-radius: 1rem;
  z-index: 5;
}

.vsl-play-overlay:hover {
  background: rgba(0, 0, 0, 0.25);
}

.vsl-play-overlay.hidden {
  display: none;
}

.vsl-play-btn {
  width: 80px;
  height: 80px;
  background: rgba(212, 165, 116, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 30px rgba(212, 165, 116, 0.4);
}

.vsl-play-overlay:hover .vsl-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(212, 165, 116, 0.6);
}

@media (max-width: 640px) {
  .vsl-player {
    border-radius: 0.75rem;
  }
  .vsl-player video {
    border-radius: 0.75rem;
  }
  .vsl-play-overlay {
    border-radius: 0.75rem;
  }
  .vsl-play-btn {
    width: 60px;
    height: 60px;
  }
  .vsl-play-btn svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* ── Image hover zoom ─────────────────────── */
.img-zoom {
  overflow: hidden;
  border-radius: 1rem;
}
.img-zoom img {
  transition: transform 0.5s ease;
}
.img-zoom:hover img {
  transform: scale(1.05);
}
