/* Estilos globais */
body {
    font-family: "Mukta", sans-serif;
    margin: 0;
    padding: 0;
    color: #f8f8f8;
    background-color: #000000;
}

/* Navbar */
.navbar {
    font-family: "Raleway", sans-serif;
    background-color: transparent;
    padding: 1.5rem 2rem;
    z-index: 10;
    font-size: 1.2rem;
}

.navbar-brand img {
    width: 150px;
    height: auto;
}

.navbar-nav .nav-item {
    margin-left: 1.5rem;
}

.navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #9d9d9d;
}

.navbar-scrolled {
    background-color: #000000 !important;
    transition: background-color 0.3s ease-in-out;
}

/* Cabeçalho principal */
.main-header {
    position: relative;
    height: 100vh;
    background-color: black;
}

.header-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #e0e0e0;
}

.header-content p {
    font-size: 1.5rem;
    color: #c0c0c0;
}

/* Seções */

/* Estilo geral das seções */
.section-padding {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background-color: #000000;
    border-radius: 10px;
    text-align: justify !important;
}

/* Estilo do texto dentro das seções */
.section-padding h2,
.section-padding p,
.section-padding ul {
    color: #a4a4a4;
    margin-top: 1.5rem;
    text-align:justify-all;
}

/* Ajuste das imagens */
.section-padding img {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

/* Biografia */

#biografia .col-md-8 {
    margin: 0 auto;
    padding: -1px;
    width: 190%;
    max-width: 1200%;
    margin-top: -2rem;
    margin-bottom: -3rem;
}

#biografia p {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #a4a4a4;
    padding: 0;
    text-align: justify !important;
}

/* Seção Discografia com Spotify Embeds */
.spotify-embeds {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-top: -2rem;
}

.spotify-embeds iframe {
    flex: 1 1 45%;
    max-width: 500px;
    min-width: 300px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .spotify-embeds iframe {
        flex: 1 1 100%;
    }
}

/* Responsividade do YouTube Iframe */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ajuste das logos de streaming para telas menores */
.streaming-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.streaming-logos img {
    max-width: 90px;
    max-height: 90px;
    width: auto;
    height: auto;
    padding: 10px;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.streaming-logos img:hover {
    transform: scale(1.2);
}

/* Labels para ícones de redes sociais e streaming */
.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    margin-bottom: -2rem;
}

.icon-label {
    text-align: center;
}

.icon-label img {
    width: 60px;
    height: 60px;
    margin-bottom: 8px;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.icon-label p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #f8f8f8;
    margin: 0;
    font-weight: 400;
}

.icon-label a {
    text-decoration: none;
}

.icon-label img:hover {
    transform: scale(1.1);
}

.icon-label p:hover {
    color: #d7aaff;
}

/* Estilo da seção de downloads */
#downloads h2 {
    font-size: 2rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    text-align: center;
}

#downloads .list-group {
    background-color: transparent;
    border: none;
}

#downloads .list-group-item {
    background-color: #1f1f1f;
    color: #c0c0c0;
    border: 1px solid #333;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s, color 0.3s;
}

#downloads .list-group-item a {
    text-decoration: none;
    color: #c0c0c0;
    font-size: 1.1rem;
}

#downloads .list-group-item a:hover {
    color: #fff;
    text-decoration: underline;
}

#downloads .list-group-item:hover {
    background-color: #333;
    color: #fff;
}

/* Tamanho dos ícones menor em telas pequenas (smartphones) */
@media (max-width: 480px) {
    .icon-label img {
        width: 60px;
        height: 60px;
        background-color: transparent;
    }

    .icon-label p {
        font-size: 1rem;
    }
}

/* Links */
a {
    color: #a4a4a4;
    text-decoration: none;
}

a:hover {
    color: #d7aaff;
    text-decoration: underline;
}

/* Rodapé */
footer {
    font-family: "Raleway", sans-serif;
    background-color: #1f1f1f;
    color: #c0c0c0;
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    font-size: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Links no rodapé */
footer a {
    color: #bb86fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #d7aaff;
    text-decoration: underline;
}

/* Responsividade para o footer */
@media (max-width: 768px) {
    footer {
        font-size: 0.9rem;
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 0.8rem;
        padding: 0.8rem 0;
    }
}

