/* =========================================
   AOG PERFORMANCE — GLOBAL STYLES
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Bebas+Neue&display=swap');

:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-mid: #1e1e1e;
  --black-tint: #120808;
  --black-charcoal: #111418;
  --red: #cc0000;
  --red-bright: #e50000;
  --red-dark: #8b0000;
  --red-orange: #e84020;
  --silver: #c0c0c0;
  --silver-light: #e8e8e8;
  --gold: #c8a800;
  --white: #ffffff;
  --white-dim: #f0f0f0;
  --text-muted: #888888;
  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-height: 80px;
  --transition: 0.3s ease;
  --gradient-accent: linear-gradient(135deg, var(--red) 0%, var(--red-orange) 100%);
  --gradient-accent-gold: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  --glow-red: 0 0 18px rgba(204, 0, 0, 0.45);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* =========================================
   NAVIGATION
   ========================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.96) 0%,
    rgba(12, 6, 6, 0.90) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.22);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  background: linear-gradient(
    to bottom,
    rgba(8, 4, 4, 0.99) 0%,
    rgba(10, 5, 5, 0.97) 100%
  );
  border-bottom-color: rgba(204, 0, 0, 0.6);
  box-shadow: 0 2px 32px rgba(0, 0, 0, 0.7), 0 1px 0 rgba(204,0,0,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text .brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-logo-text .brand-sub {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver-light);
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border: 2px solid var(--red) !important;
  font-size: 13px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--red-bright) !important;
  border-color: var(--red-bright) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  padding: 30px 40px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  border-bottom: 2px solid var(--red);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--red);
}

/* =========================================
   PAGE HEADERS (inner pages)
   ========================================= */

.page-header {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 50px 80px;
  width: 100%;
}

.page-header-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.page-header-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}

/* =========================================
   TYPOGRAPHY UTILITIES
   ========================================= */

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gradient-accent);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 0.95;
}

.section-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 640px;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(to bottom, #d90000 0%, #aa0000 100%);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: linear-gradient(to bottom, #f00000 0%, #cc0000 100%);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204, 0, 0, 0.55), 0 0 0 1px rgba(204,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  border-color: rgba(204, 0, 0, 0.7);
  background: linear-gradient(to bottom, rgba(204,0,0,0.12) 0%, rgba(140,0,0,0.06) 100%);
  box-shadow: 0 6px 22px rgba(204, 0, 0, 0.25), 0 0 0 1px rgba(204,0,0,0.15);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-ghost:hover {
  background: linear-gradient(to bottom, #d90000 0%, #aa0000 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
}

.btn svg,
.btn .btn-arrow {
  transition: transform var(--transition);
}

.btn:hover svg,
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* =========================================
   CARDS
   ========================================= */

.card {
  background: var(--black-mid);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(204,0,0,0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 24px rgba(204,0,0,0.1);
}

/* =========================================
   RED DIVIDER
   ========================================= */

.red-rule {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 24px 0;
}

/* =========================================
   GRADIENT TEXT UTILITY
   ========================================= */

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--gradient-accent-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   SECTION TITLE — gradient underline accent
   ========================================= */

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(to right, var(--red), transparent);
}

/* =========================================
   SECTION SPACING
   ========================================= */

.section {
  padding: 100px 80px;
}

.section-sm {
  padding: 60px 80px;
}

.section-alt {
  background: var(--black-charcoal) !important;
}

.section-tint {
  background: var(--black-tint) !important;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: #060606;
  border-top: 1px solid rgba(204,0,0,0.2);
  padding: 70px 80px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--red);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.vmg-credit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 7px 18px;
  transition: var(--transition);
  white-space: nowrap;
}

.vmg-credit:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--red);
  background: rgba(204,0,0,0.1);
}

.footer-social svg {
  color: var(--text-muted);
  width: 16px;
  height: 16px;
  transition: color var(--transition);
}

.footer-social a:hover svg {
  color: var(--red);
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* =========================================
   BREADCRUMB
   ========================================= */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb span {
  color: rgba(255,255,255,0.3);
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1100px) {
  .section, .footer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .page-header-content {
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }
  .navbar {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section, .section-sm {
    padding: 60px 24px;
  }
  .page-header-content {
    padding: 30px 24px;
  }
  .page-header {
    height: 320px;
  }
  .page-header-title {
    font-size: 44px;
  }
  .footer {
    padding: 50px 24px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .mobile-menu {
    padding: 24px;
  }
}
