/* Home Page Header */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/Background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10,10,10,0.7), rgba(10,10,10,0.3));
    z-index: 1;
}

h1 {
    font-family: 'Space Mono', monospace;
    font-size: 5rem;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

h1::after {
    content: 'ROUGH RHYTHM';
    position: absolute;
    left: 2px;
    top: 2px;
    color: var(--accent);
    z-index: -1;
    animation: glitch 3s infinite;
    opacity: 0.5;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    color: var(--accent);
}

/* Artists Section */
.artists-section {
    padding: 8rem 0;
    position: relative;
}

.artist {
    margin-bottom: 8rem;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.artist.visible {
    opacity: 1;
    transform: translateY(0);
}

.artist:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.artist-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist-title {
    font-family: 'Space Mono', monospace;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.artist-title-ai {
    letter-spacing: 0.02em;
}

.artist-genre {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.artist-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.artist-links {
    display: flex;
    gap: 1rem;
}

.artist-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--background);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artist-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,255,149,0.2);
}

.artist-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    transition: 0.5s;
}

.artist-link:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .artist {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .artist:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .artist-title {
        font-size: 2rem;
    }

    .artist-links {
        flex-direction: column;
    }
}
