/*
Theme Name: VideoHook Child
Template: astra
Description: Dark cinematic child theme for VideoHook.co
Version: 2.0
*/

/* === IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --vh-orange: #f69321;
  --vh-coral: #ef3b39;
  --vh-mist: #ffc98a;
  --vh-dark: #231f20;
  --vh-black: #000000;
  --vh-white: #FFFFFF;
  --vh-gray: #1a1a1a;
  --vh-gradient: linear-gradient(135deg, #f69321, #ef3b39);
  --vh-font: 'Montserrat', sans-serif;
}

/* === RESET & BASE === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--vh-font);
  font-weight: 300;
  font-size: 1.1rem;
  background: var(--vh-dark);
  color: var(--vh-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

a { color: var(--vh-orange); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--vh-coral); }

img { max-width: 100%; height: auto; }

.vh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.vh-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--vh-gradient);
  color: var(--vh-white);
  font-family: var(--vh-font);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vh-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246,147,33,0.3);
  color: var(--vh-white);
}
.vh-btn-outline {
  background: transparent;
  border: 2px solid var(--vh-orange);
  color: var(--vh-orange);
}
.vh-btn-outline:hover {
  background: var(--vh-gradient);
  color: var(--vh-white);
  border-color: transparent;
}

/* === HEADER / NAV === */
.vh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
  background: transparent;
}
.vh-header.scrolled {
  background: rgba(35,31,32,0.95);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}
.vh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.vh-logo img { height: 40px; width: auto; }
.vh-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--vh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vh-nav { display: flex; gap: 32px; align-items: center; }
.vh-nav a {
  color: var(--vh-white);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.vh-nav a:hover { color: var(--vh-orange); }

/* Mobile hamburger */
.vh-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.vh-hamburger span { width: 28px; height: 2px; background: var(--vh-white); transition: 0.3s; }

/* === HERO SECTION === */
.vh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--vh-dark);
  overflow: hidden;
}
.vh-hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.vh-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(35,31,32,0.6) 0%, rgba(35,31,32,0.9) 100%);
}
.vh-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.vh-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}
.vh-hero h1 span {
  background: var(--vh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vh-hero p {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.vh-hero .vh-btn { margin: 0 8px; }
.vh-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.6;
  font-size: 1.5rem;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* === SECTIONS === */
.vh-section {
  padding: 100px 0;
}
.vh-section-dark { background: var(--vh-dark); }
.vh-section-darker { background: var(--vh-black); }
.vh-section-alt { background: #1a1a1a; }

.vh-section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.vh-section-subtitle {
  text-align: center;
  font-weight: 300;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
}

/* === TAGLINE === */
.vh-tagline { text-align: center; padding: 80px 24px; background: var(--vh-black); }
.vh-tagline h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.vh-tagline p { font-size: 1.3rem; font-weight: 300; opacity: 0.85; }

/* === SERVICE ICONS === */
.vh-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 3rem;
}
.vh-service-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: transform 0.3s, border-color 0.3s;
}
.vh-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--vh-orange);
}
.vh-service-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  background: var(--vh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vh-service-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.vh-service-card p { font-size: 1.05rem; opacity: 0.7; font-weight: 300; }

/* === PORTFOLIO GRID === */
.vh-portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.vh-filter-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--vh-white);
  font-family: var(--vh-font);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}
.vh-filter-btn.active, .vh-filter-btn:hover {
  background: var(--vh-gradient);
  border-color: transparent;
}
.vh-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vh-portfolio-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
}
.vh-portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.vh-portfolio-item:hover img { transform: scale(1.05); }
.vh-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity 0.3s;
}
.vh-portfolio-overlay h3 { font-size: 1rem; margin-bottom: 4px; }
.vh-portfolio-overlay span {
  font-size: 0.95rem;
  color: var(--vh-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vh-play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: var(--vh-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.vh-portfolio-item:hover .vh-play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.vh-play-icon::after {
  content: '';
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}

/* === PROCESS SECTION === */
.vh-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.vh-process-step {
  text-align: center;
  padding: 30px 20px;
}
.vh-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--vh-gradient);
  color: var(--vh-white);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.vh-process-step h3 { font-size: 1.1rem; margin-bottom: 12px; }
.vh-process-step p { font-size: 1.05rem; font-weight: 300; opacity: 0.75; line-height: 1.6; }

/* === STATS === */
.vh-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  padding: 80px 0;
}
.vh-stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--vh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.vh-stat-label { font-size: 1.05rem; font-weight: 300; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }

/* === TESTIMONIAL === */
.vh-testimonial-section { text-align: center; }
.vh-testimonial-quote {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  opacity: 0.9;
}
.vh-testimonial-avatar {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--vh-orange);
}
.vh-testimonial-name { font-weight: 600; font-size: 1rem; }
.vh-testimonial-role { font-size: 1rem; opacity: 0.6; }

/* === CTA === */
.vh-cta {
  text-align: center;
  padding: 100px 24px;
  position: relative;
  background: var(--vh-dark);
}
.vh-cta h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.vh-cta p { font-size: 1.2rem; font-weight: 300; opacity: 0.8; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* === FOOTER === */
.vh-footer {
  background: #1a1a1a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.vh-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.vh-footer h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--vh-orange);
}
.vh-footer a { color: rgba(255,255,255,0.7); font-size: 1.05rem; }
.vh-footer a:hover { color: var(--vh-orange); }
.vh-footer ul { list-style: none; }
.vh-footer li { margin-bottom: 10px; }
.vh-footer-social { display: flex; gap: 16px; margin-top: 16px; }
.vh-footer-social a { font-size: 1.2rem; color: rgba(255,255,255,0.5); }
.vh-footer-social a:hover { color: var(--vh-orange); }
.vh-footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  opacity: 0.5;
}

