/* style.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('background.jpg'); 
    background-size: cover; 
    background-position: top center; 
    background-repeat: no-repeat; 
    height: 100vh; 
}

.sidebar {
    width: 240px;
    height: calc(100vh - 50px); 
    background: linear-gradient(to bottom, #ffffff, #e4e3e3); 
    color: black;
    position: fixed;
    z-index: 1000;
    overflow-y: auto; 
    padding: 18px 10px 50px 18px; 
}

.sidebar .logo-projeto {
    width: 70%;
    margin-left: 35px;
}

/* Ajuste na lista não ordenada */
.sidebar nav ul {
    list-style: none;
    padding-left: 0; 
    margin-left: 0;
}

/* Ajuste nos itens da lista */
.sidebar nav ul li {
    margin: 10px 0; 
}

.sidebar nav ul li {
    margin: 5px 0;
    padding: 0;
}

.sidebar nav ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

/* Estilizando a seção "Sobre nós" */
.sobre-nos {
    display: block; 
    color: rgb(0, 0, 0);
    margin-top: 30px; 
    font-size: 20px;
    font-weight: bold; 
}

/* Removendo qualquer negrito do texto "Sobre nós" */
.sobre-nos span {
    font-weight: normal;
}

.sobre-nos::after {
    content: "";
    display: block;
    width: 95%; 
    height: 2px; 
    background: linear-gradient(to right, white, black); 
    margin-left: 2px; 
    margin-right: auto; 
    margin-top: 5px; 
}

/* Estilizando o bloco de texto */
.texto-bloco {
    color: rgb(0, 0, 0);
    margin-top: 15px; 
    font-size: 16px;
    line-height: 1.6; 
}

main {
    margin-left: 270px;
    padding: 20px;
}

.user-options {
    position: relative;
    top: -25px;
}

.user-options button {
    background: linear-gradient(to bottom, white, #f1f0f0); 
    border: 1px solid #9f9f9f;
    padding: 10px 20px;
    padding-top: 15px;
    font-size: 16px;
    cursor: pointer; 
    transition: background-color 0.3s ease, border-color 0.3s ease; 
}

.user-options button:hover {
    background-color: rgb(34, 34, 34); 
    color: rgb(0, 0, 0); 
    border-color: rgb(0, 0, 0); 
    border: 1.8px solid black;
}

.top-nav {
    position: relative;
    top: -15px;
}

.top-nav a {
    background-color: transparent; 
    border: 2px solid #9f9f9f;
    padding: 8px 20px 8px; 
    font-size: 16px; 
    text-decoration: none; 
    color: black; 
    transition: background-color 0.3s ease, border-color 0.3s ease; 
}

.top-nav a:hover {
    background-color: black; 
    color: white; 
    border-color: rgb(0, 0, 0); 
}

/* Linha acima */
.top-nav::before {
    content: "";
    position: absolute;
    top: -20px; 
    left: 50%;
    width: 100vw;
    height: 1.4px;
    background-color: #404040;
    transform: translateX(-50%);
}

/* Linha abaixo */
.top-nav::after {
    content: "";
    position: absolute;
    bottom: -10.4px; 
    left: 50%;
    width: 100vw; 
    height: 1.4px;
    background-color: #404040;
    transform: translateX(-50%); 
}

/* Configurando barra de pesquisa */
.search-bar {
    width: 45%;
    position: relative;
    top: -50px; 
    padding: 8px;
    padding-right: 0.5px;
    margin-left: 50%;
    border: 1px solid #9f9f9f;
    border-radius: 2px;
    font-style: italic;
}

.logo-banda {
    width: 150px;
    display: block;
    margin: 20px auto;
}

.imagem-banda {
    width: 100%; 
    max-width: 970px; 
    height: 310px; 
    object-fit: cover; 
    object-position: center; 
    display: block; 
    margin: 10px 40px; 
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); 
    border-radius: 15px; 
    position: relative; 
}

.image-container {
    position: relative;
    display: inline-block; 
}

.image-container img {
    display: block; 
    max-width: 100%; 
    height: auto;
}

.popup {
    position: absolute;
    bottom: 35px;  
    left: 50px;     
    background-color: rgba(255, 255, 255, 0.877);
    padding: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.info-bloco {
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin: 13px 0;
}

.info-bloco.azul {
    border-left: 5px solid #164267;
    background-color: #ffffff;
}

.info-bloco.escuro {
    border-left: 5px solid #02022c;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.logo {
    margin-left: 40px;
    margin-top: 10px;
}

#spotify-player {
    width: 300px; 
    height: 80px; 
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

nav ul {
    border-left: 3px solid black; 
    padding-left: 20px; 
}

nav ul li {
    margin-left: 10px; 
}

nav ul li a::before {
    content: "•"; 
    color: black; 
    font-size: 30px; 
    margin-right: 10px; 
    margin-left: 7%;
}

footer {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 10px;
    padding-left: 20%;
    background-color: #f1f1f1;
}

