/*
Theme Name: Voxborne Divi Child
Theme URI: https://voxborne.com
Description: A dark Voxborne child theme for Divi with black, red, gritty cyber-metal styling.
Author: Joseph Shoemaker
Template: Divi
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: voxborne-divi-child
*/

/* =========================================================
   VOXBORNE DIVI CHILD THEME
   Add these classes in Divi:
   vx-hero
   vx-hero-logo
   vx-section-title
   vx-card
   vx-band-card
   vx-music-card
   vx-button-red
   vx-button-outline
   ========================================================= */

:root {
  --vx-black: #050505;
  --vx-charcoal: #0d0d0d;
  --vx-panel: #111111;
  --vx-border: #2a2a2a;
  --vx-red: #b91f24;
  --vx-red-bright: #e03237;
  --vx-white: #f2f2f2;
  --vx-muted: #b8b8b8;
}

body,
.et-db #et-boc {
  background: var(--vx-black);
  color: var(--vx-white);
}

body {
  font-family: "Poppins", Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.et_pb_module_heading {
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vx-white);
}

p {
  color: var(--vx-muted);
  line-height: 1.65;
}

a {
  color: var(--vx-red);
}

a:hover {
  color: var(--vx-red-bright);
}

/* Header helpers */
.vx-header {
  background: rgba(5,5,5,0.96) !important;
  border-bottom: 1px solid #1f1f1f;
  backdrop-filter: blur(8px);
}

.vx-header-logo img,
.vx-header img {
  max-height: 58px;
  width: auto;
}

.vx-menu .et_pb_menu__menu > nav > ul > li > a,
.vx-menu a {
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vx-white) !important;
}

.vx-menu .et_pb_menu__menu > nav > ul > li.current-menu-item > a,
.vx-menu a:hover {
  color: var(--vx-red) !important;
}

/* Hero */
.vx-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--vx-black);
  background-size: cover;
  background-position: center right;
}

.vx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.82) 34%,
      rgba(0,0,0,0.38) 62%,
      rgba(0,0,0,0.12) 100%),
    radial-gradient(circle at 18% 50%,
      rgba(185,31,36,0.12) 0%,
      rgba(185,31,36,0.03) 35%,
      transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.vx-hero .et_pb_row,
.vx-hero .et_pb_column,
.vx-hero .et_pb_module {
  position: relative;
  z-index: 1;
}

.vx-hero-logo img {
  width: min(420px, 45vw);
  max-width: 100%;
  height: auto;
}

.vx-hero-title {
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  color: var(--vx-red);
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.05;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.vx-hero-copy,
.vx-hero-copy p {
  max-width: 540px;
  color: #e1e1e1;
  font-size: 17px;
  line-height: 1.55;
}

/* Buttons */
.vx-button-red .et_pb_button,
.et_pb_button.vx-button-red,
.vx-button-red {
  background: var(--vx-red) !important;
  color: #fff !important;
  border: 1px solid var(--vx-red) !important;
  border-radius: 0 !important;
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  padding: 14px 26px !important;
}

.vx-button-red .et_pb_button:hover,
.et_pb_button.vx-button-red:hover,
.vx-button-red:hover {
  background: var(--vx-red-bright) !important;
  border-color: var(--vx-red-bright) !important;
}

.vx-button-outline .et_pb_button,
.et_pb_button.vx-button-outline,
.vx-button-outline {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid #666 !important;
  border-radius: 0 !important;
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  padding: 14px 26px !important;
}

.vx-button-outline .et_pb_button:hover,
.et_pb_button.vx-button-outline:hover,
.vx-button-outline:hover {
  border-color: var(--vx-red) !important;
  color: #fff !important;
}

/* Section titles */
.vx-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.vx-section-title::before,
.vx-section-title::after {
  content: "";
  display: block;
  width: min(180px, 18vw);
  height: 1px;
  background: var(--vx-red);
  opacity: 0.9;
}

/* Cards */
.vx-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--vx-border);
  padding: 28px;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.vx-card:hover {
  border-color: var(--vx-red);
  background: rgba(255,255,255,0.055);
  transform: translateY(-4px);
}

.vx-card h3,
.vx-card h4 {
  color: var(--vx-white);
}

.vx-card strong,
.vx-red {
  color: var(--vx-red);
}

/* Album / latest release */
.vx-release-cover img,
.vx-music-card img,
.vx-band-card img {
  border: 1px solid var(--vx-border);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}

.vx-release-title {
  color: var(--vx-red);
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(40px, 4vw, 72px);
  line-height: 1;
}

/* Band cards */
.vx-band-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--vx-border);
  padding: 0 0 22px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease;
}

.vx-band-card:hover {
  border-color: var(--vx-red);
  transform: translateY(-4px);
}

.vx-band-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 0;
  box-shadow: none;
}

.vx-band-card h3 {
  font-size: 26px;
  line-height: 1;
  margin: 18px 18px 4px;
}

.vx-band-role {
  color: var(--vx-red);
  font-family: "Bebas Neue", "Oswald", Impact, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 18px 10px;
}

.vx-band-card p {
  margin-left: 18px;
  margin-right: 18px;
  font-size: 14px;
}

/* Music cards */
.vx-music-card {
  text-align: center;
}

.vx-music-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.vx-music-card:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.vx-music-card h3 {
  font-size: 26px;
  line-height: 1.05;
  margin-top: 14px;
}

/* Footer */
.vx-footer {
  background: #050505;
  border-top: 1px solid #1d1d1d;
}

.vx-footer p,
.vx-footer a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px) {
  .vx-hero {
    min-height: 600px;
    background-position: 62% center;
  }

  .vx-hero::before {
    background:
      linear-gradient(90deg,
        rgba(0,0,0,0.96) 0%,
        rgba(0,0,0,0.82) 45%,
        rgba(0,0,0,0.42) 100%);
  }

  .vx-hero-logo img {
    width: min(360px, 70vw);
  }
}

@media (max-width: 767px) {
  .vx-hero {
    min-height: 560px;
    background-position: 70% center;
  }

  .vx-hero::before {
    background:
      linear-gradient(180deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.94) 62%,
        rgba(0,0,0,0.98) 100%);
  }

  .vx-section-title {
    gap: 10px;
  }

  .vx-section-title::before,
  .vx-section-title::after {
    width: 58px;
  }

  .vx-card {
    padding: 22px;
  }
}
