/*
 Theme Name:   Clothespin Records Child
 Theme URI:    https://clothespinrecords.com
 Description:  Clothespin Records child theme for Hello Elementor. Brand accent #433177.
 Author:       DiamondAI
 Author URI:   https://clothespinrecords.com
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  clothespin-records-child
*/

/* =====================
   CHILD THEME OVERRIDES
   ===================== */

:root {
  --brand: #433177;
  --brand-light: #5a44a0;
  --brand-dark: #2f1f5a;
  --black: #0A0A0A;
  --charcoal: #141414;
  --soft-white: #F3F3F3;
  --warm-gray: #A7A7A7;
  --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'Inter', 'Source Sans Pro', sans-serif;
}

body {
  background-color: var(--black);
  color: var(--soft-white);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* --- HEADER / NAV --- */
.site-header {
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(243, 243, 243, 0.06);
}

.site-header .menu a {
  color: var(--soft-white);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-header .menu a:hover {
  color: var(--brand);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--soft-white);
}

.hero-content .subheadline {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--warm-gray);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* --- BUTTONS --- */
.btn-primary {
  background-color: var(--brand);
  color: var(--soft-white);
  border: none;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--brand-light);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--soft-white);
  border: 1px solid rgba(243, 243, 243, 0.3);
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* --- ARTIST SPOTLIGHT --- */
.artist-spotlight {
  padding: 6rem 0;
}

.artist-spotlight .artist-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  transition: all 0.4s ease;
}

.artist-spotlight .artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(67, 49, 119, 0.15);
}

.artist-spotlight .artist-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}

.artist-spotlight .artist-card:hover img {
  filter: grayscale(0%);
}

.artist-spotlight .artist-info {
  padding: 1.5rem;
}

.artist-spotlight .artist-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.artist-spotlight .artist-tagline {
  color: var(--warm-gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* --- LATEST RELEASES --- */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 0;
}

.release-card {
  background: var(--charcoal);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.release-card:hover {
  background: #1a1a1a;
}

.release-card .cover-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1rem;
}

.release-card .release-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.release-card .release-artist {
  color: var(--warm-gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* --- STREAMING ECOSYSTEM --- */
.streaming-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 4rem 0;
}

.streaming-cloud .platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--charcoal);
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.streaming-cloud .platform-icon:hover {
  background: var(--brand);
  transform: scale(1.1);
}

/* --- EMAIL SIGNUP --- */
.email-signup {
  background: linear-gradient(135deg, var(--charcoal), var(--black));
  border: 1px solid rgba(67, 49, 119, 0.2);
  padding: 5rem 2rem;
  text-align: center;
}

.email-signup h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.email-signup p {
  color: var(--warm-gray);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.email-signup input[type="email"] {
  background: transparent;
  border: 1px solid rgba(243, 243, 243, 0.2);
  color: var(--soft-white);
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 400px;
  font-family: var(--font-body);
}

.email-signup input[type="email"]:focus {
  border-color: var(--brand);
  outline: none;
}

/* --- ARTIST SUBMISSION --- */
.submission-form {
  max-width: 700px;
  margin: 0 auto;
}

.submission-form .form-group {
  margin-bottom: 1.5rem;
}

.submission-form label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--warm-gray);
  margin-bottom: 0.5rem;
}

.submission-form input,
.submission-form textarea,
.submission-form select {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid rgba(243, 243, 243, 0.1);
  color: var(--soft-white);
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}

.submission-form input:focus,
.submission-form textarea:focus {
  border-color: var(--brand);
  outline: none;
}

.submission-form .file-upload {
  border: 2px dashed rgba(243, 243, 243, 0.15);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.submission-form .file-upload:hover {
  border-color: var(--brand);
}

/* --- FOOTER --- */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(243, 243, 243, 0.06);
  padding: 4rem 2rem;
}

.site-footer .footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--soft-white);
}

.site-footer a {
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--brand);
}

/* --- MISC --- */
.section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.section-subheading {
  color: var(--warm-gray);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 600px;
}

.purple-accent {
  color: var(--brand);
}

.border-accent {
  border-color: rgba(67, 49, 119, 0.3);
}

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

  .hero-section {
    min-height: 70vh;
  }

  .streaming-cloud .platform-icon {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
}

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