﻿/* =====================================================
    STYLE HALAMAN MARS & HYMNE
   SMK TI Bali Global Badung
   ===================================================== */

/* Bagian lagu (mars & hymne) */
.song-section {
    margin-bottom: 60px;
}

.song-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.4s ease;
}

.song-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
}

.song-card.mars {
    border-left: 4px solid #3b82f6;
}

.song-card.hymne {
    border-left: 4px solid #8b5cf6;
}

/* Song Header */
.song-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.song-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
    }
}

.song-title-area h3 {
    font-size: 1.5rem;
    color: #f1f5f9;
    margin-bottom: 5px;
}

.song-title-area p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}

/* Lyrics */
.song-lyrics {
    padding: 30px;
}

.lyrics-content {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    padding: 30px;
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    line-height: 2;
    color: #e2e8f0;
}

.lyrics-content p {
    margin-bottom: 20px;
}

.lyrics-content .verse {
    margin-bottom: 25px;
}

.lyrics-content .chorus {
    padding-left: 20px;
    border-left: 3px solid #3b82f6;
    font-style: italic;
    color: #94a3b8;
}

.lyrics-content .repeat-note {
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

/* Audio Player */
.song-player {
    padding: 25px 30px;
    background: rgba(30, 41, 59, 0.8);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.play-btn.playing {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.player-info {
    flex: 1;
    min-width: 200px;
}

.player-title {
    font-size: 1rem;
    color: #f1f5f9;
    margin-bottom: 5px;
}

.player-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 30px;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-color: transparent;
    color: #fff;
}

/* Tampilan waktu (durasi) */
.time-display {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

/* Responsif (biar tampilan aman di HP) */
@media (max-width: 768px) {
    .song-header {
        flex-direction: column;
        text-align: center;
    }
    
    .song-player {
        flex-direction: column;
        text-align: center;
    }
    
    .player-info {
        width: 100%;
    }
    
    .lyrics-content {
        padding: 20px;
        font-size: 0.95rem;
    }
}

/* Mode terang (light mode) */
[data-theme="light"] .song-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .song-header {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
}

[data-theme="light"] .song-title-area h3 {
    color: #1e293b;
}

[data-theme="light"] .lyrics-content {
    background: rgba(248, 250, 252, 0.8);
    color: #334155;
}

[data-theme="light"] .song-player {
    background: rgba(248, 250, 252, 0.9);
}

[data-theme="light"] .player-title {
    color: #1e293b;
}
