/* Estilos globais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #e0e0e0;
}

h1, h2, h3 {
    color: #ff0000;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Cabeçalho e rodapé de largura total */
header, footer {
    width: 100%;
}

header {
    background-color: #000;
    color: #ff0000;
    text-align: center;
    padding: 20px;
    border-bottom: 4px solid #ff0000;
}

header img {
    border-radius: 50%;
    width: 300px;
    height: 300px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

nav ul a:hover {
    text-decoration: underline;
}

/* Seção de biografia */
.biography {
    text-align: center;
    margin: 30px 0;
}

/* Seção de discografia */
.discography-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

.discography a {
    color: red;
    text-decoration: none;
}

.discography a:hover {
    text-decoration: underline;
}

.albums-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.album {
    background-color: #1e1e1e;
    padding: 15px;
    width: 300px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s;
    border: 2px solid #333;
    text-align: center;
}

.album img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.album:hover {
    transform: scale(1.05);
    border-color: #ff0000;
}

/* Seção de habilidades */
.skills {
    text-align: center;
    margin: 30px 0;
}

.skills ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.skills li {
    background-color: #333;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    color: #ff0000;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Estilo para os ícones de habilidades */
.skills li img {
    width: 24px;
    height: 24px;
}

/* Rodapé */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px;
    border-top: 4px solid #ff0000;
}

footer a {
    color: #ff0000;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .albums-container {
        flex-direction: column;
        align-items: center;
    }

    .album {
        width: 100%;
    }

    .skills ul {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Seção de Contato (Nova) --- */
.contact-form {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 2em;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    max-width: 500px; /* Limita a largura do formulário */
    margin: 0 auto;
    text-align: left;
}

.contact-form label {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #e0e0e0;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 10px;
    border: 1px solid #333;
    background-color: #333;
    color: #e0e0e0;
    border-radius: 4px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical; 
}

.contact-form button {
    background-color: #ff0000;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #cc0000;
}


#formStatus {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

.hidden {
    display: none;
}

.success {
    background-color: #1d4825; 
    color: #a3e8b0; 
}

.error {
    background-color: #691c1c; 
    color: #f7b7b7; 
}
