/*
Theme Name: Roar Payments
Theme URI: https://roarpayments.com
Author: Roar Payments
Author URI: https://roarpayments.com
Description: A responsive black-and-gold business theme for Roar Payments, featuring merchant processing, payroll solutions, point of sale, editable homepage sections, navigation menus, contact details, and social links.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: roar-payments
*/

:root {
  --roar-black: #090909;
  --roar-charcoal: #171717;
  --roar-gold: #d4af37;
  --roar-gold-light: #f0d675;
  --roar-white: #ffffff;
  --roar-offwhite: #f7f7f5;
  --roar-text: #222222;
  --roar-muted: #666666;
  --roar-border: #dedede;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--roar-text);
  background: var(--roar-white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { color: var(--roar-gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, 90%); margin: 0 auto; }
.section { padding: 72px 0; }
.section-dark { background: var(--roar-black); color: var(--roar-white); }
.section-light { background: var(--roar-offwhite); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 18px; }
.section-intro { max-width: 760px; margin-bottom: 36px; color: var(--roar-muted); }
.section-dark .section-intro { color: #d7d7d7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9,9,9,.97);
  color: var(--roar-white);
  border-bottom: 1px solid rgba(212,175,55,.28);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-branding { display: flex; align-items: center; gap: 14px; }
.custom-logo { max-height: 56px; width: auto; }
.site-title { color: var(--roar-gold); font-size: 1.45rem; font-weight: 800; letter-spacing: .04em; }
.site-title:hover { text-decoration: none; }
.menu-toggle { display: none; background: transparent; color: white; border: 1px solid var(--roar-gold); padding: 10px 12px; border-radius: 4px; }
.primary-menu ul { display: flex; gap: 24px; align-items: center; list-style: none; margin: 0; padding: 0; }
.primary-menu a { color: white; font-weight: 700; }
.primary-menu a:hover { color: var(--roar-gold); text-decoration: none; }

.hero {
  background: radial-gradient(circle at top right, rgba(212,175,55,.18), transparent 28%), linear-gradient(135deg,#050505,#1b1b1b);
  color: white;
  min-height: 620px;
  display: grid;
  align-items: center;
}
.hero-grid { display: grid; grid-template-columns: 1.3fr .7fr; align-items: center; gap: 42px; }
.hero-eyebrow { color: var(--roar-gold); font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.02; margin: 14px 0 20px; }
.hero p { font-size: 1.2rem; max-width: 700px; color: #e4e4e4; }
.hero-card { border: 1px solid rgba(212,175,55,.5); background: rgba(255,255,255,.04); padding: 30px; border-radius: 16px; }
.hero-card h2 { color: var(--roar-gold); margin-top: 0; }
.button {
  display: inline-block;
  background: var(--roar-gold);
  color: #111;
  padding: 14px 26px;
  border-radius: 5px;
  font-weight: 800;
  margin-top: 10px;
}
.button:hover { background: var(--roar-gold-light); text-decoration: none; }
.button-outline { background: transparent; color: white; border: 1px solid var(--roar-gold); margin-left: 10px; }

.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card { background: white; border: 1px solid var(--roar-border); border-top: 4px solid var(--roar-gold); padding: 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.card h3 { margin-top: 0; font-size: 1.45rem; }
.features { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.feature { padding: 24px; border-left: 3px solid var(--roar-gold); background: rgba(255,255,255,.05); }
.about-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: start; }
.contact-card { background: white; padding: 30px; border-radius: 10px; border: 1px solid var(--roar-border); }
.contact-card input, .contact-card textarea, .contact-card select { width: 100%; padding: 12px; margin: 7px 0 16px; border: 1px solid #bbb; border-radius: 4px; font: inherit; }
.contact-card button, .contact-card input[type=submit] { background: var(--roar-gold); color: #111; border: 0; padding: 13px 22px; border-radius: 4px; font-weight: 800; cursor: pointer; }

.site-footer { background: #050505; color: white; padding: 54px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 34px; }
.site-footer h3, .site-footer h4 { color: var(--roar-gold); }
.site-footer ul { list-style: none; padding: 0; }
.social-links a { margin-right: 14px; }
.copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid #2b2b2b; color: #aaa; font-size: .95rem; }
.entry-content { padding: 50px 0; }

@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-block; }
  .primary-menu { display: none; width: 100%; }
  .primary-menu.is-open { display: block; }
  .primary-menu ul { flex-direction: column; align-items: flex-start; padding: 20px 0; }
  .header-inner { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .section { padding: 54px 0; }
  .features { grid-template-columns: 1fr; }
  .button-outline { margin-left: 0; display: table; }
}