/* === CONTACT FORM === */
.vh-form-group { margin-bottom: 20px; }
.vh-form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--vh-mist);
}
.vh-form-group input,
.vh-form-group textarea,
.vh-form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--vh-white);
  font-family: var(--vh-font);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color 0.3s;
}
.vh-form-group input:focus,
.vh-form-group textarea:focus {
  outline: none;
  border-color: var(--vh-orange);
}
.vh-form-group textarea { min-height: 140px; resize: vertical; }

/* === PRICING CARDS === */
.vh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vh-pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.vh-pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--vh-orange);
}
.vh-pricing-card.featured {
  border-color: var(--vh-orange);
  position: relative;
}
.vh-pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--vh-gradient);
  color: white;
  padding: 4px 16px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 20px;
}
.vh-pricing-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.vh-pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--vh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.vh-pricing-period { font-size: 1rem; opacity: 0.5; margin-bottom: 24px; }
.vh-pricing-features { list-style: none; margin-bottom: 30px; text-align: left; }
.vh-pricing-features li {
  padding: 8px 0;
  font-size: 1.05rem;
  font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.vh-pricing-features li::before {
  content: '\2713';
  color: var(--vh-orange);
  margin-right: 10px;
  font-weight: 700;
}

/* === SCROLL ANIMATIONS === */
.vh-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.vh-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* === FAQ ACCORDION === */
.vh-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vh-faq-question {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
}
.vh-faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--vh-orange);
  transition: transform 0.3s;
}
.vh-faq-item.open .vh-faq-question::after {
  transform: rotate(45deg);
}
.vh-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-weight: 300;
  opacity: 0.75;
  font-size: 1.1rem;
  line-height: 1.7;
}
.vh-faq-item.open .vh-faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* === LIGHTBOX === */
.vh-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.vh-lightbox.active { display: flex; }
.vh-lightbox-close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 10000;
}
.vh-lightbox-content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.vh-lightbox-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .vh-nav { display: none; }
  .vh-hamburger { display: flex; }
  .vh-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(35,31,32,0.98);
    padding: 24px;
    gap: 16px;
  }
  .vh-hero h1 { font-size: 2.2rem; }
  .vh-hero p { font-size: 1rem; }
  .vh-services-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-process-grid { grid-template-columns: repeat(2, 1fr); }
  .vh-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .vh-stats { grid-template-columns: repeat(2, 1fr); }
  .vh-footer-grid { grid-template-columns: 1fr; text-align: center; }
  .vh-footer-social { justify-content: center; }
}

@media (max-width: 600px) {
  .vh-section { padding: 60px 0; }
  .vh-services-grid { grid-template-columns: 1fr; }
  .vh-portfolio-grid { grid-template-columns: 1fr; }
  .vh-process-grid { grid-template-columns: 1fr; }
  .vh-stats { grid-template-columns: 1fr; gap: 24px; }
  .vh-hero h1 { font-size: 1.8rem; }
  .vh-section-title { font-size: 1.6rem; }
  .vh-hero .vh-btn { display: block; margin: 8px auto; max-width: 260px; }
}

/* === OVERRIDE ASTRA DEFAULTS === */
.ast-container { max-width: 100%; padding: 0; }
.site-content .ast-container { padding: 0; }
#page { background: var(--vh-dark); }
.entry-content { margin: 0; padding: 0; }
.ast-separate-container .ast-article-single { background: transparent; padding: 0; }
.ast-separate-container .ast-article-post { background: transparent; }
.ast-single-post .entry-content { margin: 0; }
#primary { margin: 0; padding: 0; }
.ast-separate-container #primary { padding: 0; }

/* Hide Astra default header and footer - we use custom ones in templates */
#ast-desktop-header,
.ast-header-sections-navigation,
.main-header-bar,
#masthead,
.ast-above-header,
.ast-below-header,
header.site-header,
.site-footer,
.ast-small-footer,
.ast-footer-overlay,
footer.site-footer,
#colophon {
  display: none !important;
}

/* Hide Astra breadcrumbs and page title on template pages */
.ast-breadcrumbs-wrapper,
.ast-archive-description,
.entry-header {
  display: none !important;
}

/* ── Force-hide ALL Astra header/footer/breadcrumb elements ── */
#ast-desktop-header,
.main-header-bar,
#masthead,
header.site-header,
.site-footer,
#colophon,
.ast-small-footer,
footer.site-footer,
.ast-above-header,
.ast-below-header,
.ast-footer-overlay,
.ast-breadcrumbs-wrapper,
.entry-header,
.ast-header-sections-navigation {
    display: none !important;
}

/* CRITICAL LAYOUT FIX - force vertical stacking */
.ast-separate-container .entry-content > *,
.ast-plain-container .entry-content > *,
.entry-content > *,
.site-content > *,
#content > *,
.ast-container > * {
  display: block !important;
  width: 100% !important;
  float: none !important;
  flex: none !important;
}
.entry-content, .site-content, #content, .ast-container, #primary, #main {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 !important;
}
#secondary, .widget-area, aside.sidebar {
  display: none !important;
}
#ast-desktop-header, .main-header-bar, #masthead, header.site-header,
.site-footer, #colophon, .ast-small-footer, footer.site-footer,
.ast-above-header, .ast-below-header, .ast-footer-overlay,
.ast-breadcrumbs-wrapper, .entry-header, .ast-header-sections-navigation {
  display: none !important;
}


/* Testimonial Slider */
.vh-testimonial-slider { position: relative; overflow: hidden; }
.vh-testimonial-track { display: flex; transition: transform 0.6s ease-in-out; }
.vh-testimonial-slide { min-width: 100%; flex-shrink: 0; text-align: center; padding: 0 20px; box-sizing: border-box; }
