/* ============================================
   HERO.CSS — Hero Section
   Wedding Wow Creations | Luxury Wedding Planning
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* Video Background */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-video-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to bottom,
    rgba(15,10,20,0.45) 0%,
    rgba(15,10,20,0.52) 60%,
    rgba(15,10,20,0.72) 100%
  ); */
}

/* Centered Content */
.hero-center-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 200px 24px 100px;
  margin: 0 auto;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 6.5vw, 5.5rem);
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 0;
  font-weight: 700;
}

.hero-title .script {
  display: block;
  font-style: italic;
  color: var(--rose);
  /* changed from var(--gold) */
  font-size: clamp(3.6rem, 7vw, 6rem);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 24px 0 40px;
  line-height: 1.7;
}

/* Bigger Buttons */
.btn-lg {
  padding: 16px 36px !important;
  font-size: 0.88rem !important;
  letter-spacing: 0.08em;
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats Row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
  gap: 8px;
}

.hero-stat {
  padding: 0 32px;
  text-align: center;
}

.hero-stat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
}

/* Remove old hero-inner, hero-visual, hero-badge rules — no longer needed */
.hero-inner,
.hero-visual,
.hero-badge,
.hero-badge2,
.hero-img-wrap,
.hero-img-placeholder,
.hero-floral-bg {
  display: none;
}

/* Responsive */
@media (max-width: 640px) {
  .hero-stat {
    padding: 0 16px;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stats {
    gap: 20px;
  }
}

/* Text shadow for readability without video overlay */
.hero-title,
.hero-title .script {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-subtitle,
.eyebrow-light {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

/* Quick Services Bar */
#quick-bar {
  background: var(--white);
  padding: 32px 0;
  box-shadow: 0 4px 30px rgba(61, 43, 31, 0.06);
}

.quick-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.quick-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid var(--cream-dark);
  text-align: center;
  transition: background 0.2s;
}

.quick-bar-item:last-child {
  border-right: none;
}

.quick-bar-item:hover {
  background: var(--cream);
}

.quick-bar-icon {
  font-size: 1.8rem;
}

.quick-bar-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.quick-bar-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}