/* BANGING MUSIC v2 shared styles */

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

:root {
  --bg: #12100c;
  --bg-raised: #1c160e;
  --bg-header: #0d0b08;
  --text: #e8dcc3;
  --muted: #c9b78e;
  --dim: #8a7a58;
  --accent: #f0b429;
  --accent-2: #d4542a;
  --light: #efe4c8;
  --light-text: #1c160e;
  --border: #2e2618;
  --border-light: #3a2f1c;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Oswald', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--text); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

::selection { background: var(--accent-2); color: var(--bg); }

input, textarea, select, button { font-family: 'Oswald', sans-serif; }

@keyframes spin45 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg-header);
  border-bottom: 3px solid var(--accent);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
}

.brand {
  font-family: Anton, sans-serif;
  font-size: 21px;
  letter-spacing: 0.06em;
  border: 2px dotted var(--accent);
  padding: 4px 12px;
  white-space: nowrap;
  color: var(--text);
}
.brand:hover { color: var(--accent); }

.desktop-nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.desktop-nav a {
  color: var(--muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--accent); border-bottom-color: var(--accent); }

.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid #7a6a4a;
  color: var(--text);
  font-size: 16px;
  padding: 7px 12px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

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

.mobile-nav a {
  color: var(--muted);
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 760px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
}

/* Layout */
main { flex: 1; min-width: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 28px;
}

.section-dark { background: var(--bg-raised); }
.section-light {
  background: var(--light);
  color: var(--light-text);
}
.section-accent { background: var(--accent-2); }

.section-title {
  margin: 0 0 32px;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 46px);
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
}

.section-light .section-title { color: var(--light-text); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--dim);
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--accent-2);
  color: #f5ecd8;
  font-family: Anton, sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn:hover { background: var(--accent); color: var(--bg); }

.btn-secondary {
  background: var(--accent);
  color: var(--bg);
}
.btn-secondary:hover { background: var(--text); }

.btn-dark {
  background: var(--bg);
  color: var(--accent);
}
.btn-dark:hover { background: var(--accent); color: var(--bg); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--bg-raised);
  border: 1px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3,
.card p { margin: 0; }

.benefit-card {
  padding: 26px;
  gap: 12px;
}

.card-dark {
  background: #12100c;
}

.card-light {
  background: var(--light);
  color: var(--light-text);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.service-card {
  padding: 22px;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}

.hero-content {
  padding: 56px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.95;
  color: var(--text);
  text-transform: uppercase;
}

.hero-text {
  margin: 20px 0 0;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-portrait {
  position: absolute;
  left: 16%;
  bottom: 0;
  width: 48%;
  height: 88%;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.hero-record {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  animation: spin45 24s linear infinite;
  overflow: hidden;
}

.hero-record img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Marquee / trust strip */
.trust-strip {
  background: var(--light);
  border-bottom: 4px solid var(--accent);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-strip span {
  font-family: Anton, sans-serif;
  font-size: 20px;
  letter-spacing: 0.16em;
  color: var(--light-text);
}

.trust-strip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* Two column split */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border-light);
  background: var(--bg-raised);
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-question .icon { color: var(--accent); }

.faq-answer {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.8;
}

/* Forms */
.form-card {
  background: var(--light);
  color: var(--light-text);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.form-dark input,
.form-dark textarea,
.form-dark select {
  border: 2px solid var(--border-light);
  background: var(--bg);
  color: var(--text);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 12px;
  font-size: 14px;
  border: 2px solid var(--light-text);
  background: #fdf6e3;
  color: var(--light-text);
}

.form-dark .form-group input,
.form-dark .form-group textarea,
.form-dark .form-group select {
  border-color: var(--border-light);
  background: var(--bg);
  color: var(--text);
}

.form-status {
  display: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border: 2px solid transparent;
}

.form-status--success {
  display: block;
  background: rgba(90, 107, 58, 0.15);
  color: #7a9a4a;
  border-color: #5a6b3a;
}

.form-status--error {
  display: block;
  background: rgba(212, 84, 42, 0.15);
  color: #e0704a;
  border-color: #d4542a;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Listings */
.filter-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-tab {
  background: var(--bg-raised);
  color: var(--muted);
  border: 1px solid #4a3a22;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  cursor: pointer;
  text-transform: uppercase;
}

.filter-tab.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.listing-card {
  background: var(--light);
  color: var(--light-text);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.listing-image {
  height: 200px;
  border-bottom: 3px solid var(--light-text);
  overflow: hidden;
}

.listing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.listing-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.listing-title {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
}

.genre-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #fdf6e3;
  padding: 3px 8px;
  text-transform: uppercase;
}

.listing-text {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #4a3f2c;
  line-height: 1.7;
  flex: 1;
}

.listing-link {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--light-text);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 9px 16px;
}

.listing-link:hover { background: var(--accent-2); color: #f5ecd8; }

/* Track page */
.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: start;
}

.track-cover {
  width: 100%;
  max-width: 420px;
  border: 3px solid var(--accent);
}

.track-genre {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.track-title {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text);
  margin-bottom: 16px;
}

.track-meta {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Footer */
body > footer {
  background: var(--bg-header);
  border-top: 3px solid var(--accent);
  padding: 44px 28px 28px;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 10px;
}

.footer-grid a { color: var(--muted); font-size: 13px; letter-spacing: 0.1em; }
.footer-grid a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #5a4e38;
}

.footer-bottom a { color: #5a4e38; }
.footer-bottom a:hover { color: var(--accent); }

/* Utilities */
.text-center { text-align: center; }
.cta-section { padding: 56px 28px; text-align: center; }
.cta-section h2 {
  margin: 0;
  font-family: Anton, sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  color: #f5ecd8;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  border: 1px solid #7a6a4a;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 9px 16px;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-list a {
  border: 1px solid #4a3a22;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 7px 12px;
}

.tag-list a:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

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