/*
Theme Name: Extendable Child ReelOmni
Theme URI: https://reelomnicollective.com
Description: Child theme for ReelOmni Collective built on Extendable
Author: Jay Curtis
Author URI: https://reelomnicollective.com
Template: extendable
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: extendable-child-reelomni
*/

/* ===== Root Vars ===== */
:root {
  --roc-gold:#D4AF37;
  --roc-red:#9F1D20;
  --roc-black:#0D0D0D;
  --roc-sand:#DCC8A4;
  --roc-text:#F2F2F2;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===== Reset / Base ===== */
html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--roc-black);
  color: var(--roc-text);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ===== Hero Section ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://reelomnicollective.com/wp-content/uploads/2025/09/roc-01-hero-bg.png') center/cover no-repeat;
  z-index: 0;
}

#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

#hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding: 20px;
}

#hero .logo {
  max-width: 260px;
  margin: 0 auto 1rem;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
}

#hero .subhead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--roc-sand);
}

#hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* CTA buttons */
.cta-primary {
  background: var(--roc-red);
  color: #fff;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(159,29,32,0.45);
}

.cta-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 8px;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.cta-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
}

/* ===== Promo Banner (rotating slides) ===== */
.hero-banner {
  margin-top: 2rem;
  max-width: 720px;
  width: 100%;
  position: relative;
}
.hero-banner img {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* optional simple fade animation for slides */
.hero-banner .slide {
  display: none;
  animation: fadeIn 1s ease forwards;
}
.hero-banner .slide.active {
  display: block;
}
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: none;}
}
