/* ========== HERO - Flashoot-style Centered Layout ========== */
/* Vertical centered stack: tagline → headline → phone → badges → CTAs → stats → featured */

.hero-flashoot {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.hero-flashoot-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.55) 100%),
    url('../assets/bg.png') center/cover no-repeat;
  z-index: 0;
}

.hero-flashoot-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-flashoot-platform-tag,
body.light-mode .hero-flashoot .hero-flashoot-platform-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 140, 0, 0.8);
  background: rgba(0, 0, 0, 0.38);
  color: #f7f7f7 !important;
  font-size: clamp(0.52rem, 2.1vw, 0.84rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
  max-width: 100%;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(255, 140, 0, 0.16) inset, 0 8px 22px rgba(0, 0, 0, 0.25);
}

.hero-flashoot-platform-tag::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%);
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.18);
  flex: 0 0 auto;
}

/* Main headline - light text on dark bg (override light-mode dark text) */
.hero-flashoot-headline,
body.light-mode .hero-flashoot .hero-flashoot-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-flashoot-headline em {
  font-style: italic;
  color: #FF8C00;
  font-weight: 700;
}

/* Subheading */
.hero-flashoot-subheading,
body.light-mode .hero-flashoot .hero-flashoot-subheading {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.95) !important;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 480px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Search + Location */
.hero-flashoot-search {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}

.hero-search-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  min-width: 0;
}

.hero-search-icon {
  width: 20px;
  height: 20px;
  color: #FF8C00;
  flex-shrink: 0;
}

.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: #ffffff;
  background: transparent;
  font-family: inherit;
}

.hero-search-input::placeholder {
  color: rgba(255,255,255,0.85);
}

.hero-location-wrap {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-left: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: color 0.2s;
}

.hero-location-wrap:hover {
  color: #FF8C00;
}

.hero-location-icon {
  width: 18px;
  height: 18px;
  color: #FF8C00;
  flex-shrink: 0;
}

.hero-location-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}

.hero-location-wrap:hover .hero-location-text {
  color: #FF8C00;
}

@media (max-width: 500px) {
  .hero-flashoot-platform-tag {
    margin-bottom: 0.85rem;
    padding: 0.42rem 0.65rem;
    letter-spacing: 0.04em;
    gap: 0.4rem;
    font-size: clamp(0.48rem, 2.65vw, 0.72rem);
  }

  .hero-flashoot-search {
    flex-direction: column;
    background: rgba(0,0,0,0.35);
  }
  
  .hero-search-wrap {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0.5rem;
  }
  
  .hero-location-wrap {
    width: 100%;
    justify-content: center;
    border-left: none;
    padding: 0.6rem;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
  }
}

/* CTAs */
.hero-flashoot-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 400px;
}

/* Stats strip - 4 columns with dividers */
.hero-flashoot-stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  max-width: 600px;
  width: 100%;
}

.hero-flashoot-stat-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  gap: 0.25rem;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.hero-flashoot-stat-col:last-child {
  border-right: none;
}

.hero-flashoot-stat-num,
body.light-mode .hero-flashoot .hero-flashoot-stat-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.2;
}

.hero-flashoot-stat-label,
body.light-mode .hero-flashoot .hero-flashoot-stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9) !important;
  text-align: center;
}

@media (max-width: 600px) {
  .hero-flashoot-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .hero-flashoot-stat-col {
    flex: 1 1 45%;
    border-right: none;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.75rem;
    background: rgba(0,0,0,0.35);
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  }
  .hero-flashoot-stat-num {
    font-size: 1.1rem;
  }
  .hero-flashoot-stat-label {
    font-size: 0.75rem;
  }
}

/* Bottom tagline */
.hero-flashoot-tagline-bottom,
body.light-mode .hero-flashoot .hero-flashoot-tagline-bottom {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.9) !important;
  margin: 0;
}

.hero-flashoot-cta-primary {
  flex: 1;
  min-width: 120px;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #FF8C00 0%, #E67E22 100%);
  color: #000000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  border: none;
}

.hero-flashoot-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.hero-flashoot-cta-secondary {
  flex: 1;
  min-width: 120px;
  padding: 0.9rem 1.5rem;
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
}

.hero-flashoot-cta-secondary:hover {
  border-color: #FF8C00;
  color: #FF8C00;
}

/* Become a Vendor link */
.hero-flashoot-vendor-link,
body.light-mode .hero-flashoot .hero-flashoot-vendor-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-flashoot-vendor-link:hover {
  color: #FF8C00;
}

/* Desktop */
@media (min-width: 600px) {
  .hero-flashoot-inner {
    max-width: 640px;
  }
  
  .hero-flashoot-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
}

/* Header over hero - semi-transparent so bg.png shows through */
body:has(.hero-flashoot) .header {
  background: rgba(0, 0, 0, 0.4) !important;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}
body:has(.hero-flashoot) .header .logo,
body:has(.hero-flashoot) .header .logo-with-icon {
  color: #ffffff !important;
}
body:has(.hero-flashoot) .header .logo-icon {
  color: #FF8C00;
}
body:has(.hero-flashoot) .header .nav-links a {
  color: rgba(255, 255, 255, 0.9);
}
body:has(.hero-flashoot) .header .nav-links a:hover,
body:has(.hero-flashoot) .header .nav-links a.active {
  color: #FF8C00;
}
