/* GymClankers — /epk page styles */

:root {
  --bg: #050505;
  --accent: #BA2525;
  --accent-dim: #851A1A;
  --accent-glow: rgba(186, 37, 37, 0.3);
  --text: #efefef;
  --text-muted: #aaa;
  --surface: rgba(20, 20, 20, 0.85);
  --gold: #C5A54E;
}

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

body {
  font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Navigation ── */
.epk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(186, 37, 37, 0.15);
}

.epk-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.epk-nav a:hover {
  color: var(--accent);
}

/* ── Layout ── */
.epk-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

/* ── Header ── */
.epk-header {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(186, 37, 37, 0.1);
  margin-bottom: 3rem;
}

.epk-header h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}

.epk-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

/* ── Sections ── */
.epk-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.epk-section:last-child {
  border-bottom: none;
}

.epk-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ── Bio ── */
.epk-bio {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd;
}

.epk-bio strong {
  color: var(--text);
  font-weight: 600;
}

/* ── Character ── */
.epk-character {
  font-size: 1rem;
  line-height: 1.8;
  color: #aaa;
  max-width: 700px;
}

/* ── Images grid ── */
.epk-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.epk-image-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.epk-image-slot {
  aspect-ratio: 1;
  background: #0a0a0a;
  border-bottom: 1px dashed rgba(186, 37, 37, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.epk-image-slot.landscape {
  aspect-ratio: 16 / 9;
}

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

/* Hide placeholder text when image present */
.epk-image-slot:has(img) {
  color: transparent;
}

.epk-image-meta {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.epk-image-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.epk-download {
  font-size: 0.7rem;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
}

.epk-download:hover {
  color: #e03030;
}

/* ── Logo display ── */
.epk-logo-display {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.epk-logo-preview {
  width: 120px;
  height: 120px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.epk-logo-preview svg {
  width: 100%;
  height: 100%;
}

.epk-logo-info {
  flex: 1;
  min-width: 200px;
}

.epk-logo-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.epk-logo-info .epk-download {
  font-size: 0.8rem;
}

/* ── Color palette ── */
.epk-colors {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.epk-color {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.epk-color-swatch {
  width: 64px;
  height: 64px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.epk-color-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.epk-color-hex {
  font-size: 0.65rem;
  color: #555;
  font-family: monospace;
}

/* ── Links grid ── */
.epk-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.epk-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: border-color 0.3s, background 0.3s;
}

.epk-link:hover {
  border-color: var(--accent);
  background: rgba(186, 37, 37, 0.08);
}

.epk-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Contact ── */
.epk-contact-info {
  color: #aaa;
  font-size: 0.95rem;
}

.epk-contact-info a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

.epk-contact-info a:hover {
  color: #e03030;
}

/* ── Footer ── */
.epk-footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(186, 37, 37, 0.1);
}

.epk-footer a {
  color: #444;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  transition: color 0.3s;
}

.epk-footer a:hover {
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .epk-container {
    padding: 0 1.25rem 3rem;
  }

  .epk-nav {
    padding: 1rem 1.25rem;
  }

  .epk-header {
    padding: 2.5rem 0 2rem;
  }

  .epk-images-grid {
    grid-template-columns: 1fr;
  }

  .epk-colors {
    gap: 1rem;
  }

  .epk-color-swatch {
    width: 48px;
    height: 48px;
  }

  .epk-logo-display {
    flex-direction: column;
    align-items: flex-start;
  }
}
