/* ============================================
   OARA Music - DJ Sets Page Styles
   Simplified: SoundCloud embeds + newsletter
   ============================================ */

/* Page subtitle */
.page-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-gray);
    margin-top: 0.75rem;
}

/* ============================================
   DJ SETS GRID
   ============================================ */
.djsets-section {
    padding-top: 0;
}

.djsets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2.5rem;
}

.djset-card {
    background: var(--color-black-lighter);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.djset-card:hover {
    border-color: var(--color-pink);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 0, 106, 0.1);
}

.djset-title {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem 0.75rem;
    letter-spacing: 0.02em;
}

.djset-embed iframe {
    display: block;
    border: 0;
}

/* SoundCloud CTA */
.djsets-cta {
    text-align: center;
    margin-top: 3rem;
}

.djsets-cta .btn {
    gap: 0.75rem;
}

.djsets-cta .btn i {
    font-size: 1.2rem;
}

/* ============================================
   SUBSCRIBE / NEWSLETTER SECTION
   ============================================ */
.subscribe-section {
    background: var(--color-black);
}

.subscribe-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    padding: 4rem;
    background: linear-gradient(135deg,
        rgba(212, 0, 106, 0.1) 0%,
        rgba(147, 51, 234, 0.05) 50%,
        rgba(212, 0, 106, 0.1) 100%
    );
    border: 1px solid rgba(212, 0, 106, 0.2);
    position: relative;
    overflow: hidden;
}

.subscribe-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 0, 106, 0.1) 0%, transparent 50%);
    animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow {
    to { transform: rotate(360deg); }
}

.subscribe-content {
    position: relative;
    z-index: 1;
}

.subscribe-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-pink);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    animation: pulse-bell 2s ease-in-out infinite;
}

@keyframes pulse-bell {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.subscribe-content h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.subscribe-content p {
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
}

.subscribe-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.subscribe-input:focus {
    outline: none;
    border-color: var(--color-pink);
}

.subscribe-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* EQ Bars */
.subscribe-visual {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eq-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
}

.eq-bars span {
    width: 8px;
    background: linear-gradient(to top, var(--color-pink-dark), var(--color-pink), var(--color-pink-light));
    border-radius: 4px;
    animation: eq-bar 1s ease-in-out infinite;
}

.eq-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.eq-bars span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.eq-bars span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.eq-bars span:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.eq-bars span:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.eq-bars span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.eq-bars span:nth-child(7) { height: 45%; animation-delay: 0.6s; }
.eq-bars span:nth-child(8) { height: 100%; animation-delay: 0.7s; }
.eq-bars span:nth-child(9) { height: 55%; animation-delay: 0.8s; }
.eq-bars span:nth-child(10) { height: 35%; animation-delay: 0.9s; }

@keyframes eq-bar {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .subscribe-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }

    .subscribe-visual {
        justify-content: center;
    }
}

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

    .subscribe-card {
        padding: 2rem;
    }

    .subscribe-content h3 {
        font-size: 1.5rem;
    }
}
