/*
Theme Name: ZM
Theme URI: https://example.com/zm
Author: Zack Magee
Author URI: https://example.com
Description: Gatsby-inspired black and gold with a hint of Miami art deco.
Version: 1.0.0
Text Domain: zm
*/

:root {
  --bg: #050506;
  --ink: #f6f2e8;
  --gold: #c9a24e;
  --gold-soft: rgba(201, 162, 78, 0.18);
  --gold-line: rgba(201, 162, 78, 0.6);
  --teal: #1fc3b4;
  --pink: #ff7a8a;
  --shadow: rgba(0, 0, 0, 0.55);
  --glass: rgba(10, 10, 14, 0.88);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(160deg, rgba(5, 5, 6, 0.96), rgba(10, 10, 14, 0.98)),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 78, 0.12), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(31, 195, 180, 0.08), transparent 45%);
  min-height: 100vh;
}

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

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

.zm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.zm-header {
  padding: 28px 0;
  position: relative;
  z-index: 10;
}

.zm-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 72px);
}

.zm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(8, 8, 11, 0.92);
  box-shadow: 0 18px 40px var(--shadow);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 78, 0.25);
  width: 100%;
}

.zm-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.zm-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--gold-line);
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  background:
    linear-gradient(135deg, rgba(201, 162, 78, 0.08), rgba(31, 195, 180, 0.08));
}

.zm-brand-title {
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.zm-brand-sub {
  font-size: 0.85rem;
  color: rgba(242, 241, 238, 0.7);
}

.zm-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zm-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.zm-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 78, 0.3);
  background: rgba(6, 6, 8, 0.7);
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zm-nav a:hover,
.zm-nav .current-menu-item > a {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(201, 162, 78, 0.25);
  border-color: var(--gold);
  background: rgba(12, 12, 16, 0.9);
}

.zm-main {
  flex: 1;
  padding: 0 0 60px;
}

.zm-hero {
  margin-top: 24px;
  padding: clamp(20px, 4vw, 44px);
  border-radius: 18px;
  border: 1px solid rgba(201, 162, 78, 0.35);
  background: linear-gradient(150deg, rgba(6, 6, 9, 0.95), rgba(12, 12, 16, 0.98));
  box-shadow: 0 22px 50px var(--shadow);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.zm-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 162, 78, 0.18);
  border-left: 0;
  border-right: 0;
  opacity: 0.55;
}

.zm-hero h1 {
  margin: 0 0 16px;
  font-family: "Cinzel", serif;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  letter-spacing: 4px;
}

.zm-hero p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: rgba(242, 241, 238, 0.85);
  line-height: 1.7;
}

.zm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 32px;
  width: 100%;
}

.band-intro {
  margin-top: 24px;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.band-card {
  display: grid;
  gap: 16px;
}

.band-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 78, 0.28);
  background: rgba(8, 8, 12, 0.9);
  aspect-ratio: 16 / 10;
}

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

.band-links {
  margin: 8px 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
}

.band-links a {
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 78, 0.35);
  background: rgba(6, 6, 8, 0.7);
}

.band-description {
  margin: 0 0 10px;
  color: rgba(242, 241, 238, 0.82);
  line-height: 1.6;
}

.band-songs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.band-songs li {
  padding: 8px 0 10px;
  border-bottom: 1px solid rgba(201, 162, 78, 0.12);
}

.band-songs li:last-child {
  border-bottom: 0;
}

.band-songs a {
  display: block;
  font-weight: 600;
  color: var(--ink);
}

.song-note {
  display: block;
  margin-top: 4px;
  color: rgba(242, 241, 238, 0.7);
  font-size: 0.92rem;
}

.zm-card {
  padding: 20px;
  border-radius: 14px;
  border: 2px solid rgba(201, 162, 78, 0.32);
  background: rgba(9, 9, 12, 0.88);
  position: relative;
}

.zm-card::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 30%;
  right: 30%;
  height: 2px;
  background: rgba(201, 162, 78, 0.6);
}

.zm-card h3 {
  margin-top: 6px;
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
}

.zm-meta {
  font-size: 0.85rem;
  color: rgba(242, 241, 238, 0.65);
}

.zm-line {
  height: 2px;
  margin: 24px 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.zm-content {
  padding: 24px 0 0;
  line-height: 1.8;
}

.zm-content h2,
.zm-content h3 {
  font-family: "Cinzel", serif;
}

.zm-post {
  padding: clamp(20px, 4vw, 40px);
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 78, 0.28);
  background: rgba(8, 8, 12, 0.92);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  width: 100%;
}

.single .zm-hero {
  margin-bottom: 24px;
}

.single .zm-post {
  padding: clamp(22px, 4vw, 44px);
  margin-top: 8px;
}

.single .zm-post p {
  margin: 0 0 18px;
}

.page .zm-hero {
  margin-bottom: 24px;
}

.page .zm-post {
  padding: clamp(22px, 4vw, 44px);
  margin-top: 8px;
}

.page .zm-post p {
  margin: 0 0 18px;
}

.zm-footer {
  padding: 24px 0 40px;
}

.zm-footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(8, 8, 12, 0.96);
  border: 1px solid rgba(201, 162, 78, 0.22);
  width: 100%;
}

.zm-footer-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(242, 241, 238, 0.6);
  letter-spacing: 2px;
}

.zm-footer-value {
  font-size: 1rem;
}

.zm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: linear-gradient(120deg, rgba(201, 162, 78, 0.2), rgba(10, 10, 14, 0.9));
  color: var(--ink);
  font-weight: 600;
}

.search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-form input[type="search"] {
  flex: 1;
  min-width: 220px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 179, 106, 0.45);
  background: rgba(7, 7, 9, 0.6);
  color: var(--ink);
}

.search-form input[type="submit"] {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: linear-gradient(120deg, rgba(215, 179, 106, 0.25), rgba(46, 215, 196, 0.2));
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}

.zm-skip {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  z-index: 100;
}

.zm-skip:focus {
  left: 12px;
}

@media (max-width: 820px) {
  .zm-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
