/**
 * V3.1 Premium Sections - Optimized Styles
 * Icons sized properly, clean layouts
 * 
 * @package Cloe_Hubbard
 * @version 3.1.0
 */

/* ================================================
   RELEASE SPOTLIGHT
   ================================================ */

.release-spotlight {
    background: var(--color-dark-gray);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.spotlight-cover img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.placeholder-cover {
    aspect-ratio: 1;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-cover svg {
    width: 50px;
    height: 50px;
    stroke: #d4af37;
    opacity: 0.4;
}

.spotlight-label {
    color: #d4af37;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.spotlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.spotlight-date {
    color: #e8e8e8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.spotlight-tagline {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.spotlight-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37, #f0c840);
    color: #0a0a0a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.spotlight-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}



/* ================================================
   PREMIUM STREAMING GRID
   ================================================ */

.streaming-section-v31 {
    background: #0a0a0a;
}

.streaming-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #1a1a1a;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 140px;
}

.platform-card:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}


.platform-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
}

.platform-icon svg {
    width: 100%;
    height: 100%;
    fill: #d4af37;
}

.platform-name {
    color: #e8e8e8;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Featured YouTube Card */
.platform-card-featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 21, 56, 0.1));
    border-color: #d4af37;
}

.platform-icon-large {
    width: 44px;
    height: 44px;
    margin-bottom: 0.75rem;
}

.platform-icon-large svg {
    width: 100%;
    height: 100%;
    fill: #d4af37;
}

.platform-name-large {
    color: #d4af37;
    font-weight: 700;
    font-size: 1.05rem;
    display: block;
}

.platform-subtitle {
    color: #888;
    font-size: 0.85rem;
    display: block;
    margin-top: 0.25rem;
}

/* ================================================
   PRESS SECTION
   ================================================ */

.press-section {
    background: #0a0a0a;
}

.press-quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.press-quote-card {
    background: #1a1a1a;
    padding: 1.5rem;
    border-left: 4px solid #d4af37;
    border-radius: 8px;
}

.quote-mark {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.quote-source {
    font-style: italic;
    color: #d4af37;
    font-size: 0.9rem;
}

/* ================================================
   SHOWS PREVIEW
   ================================================ */

.no-shows-state {
    text-align: center;
    padding: 3rem 0;
}

.no-shows-icon svg {
    width: 60px;
    height: 60px;
    stroke: #d4af37;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.no-shows-state h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #e8e8e8;
}

.no-shows-state p {
    font-size: 1.05rem;
    color: #888;
}

/* ================================================
   SOCIAL CLIPS
   ================================================ */

.social-clips-section {
    background: #1a1a1a;
}

.social-clips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-clip-card {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.social-clip-card:hover {
    transform: translateY(-8px);
}

.clip-thumbnail {
    position: relative;
    aspect-ratio: 9/16;
    background: #2a2a2a;
}

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

.clip-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clip-placeholder svg {
    width: 40px;
    height: 40px;
    fill: #d4af37;
    opacity: 0.4;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.play-overlay svg {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.clip-platform-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(10, 10, 10, 0.9);
    color: #d4af37;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

/* ================================================
   VIP SIGNUP
   ================================================ */

.vip-signup-section {
    background: #0a0a0a;
}

.vip-signup-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #1a1a1a;
    border: 2px solid #d4af37;
    border-radius: 8px;
    text-align: center;
}

.vip-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.vip-benefits {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.vip-placeholder-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.vip-placeholder-form input {
    flex: 1;
    padding: 1rem;
    background: #2a2a2a;
    border: 1px solid #d4af37;
    color: #fff;
    border-radius: 4px;
}

.vip-placeholder-form button {
    padding: 1rem 2rem;
    background: #d4af37;
    color: #0a0a0a;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
}

.vip-privacy {
    font-size: 0.85rem;
    color: #888;
}

/* ================================================
   CINEMATIC DIVIDER
   ================================================ */

.cinematic-divider {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.divider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.75);
}

.divider-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.lyric-line {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-style: italic;
    color: #d4af37;
    line-height: 1.4;
    margin-bottom: 1rem;
}

/* Option B layout wrapper */
.streaming-feature-v31{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:2.5rem;
  align-items:start;
  margin-top:2.5rem;
}


/* Responsive embed */
.embed-ratio-v31 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.35);
  background: rgba(10,10,10,0.5);
}

.embed-ratio-v31 iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-caption-v31 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.9rem;
}

.embed-link-v31 {
  color: #d4af37;
  text-decoration: none;
  border-bottom: 1px solid rgba(212,175,55,0.45);
}

.embed-link-v31:hover {
  border-bottom-color: #d4af37;
}

/* Disabled dummy cards */
.platform-card-disabled{
  opacity:.55;
  pointer-events:none;
  cursor:not-allowed;
}
.platform-card-disabled .platform-subtitle{
  display:block;
  margin-top:.35rem;
  font-size:.9rem;
  opacity:.85;
}

/* Mobile layout */
@media (max-width: 900px) {
  .streaming-feature-v31 {
    grid-template-columns: 1fr;
  }
}


/* ================================================
   UTILITIES
   ================================================ */

.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }
.mt-md { margin-top: 1rem; }

.view-all-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4af37, #f0c840);
    color: #0a0a0a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ================================================
   ANIMATIONS
   ================================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    .spotlight-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .spotlight-title {
        font-size: 2.5rem;
    }
    
    .streaming-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-card-featured {
        grid-column: span 2;
    }
    
    .social-clips-grid {
        grid-template-columns: 1fr;
    }
    
    .lyric-line {
        font-size: 1.8rem;
    }
    
    .vip-title {
        font-size: 2rem;
    }
    
    .vip-placeholder-form {
        flex-direction: column;
    }
}
