/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a1510;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 25, 18, 0.55) 0%,
        rgba(30, 25, 18, 0.70) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-cross {
    display: block;
    font-size: 42px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    line-height: 1;
}

.hero-tagline {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    font-family: Arial, sans-serif;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    margin: 22px auto;
}

.hero-title {
    font-size: 64px;
    font-weight: normal;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.hero-subtitle {
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================
   SONGS SECTION
   ============================================ */
.songs-section {
    background: linear-gradient(180deg, #f7f5f2 0%, #edeae5 100%);
    padding: 80px 40px;
}

.songs-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon {
    display: inline-block;
    font-size: 32px;
    color: #8b7355;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: normal;
    color: #3d342d;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.section-desc {
    font-size: 16px;
    color: #888;
    font-style: italic;
    max-width: 550px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b7355, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

/* Songs Grid */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Song Card */
.song-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(61, 52, 45, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.song-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(61, 52, 45, 0.15);
}

.song-card-accent {
    height: 5px;
    background: linear-gradient(90deg, #8b7355, #b89e7a, #8b7355);
}

.song-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px 0;
}

.song-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f5f0ea 0%, #ebe4da 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #8b7355;
    flex-shrink: 0;
}

.featured-badge {
    background: linear-gradient(135deg, #8b7355, #6d5a45);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: Arial, sans-serif;
}

.song-content {
    padding: 18px 25px 25px;
}

.song-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #3d342d;
    font-family: 'Georgia', serif;
    line-height: 1.3;
}

.song-meta-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.song-category-badge,
.song-lang-badge {
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: Arial, sans-serif;
}

.song-category-badge {
    background: #f5f0ea;
    color: #8b7355;
    border: 1px solid #e0d5c7;
}

.song-lang-badge {
    background: #eef0f2;
    color: #5a6270;
    border: 1px solid #d8dce2;
}

.song-composer {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 16px;
}

/* Song Action Buttons */
.song-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f0ece7;
}

.btn-song {
    padding: 9px 18px;
    border: 1.5px solid #8b7355;
    background: transparent;
    color: #8b7355;
    text-decoration: none;
    border-radius: 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-align: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.btn-song:hover {
    background: #8b7355;
    color: white;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.btn-song.btn-primary {
    background: linear-gradient(135deg, #8b7355, #6d5a45);
    color: white;
    border-color: #8b7355;
}

.btn-song.btn-primary:hover {
    background: linear-gradient(135deg, #7a6548, #5c4c3a);
    border-color: #7a6548;
    box-shadow: 0 4px 12px rgba(139, 115, 85, 0.35);
}

.btn-song.btn-watch {
    border-color: #5a4a3a;
    color: #5a4a3a;
}

.btn-song.btn-watch:hover {
    background: #5a4a3a;
    color: white;
    box-shadow: 0 4px 12px rgba(90, 74, 58, 0.3);
}

.btn-icon {
    font-size: 13px;
    line-height: 1;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-cross {
    display: block;
    font-size: 48px;
    color: #c8bfb3;
    margin-bottom: 20px;
}

.empty-title {
    font-size: 26px;
    color: #3d342d;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
}

.empty-desc {
    font-size: 16px;
    color: #999;
    font-style: italic;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 60px;
}

.btn-load-more {
    padding: 14px 50px;
    border: 2px solid #8b7355;
    background: transparent;
    color: #8b7355;
    text-decoration: none;
    border-radius: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.btn-load-more:hover {
    background: #8b7355;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

/* Song Modal */
.song-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.song-modal-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.song-modal-header {
    background: linear-gradient(135deg, #3d342d 0%, #5a4a3a 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.song-modal-header h2 {
    margin: 0;
    font-size: 28px;
    font-family: 'Georgia', serif;
}

.song-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.song-modal-close:hover {
    color: #f0f0f0;
}

.song-modal-play-btn {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a45 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 16px;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    width: fit-content;
}

.song-modal-play-btn:hover {
    background: linear-gradient(135deg, #6d5a45 0%, #5a4a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.song-modal-play-btn.hidden {
    display: none;
}

.song-modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-song-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.modal-song-info {
    margin-bottom: 20px;
}

.modal-song-info p {
    margin: 8px 0;
    color: #555;
    font-size: 15px;
}

.modal-lyrics {
    margin-bottom: 25px;
}

.modal-lyrics h3 {
    color: #3d342d;
    font-family: 'Georgia', serif;
    margin-bottom: 15px;
    font-size: 22px;
}

.modal-lyrics-text {
    white-space: pre-line;
    line-height: 1.8;
    color: #333;
    font-size: 15px;
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.modal-audio {
    margin-bottom: 25px;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e6e3 100%);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #8b7355;
}

.modal-audio h3 {
    margin-bottom: 15px;
    color: #3d342d;
    font-family: 'Georgia', serif;
    font-size: 20px;
}

.modal-audio audio {
    width: 100%;
    margin-top: 10px;
    border-radius: 10px;
    outline: none;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    cursor: pointer;
}

.modal-audio audio::-webkit-media-controls-panel {
    background-color: #fff;
}

.modal-audio audio::-webkit-media-controls-play-button,
.modal-audio audio::-webkit-media-controls-pause-button {
    background-color: #8b7355;
    border-radius: 50%;
}

.audio-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.skip-btn {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a45 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 5px;
}

.skip-btn:hover {
    background: linear-gradient(135deg, #6d5a45 0%, #5a4a3a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.skip-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.modal-youtube {
    margin-top: 25px;
}

.modal-youtube h3 {
    margin-bottom: 15px;
    color: #3d342d;
    font-family: 'Georgia', serif;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.song-badge {
    background: #8b7355;
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.song-badge.language {
    background: #5a4a3a;
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-cross {
        font-size: 32px;
    }

    .songs-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .songs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .song-actions {
        flex-direction: column;
    }

    .btn-song {
        width: 100%;
        justify-content: center;
    }
}
