body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    color: #FF6B00;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
    color: #FFA54F;
    opacity: 0.9;
}

header {
    background: url('assets/hero-image.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    height: 80vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-bottom: 3px solid #FF6B00;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
    font-size: 5.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 15px rgba(255,107,0,0.7), 0 0 25px rgba(0,0,0,0.8);
}

main {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

section {
    margin-bottom: 5rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    padding: 10px;
    border-radius: 12px;
}

#about p {
    font-size: 1.25rem;
    line-height: 1.8;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
    border-bottom: 4px solid #FF6B00; 
    padding-bottom: 0.5rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.song-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.song {
    background: #1a1a1a; 
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    position: relative;
}

.song-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.song-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    color: #888;
    z-index: 1;
}

.song:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(255,107,0,0.2), 0 4px 15px rgba(0,0,0,0.6);
}

.song-cover {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.song-details {
    flex-grow: 1;
}

.song h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
    padding-right: 120px;
}

.song-links a {
    display: inline-block;
    color: #FF6B00;
    text-decoration: none;
    margin: 0.5rem 0.5rem 0.5rem 0;
    padding: 0.5rem 1rem;
    border: 2px solid #FF6B00;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.song-links a:hover {
    color: #121212;
    background-color: #FF6B00;
}

.news-item {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    position: relative;
}

.news-item:not(:first-child) {
    margin-top: 20px;
}

.news-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.news-item h3 {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-right: 120px;
}

.news-item p:first-of-type {
    margin-top: 1.5rem;
}

.news-item p {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}

footer {
    background: #1a1a1a url('assets/hero-image.jpg') no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    padding: 3rem;
    margin-top: 5rem;
    border-top: 3px solid #FF6B00;
    position: relative;
    z-index: 0;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

footer .social-links, footer p {
    position: relative;
    z-index: 2;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FF6B00;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }

    h2 {
        font-size: 2.2rem;
    }

    main {
        padding: 2rem 1rem;
    }

    #about p {
        font-size: 1.1rem;
    }

    .song-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .song h3, .news-item h3 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
