/* Eden's Fault - Individual Lyric Page Stylesheet */
/* Depends on: shared.css */

/* ===== CONTAINER ===== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 80px;
    position: relative;
    z-index: 1;
}

/* ===== SONG HEADER ===== */
.song-header {
    text-align: center;
    margin-bottom: 60px;
}

.song-header h1 {
    font-size: 4rem;
    color: #f0e6d2;
    text-shadow: 3px 3px 10px rgba(139, 69, 19, 0.6);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.song-meta {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.genre-badge,
.status-badge {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.genre-badge {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #f0e6d2;
    border: 2px solid #a0522d;
}

.status-badge {
    background: rgba(34, 139, 34, 0.3);
    color: #90ee90;
    border: 2px solid #228b22;
}

/* ===== SECTIONS ===== */
section {
    margin-bottom: 60px;
    background: rgba(26, 26, 26, 0.7);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.3);
    backdrop-filter: blur(10px);
}

section h2 {
    font-size: 2.2rem;
    color: #f0e6d2;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* ===== LYRICS INFO ===== */
.lyrics-info {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #8b4513;
    margin-bottom: 40px;
}

.lyrics-info p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #c4c4c4;
}

.lyrics-info strong {
    color: #8b4513;
    font-weight: bold;
}

/* ===== LYRICS CONTENT ===== */
.lyrics-content h2 {
    margin-bottom: 40px;
}

.lyric-block {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.lyric-block h3 {
    font-size: 1.3rem;
    color: #8b4513;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lyric-block p {
    font-size: 1.1rem;
    line-height: 2;
    color: #e0e0e0;
    white-space: pre-line;
}

.lyrics {
    color: #888;
    font-style: italic;
}

/* ===== USAGE SECTION ===== */
.usage-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
}

.usage-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.usage-list li {
    font-size: 1rem;
    padding: 12px 20px;
    margin-bottom: 10px;
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #228b22;
    border-radius: 5px;
    color: #c4c4c4;
}

/* ===== HAMBURGER MENU (mobile only) ===== */
.hamburger-menu {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    cursor: pointer;
    background: rgba(139, 69, 19, 0.3);
    border: 2px solid #8b4513;
    border-radius: 5px;
    padding: 10px;
    width: 45px;
    height: 45px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background: #f0e6d2;
    margin: 5px 0;
    transition: 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    border-right: 2px solid #8b4513;
    padding: 80px 20px 20px;
    z-index: 999;
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    color: #f0e6d2;
    text-decoration: none;
    padding: 15px;
    margin-bottom: 10px;
    background: rgba(139, 69, 19, 0.2);
    border: 1px solid #8b4513;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(139, 69, 19, 0.4);
}

/* ===== MUSIC PLAYER ===== */
.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid #8b4513;
    border-radius: 10px;
    padding: 15px;
    z-index: 1000;
    min-width: 250px;
    backdrop-filter: blur(10px);
}

.music-player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.music-player-title {
    color: #f0e6d2;
    font-size: 0.9rem;
    font-weight: bold;
}

.music-toggle {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    border: 1px solid #a0522d;
    color: #f0e6d2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.5);
}

.music-info {
    color: #b8b8b8;
    font-size: 0.75rem;
    margin-top: 5px;
}

audio {
    display: none;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 768px) {
    .container {
        padding: 80px 15px 60px;
    }

    .song-header h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 30px 20px;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .lyric-block {
        padding: 20px;
    }

    /* Show hamburger, hide desktop nav */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .main-nav {
        display: none;
    }

    .music-player {
        bottom: 10px;
        right: 10px;
        min-width: 200px;
        padding: 10px;
    }

    .music-player-title {
        font-size: 0.8rem;
    }

    .music-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 480px) {
    .song-header h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    section h2 {
        font-size: 1.6rem;
    }

    .lyric-block h3 {
        font-size: 1.1rem;
    }

    .lyric-block p {
        font-size: 1rem;
    }
}
