/* ================================
   Global Reset & Base Styles
   ================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #05050a;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Justify all paragraph text */
p {
  text-align: justify;
  text-justify: inter-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ================================
   Header & Hero Banner
   ================================ */

header {
  background: radial-gradient(circle at top, #272747 0, #05050a 60%);
  padding: 0 0 3rem 0;
}

/* Full-width banner image */
.hero-banner {
  width: 100%;
}

.hero-banner img {
  width: 100%;
  height: auto;
}

/* ================================
   Layout Container
   ================================ */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

/* ================================
   Hero Row – Three Columns
   ================================ */

.hero {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-three {
  align-items: stretch;
}

.hero-column {
  width: 100%;
  display: flex;
}

/* Stack on mobile, three columns on wider screens */
@media (min-width: 900px) {
  .hero {
    flex-direction: row;
  }

  .hero-column {
    flex: 1;
  }
}

/* ================================
   Hero Text & Cards
   ================================ */

/* Shared subtitle style */
.hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* Button layout (shared) */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

/* Vertical buttons in listen card */
.hero-buttons-vertical {
  flex-direction: column;
  align-items: stretch;
}

/* Card styling – used for all three hero boxes */
.hero-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(5, 5, 10, 0.9));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

/* Hero card title */
.hero-card-title {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Optional: centre text for middle (Listen On) card */
.hero-listen-card {
  text-align: center;
}

.hero-listen-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}

/* Description card tweaks (left) */
.hero-description-card p {
  margin: 0;
}

/* ================================
   Buttons
   ================================ */

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #555;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease,
    background 0.1s ease,
    border-color 0.1s ease;
}

.btn-primary {
  background: #ff7f50;
  border-color: #ff7f50;
  color: #05050a;
  box-shadow: 0 0 18px rgba(255, 127, 80, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

/* ================================
   New Release Card (Right)
   ================================ */

.hero-card h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
  margin-bottom: 0.6rem;
}

.hero-card p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

/* Pill label (e.g. Single #1, 2025, etc.) */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.9;
}

/* Sample preview block */
.release-sample {
  margin-top: 20px;
  padding: 15px;
  background: #111;
  border-radius: 8px;
  border: 1px solid #333;
}

.release-sample h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.release-sample audio {
  width: 100%;
}

/* ================================
   Main & Sections
   ================================ */

main {
  padding: 3rem 1.5rem 4rem;
}

section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

section:last-of-type {
  border-bottom: none;
}

/* Section titles */
.section-title {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.9;
  text-align: center;
}

/* Two-column layout (About section) */
.two-col {
  display: grid;
  gap: 2rem;
}

.about-text p + p {
  margin-top: 1rem;
}

/* Tag row (genre chips) */
.tag-row {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.85;
}

.tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.35rem 0.9rem;
}

/* ================================
   Releases Grid
   ================================ */

.releases-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .releases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.release-card {
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.release-title {
  font-weight: 600;
  margin-top: 0.7rem;
  margin-bottom: 0.4rem;
}

.release-meta {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.release-links a {
  font-size: 0.8rem;
  text-decoration: underline;
  opacity: 0.9;
}

/* ================================
   Video Grid (if used later)
   ================================ */

.video-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================
   Contact Section
   ================================ */

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-size: 0.85rem;
  opacity: 0.9;
}

input,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.4);
  color: #f5f5f5;
  font-family: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #ff7f50;
  box-shadow: 0 0 0 1px rgba(255, 127, 80, 0.5);
}

/* Social links (contact section) */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-links a {
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.9;
}

/* ================================
   Footer
   ================================ */

footer {
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.7;
}
