* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1DB954;
    --primary-dark: #1aa34a;
    --secondary-color: #191414;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-medium: #3e3e3e;
    --bg-dark: #121212;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

html, body {
    background-color: var(--bg-dark);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0;
}

/* Header and Navigation */
header {
    background-color: var(--secondary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 100px;
    height: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.soon {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
    position: relative;
}

.nav-link.soon:hover {
    color: var(--text-light);
}

.nav-link.soon::after {
    content: ' (Em breve)';
    font-size: 0.6rem;
    color: var(--text-light);
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7rem;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    list-style: none;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 4px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(29, 185, 84, 0.2);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.intro {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Albums Section */
.albums {
    background-color: var(--bg-dark);
    padding: 4rem 0 8rem;
}

.albums-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.portfolio-group {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;

    @media (max-width: 1200px) {
        flex-wrap: wrap;
    }

    @media (max-width: 500px) {
        flex-direction: column;
        align-items: center;
    }
}

.artist-group {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    @media (max-width: 500px) {
        width: 100%;
    }
}

.artist-group:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.artist-name {
    border-bottom: 1px solid var(--primary-color);
    color: var(--white);
    font-size: .75rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.album-grid {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-self: center;

    @media (max-width: 500px) {
        flex-direction: column;
        width: 80%;
    }
}

.album-card {
    text-align: center;

    @media (max-width: 500px) {
        margin-bottom: 20px;
        
    }
}


/* Albums covers */
.album-cover-na-batida-da-fe {
    background: url('./images/album-cover-na-batida-da-fe.jpg') no-repeat center center;
}

.album-cover-o-encontro-magico {
    background: url('./images/album-cover-o-encontro-magico.jpg') no-repeat center center;
}

.album-cover-quebra-de-padrao {
    background: url('./images/album-cover-quebra-de-padrao.jpg') no-repeat center center;
}

.album-cover-fagulha-ancestral {
    background: url('./images/album-cover-fagulha-ancestral.jpg') no-repeat center center;
}

.album-cover-isso-e-amor {
    background: url('./images/album-cover-isso-e-amor.jpg') no-repeat center center;
}

.album-cover-atlantic-ocean {
    background: url('./images/album-cover-atlantic-ocean.jpg') no-repeat center center;
}

.album-cover {
    align-items: center;
    aspect-ratio: 1 / 1;
    background-size: cover;
    border-radius: 12px;
    display: flex;
    font-size: 1.2rem;
    font-weight: bold;
    justify-content: center;
    margin-bottom: 1rem;
    width: 140px;

    @media (max-width: 500px) {
        width: 100%;
    }
}

.album-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.streaming-links {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-evenly;
}

.streaming-links a {
    aspect-ratio: 1 / 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 15%;
}

.spotify-link {
    background-color: var(--primary-color);
    background-image: url('./images/icon-spotify.svg');
}

.youtube-music-link {
    background-color: #FF0000;
    background-image: url('./images/icon-youtube-music.svg');
}

.apple-music-link {
    background-color: #000000;
    background-image: url('./images/icon-apple-music.svg');
}

.deezer-link {
    background-color: #f8f8f8;
    background-image: url('./images/icon-deezer.svg');
    background-size: 70% auto !important;
}

.amazon-music-link {
    background-color: #dfe6e9;
    background-image: url('./images/icon-amazon-music.svg');
    background-size: 70% auto !important;
}

.spotify-link:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    text-align: center;
}

.contact h4 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    bottom: 0px;
    color: var(--white);
    left: 0px;
    padding: 2rem 0;
    position: absolute;
    text-align: center;
    width: 100%;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-item {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .hero {
        padding: 2rem 0;
    }

    .intro {
        font-size: 1.2rem;
    }

    .artist-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1.2rem;
    }

    .intro {
        font-size: 1rem;
    }

    .contact h4 {
        font-size: 1.8rem;
    }

    .artist-name {
        font-size: 1.3rem;
    }
}
