/* ═══════════════════════════════════════════════════
   EVENT COVERAGE — Page-Specific Styles
   (Base styles loaded from common.css)
   ═══════════════════════════════════════════════════ */

/* Hero */
.hero { position: relative; height: 40vh; min-height: 340px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://img.youtube.com/vi/vYdr2h9kmBQ/maxresdefault.jpg') center/cover no-repeat; opacity: 0.15; }
.letterbox-top, .letterbox-bottom { position: absolute; left: 0; width: 100%; height: 60px; background: #000; z-index: 2; }
.letterbox-top { top: 0; }
.letterbox-bottom { bottom: 0; }
.hero-content { position: relative; z-index: 3; padding: 2rem; }
.hero-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: 6px; color: var(--text-primary); margin-bottom: 0.5rem; }
.hero-content p { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--text-secondary); margin-bottom: 2rem; }

/* Sections */
section { padding: 5rem 3rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 3px; margin-bottom: 1.5rem; }

/* What We Deliver */
.deliver { background: var(--bg-secondary); }
.deliver-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.deliver-text p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.deliver-video { position: relative; width: 100%; padding-bottom: 56.25%; border: 1px solid var(--border); }
.deliver-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Included */
.included { background: var(--bg-primary); }
.included-grid { max-width: 1200px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.included-card { background: var(--bg-card); border: 1px solid var(--border); padding: 2rem; transition: border-color 0.3s, transform 0.3s; }
.included-card:hover { border-color: var(--accent-dim); transform: translateY(-4px); }
.included-card .icon { font-size: 1.8rem; margin-bottom: 1rem; }
.included-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.included-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* Process */
.process { background: var(--bg-secondary); }
.process-steps { max-width: 1000px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.process-step { text-align: center; position: relative; }
.process-step .step-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--accent-dim); margin-bottom: 0.5rem; }
.process-step h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; }
.process-step:not(:last-child)::after { content: ''; position: absolute; top: 1.5rem; right: -1rem; width: calc(2rem); height: 1px; background: var(--border); }

/* Example Work */
.examples { background: var(--bg-primary); }
.examples-grid { max-width: 1200px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.video-card { position: relative; cursor: pointer; overflow: hidden; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s; }
.video-card:hover { border-color: var(--accent-dim); transform: translateY(-4px); }
.video-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: opacity 0.3s; }
.video-card:hover img { opacity: 0.7; }
.play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.play-btn { width: 56px; height: 56px; border-radius: 50%; background: rgba(200,164,86,0.9); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.3s; }
.play-btn::after { content: ''; display: block; width: 0; height: 0; border-left: 18px solid var(--bg-primary); border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.video-card:hover .play-btn { transform: scale(1.1); background: rgba(228,197,119,0.95); }
.video-card-title { padding: 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text-secondary); }

/* Video Modal */
.video-modal { display: none; position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; }
.video-modal.active { display: flex; }
.video-modal-inner { position: relative; width: 90%; max-width: 960px; }
.video-modal-inner iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.modal-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* Pricing */
.pricing { background: var(--bg-secondary); text-align: center; }
.pricing .price-range { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: var(--accent); letter-spacing: 2px; margin: 1.5rem 0 1rem; }
.pricing .price-note { color: var(--text-secondary); font-size: 1rem; max-width: 600px; margin: 0 auto 0.5rem; line-height: 1.7; }
.pricing .price-cta { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--text-muted); font-size: 1.1rem; margin-top: 1.5rem; }

/* CTA */
.cta-section { background: var(--bg-primary); text-align: center; padding: 5rem 3rem; border-top: 1px solid var(--border); }
.cta-section h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 3px; margin-bottom: 1rem; }
.cta-section p { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.05rem; }

/* Responsive — page-specific content layouts */
@media (max-width: 900px) {
  section { padding: 3.5rem 1.5rem; }
  .deliver-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .examples-grid { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero { min-height: 300px; }
}
