/* DJSK Promo – layout & theme */

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

:root {
  --bg: #0c0c0f;
  --surface: #16161c;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #e11d48;
  --accent-hover: #f43f5e;
  --border: #27272a;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 12, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent-hover);
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 4rem 0 3.5rem;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(225, 29, 72, 0.22), transparent);
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero p {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  color: #fff;
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Ad section */
.ad-section {
  padding: 3.5rem 0;
}

.ad-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}

.ad-section > .container > p {
  margin: 0 0 2rem;
  color: var(--muted);
}

.ad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.ad-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ad-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.ad-card .size {
  font-size: 0.85rem;
  color: var(--muted);
}

.ad-card p {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
}

.ad-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.ad-card button {
  margin-top: 0.25rem;
  padding: 0.6rem 1rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.ad-card button:hover {
  background: var(--accent-hover);
}

/* Contact */
.contact-section {
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.contact-section h2 {
  margin: 0 0 0.5rem;
}

.contact-section > .container > p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #71717a;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  align-self: flex-start;
}

.form-status {
  min-height: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-status--ok {
  color: #86efac;
}

.form-status--error {
  color: #fca5a5;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

/* Hero — Etsy promo banner */
.hero-banner-link {
  display: block;
  margin-top: 2rem;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: opacity 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.hero-banner-link:hover {
  opacity: 0.96;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-banner-link:focus-visible {
  outline: 2px solid var(--accent-hover);
  outline-offset: 3px;
}

.hero-promo-banner {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* SoundCloud embed */
.music-embed {
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.music-embed iframe {
  display: block;
  border: 0;
  border-radius: 12px;
  max-width: 100%;
}

/* Merch (Spreadshop) */
.merch-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.merch-section__heading {
  display: none;
}

.merch-section.merch-section--revealed .merch-section__heading {
  display: block;
  margin: 0 0 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.merch-mount {
  min-height: 120px;
}

.merch-mount #myShop {
  min-height: 400px;
}

/* Contact page */
.hero--compact {
  padding: 2.75rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.hero--compact h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__lead {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__lead a {
  color: var(--accent-hover);
  font-weight: 600;
}

.contact-section--page {
  padding: 3rem 0 4rem;
  border-top: none;
}

.contact-page-card {
  max-width: 32rem;
  margin: 0 auto;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-page-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.contact-page-card__hint {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.field-message {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form textarea {
  min-height: 6rem;
}

.char-counter {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}

.char-counter--warn {
  color: #fbbf24;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-cta {
  text-align: center;
}

.contact-cta .btn-primary {
  margin-top: 0.5rem;
}
