/* Eden's Fault - Lyrics Portfolio Stylesheet */
/* Depends on: shared.css */

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

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

.page-header h1 {
    font-size: 3.5rem;
    color: #f0e6d2;
    text-shadow: 2px 2px 8px rgba(139, 69, 19, 0.5);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.page-header .divider {
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.4rem;
    color: #b8b8b8;
    font-style: italic;
}

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

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

section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #c4c4c4;
}

/* ===== ABOUT SECTION ===== */
.about-section p {
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #8b4513;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #b8b8b8;
}

.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.lyrics-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid rgba(139, 69, 19, 0.4);
    transition: all 0.3s ease;
}

.lyrics-card:hover {
    border-color: #8b4513;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.lyrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.lyrics-header h3 {
    font-size: 1.4rem;
    color: #f0e6d2;
}

.genre-tag {
    background: #8b4513;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.lyrics-preview {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #b8b8b8;
}

/* Fixed: styled as <a> not <button> */
.read-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
    color: #f0e6d2;
    text-decoration: none;
    border: 1px solid #a0522d;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.5);
}

/* ===== WHY SECTION ===== */
.why-section p {
    text-align: center;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.1rem;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid #8b4513;
    border-radius: 5px;
    text-align: center;
}

.benefits-list strong {
    color: #8b4513;
}

/* ===== 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;
    overflow-y: auto;
}

.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);
}

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

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

    .tagline {
        font-size: 1.1rem;
    }

    section {
        padding: 30px 20px;
    }

    section h2 {
        font-size: 2rem;
    }

    .services-grid,
    .lyrics-grid {
        grid-template-columns: 1fr;
    }

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

    .main-nav {
        display: none;
    }
}

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

    .tagline {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .lyrics-card {
        padding: 20px;
    }

    .lyrics-header {
        flex-direction: column;
        align-items: flex-start;
    }
}
