/*
 Theme Name: ReelOmni Child
 Theme URI: https://ReelOmniCollective.com
 Description: Child theme for ReelOmni Collective v1.3. 
 Author: Jay Curtis
 Author URI: https://ReelOmniCollective.com
 Template: twentytwentyfour
 Version: 1.3
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: reelomni-child
*/

/* -----------------------------------------------------------
   ReelOmni Brand Tokens (available as CSS variables)
   ----------------------------------------------------------- */
:root {
  --ro-gold: #D4AF37;       /* Deep Gold – premium accents */
  --ro-black: #0D0D0D;      /* Midnight Black – primary base */
  --ro-red: #9F1D20;        /* Spotlight Red – CTAs */
  --ro-sand: #DCC8A4;       /* Desert Sand Beige – neutral */
  --ro-text: #F2F2F2;       /* Light text */
}

/* -----------------------------------------------------------
   Basic theme reset overrides
   ----------------------------------------------------------- */
body {
  background-color: var(--ro-black);
  color: var(--ro-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ro-gold);
  font-weight: 600;
}

a {
  color: var(--ro-gold);
  text-decoration: none;
}
a:hover {
  color: var(--ro-red);
  text-decoration: underline;
}

/* -----------------------------------------------------------
   Utility classes
   ----------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--ro-gold);
  color: var(--ro-black);
  font-weight: 600;
  text-align: center;
}
.btn:hover {
  background: var(--ro-red);
  color: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}
