/* =============================================
   SHARED CSS - GraceMelody
   Common styles used across multiple pages
   ============================================= */

/* Gradient text effect - Gold gradient */
.gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #B5952F 50%, #8E731F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass morphism navigation */
.glass-nav {
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* Hide scrollbar across browsers */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Micro-commitment pills */
.mc-pill {
    display: inline-block;
    padding: 0.375rem 0.7rem;
    border: 2px solid rgba(26,25,24,0.15);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1A1918;
    text-decoration: none;
    transition: all 0.2s;
}
.mc-pill:hover {
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.15);
}

/* Video play button pulse */
.play-pulse {
    animation: playPulse 2s ease-in-out infinite;
}
@keyframes playPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
}

/* Song row states */
.song-row { transition: background 0.15s; }
.song-row:hover { background: rgba(255,255,255,0.05); }
.song-row.active { background: rgba(212,175,55,0.1) !important; }
.song-row.active .song-title { color: #D4AF37 !important; }

/* Gold pulse animation */
.active-pulse {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
