/* ============================================
   NOW THAT ITS OVER RECORDS — pages.css
   Styles for interior pages
   ============================================ */

/* ---- Page Hero ---- */
.page-hero {
  padding: 3rem 0 2rem;
  border-bottom: 2px solid var(--color-black);
}

.page-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.page-content {
  padding: 3rem 0 5rem;
}

/* ---- Releases Grid ---- */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.release-card {
  border: 2px solid var(--color-black);
  padding: 0;
  overflow: hidden;
}

.release-art {
  width: 100%;
  aspect-ratio: 1;
  background: #ccc;
  overflow: hidden;
}

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

.release-artist,
.release-title,
.release-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
}

.release-artist {
  font-weight: 700;
  padding-top: 0.6rem;
}

.release-date {
  color: #666;
  padding-bottom: 0.6rem;
}

@media (max-width: 700px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Artists Grid ---- */
.artists-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.artist-card-full {
  border: 2px solid var(--color-black);
  padding: 1.5rem;
}

.artist-photo {
  width: 100%;
  aspect-ratio: 1;
  background: #ccc;
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.artist-card-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.artist-card-bio {
  font-size: 0.8rem;
  color: #444;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .artists-grid-full {
    grid-template-columns: 1fr;
  }
}

/* ---- Shop Grid ---- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.shop-item {
  border: 2px solid var(--color-black);
  padding: 1rem;
}

.shop-img {
  width: 100%;
  aspect-ratio: 1;
  background: #ccc;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

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

.shop-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.shop-price {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Forms ---- */
.form-wrap {
  max-width: 560px;
}

.form-intro {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.35rem;
}

.form-input {
  display: block;
  width: 100%;
  border: 2px solid var(--color-black);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  padding: 0.65rem 0.75rem;
  outline: none;
  transition: background 0.15s;
}

.form-input:focus {
  background: #ece9e0;
}

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

/* ---- Checkboxes ---- */
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #333;
  cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border: 2px solid var(--color-black);
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.form-checkbox-label input[type="checkbox"]:checked {
  background: var(--color-black);
}

.form-checkbox-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.tos-link {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.tos-link:hover { color: #c41f1d; }

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  background: var(--color-black);
  color: var(--color-white);
  border: 2px solid var(--color-black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.btn-primary:hover {
  background: transparent;
  color: var(--color-black);
}

.btn-submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  font-size: 0.8rem;
}

/* ============================================
   PAGES — RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artists-grid-full {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-title {
    font-size: clamp(2rem, 8vw, 4rem);
    white-space: normal;
  }

  .form-wrap {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .releases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-body {
  padding: 4rem 0 6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: sticky;
  top: 2rem;
}

.contact-info-block {
  border-left: 3px solid var(--color-black);
  padding-left: 1.25rem;
}

.contact-info-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #333;
}

.contact-info-block a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-col {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .contact-body { padding: 2.5rem 0 4rem; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-info { position: static; }
}

/* ============================================
   SUBMIT PAGE
   ============================================ */
.submit-hero {
  padding: 4rem 0 2rem;
  border-bottom: 2px solid var(--color-black);
  text-align: center;
}

.submit-title {
  font-size: clamp(2rem, 6vw, 6rem);
  white-space: nowrap;
}

.submit-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: #555;
}

.submit-body {
  padding: 4rem 0 5rem;
}

.submit-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

/* Left info column */
.submit-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.submit-info-block {
  border-left: 3px solid var(--color-black);
  padding-left: 1.25rem;
}

.submit-info-heading {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.submit-info-block p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #333;
}

.submit-checklist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.submit-checklist li {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #333;
  padding-left: 1rem;
  position: relative;
}

.submit-checklist li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #c41f1d;
}

/* Right form column */
.submit-form-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.submit-form-col .btn-submit {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  width: 100%;
}

@media (max-width: 768px) {
  .submit-hero { padding: 2.5rem 0 1.5rem; }
  .submit-body { padding: 2rem 0 3rem; }
  .submit-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .submit-title {
    font-size: clamp(1.5rem, 8vw, 4rem);
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .submit-title { font-size: clamp(1.3rem, 9vw, 3rem); }
  .page-hero { padding: 2rem 0 1.5rem; }
  .page-content { padding: 2rem 0 3rem; }
}
