/* General Theme and Styling */
body {
    font-family: "Helvetica Neue Light", Arial, sans-serif;
    line-height: 1.6;
    margin-top: 10px;
    margin-right: 10px;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    color: #ffffff;
    background-color: #000000;
}

body.shows .section-block p,
body.shows .section-block ul {
    text-align: left;
}

/* Full-Page Background Simulation for Mobile Compatibility */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover; /* Fit the image by height */
    background-position: center;
    z-index: -1; /* Keep it behind all other content */
    opacity: 0.9; /* Slight opacity to match aesthetic */
}

/* Specific Background for Each Block on Homepage */
body.home::before { background-image: url('images/home-bg.jpg'); }
body.biografia::before { background-image: url('images/biografia-bg.jpg'); }
body.aulas::before { background-image: url('images/aulas-bg.jpg'); }
body.musicas::before { background-image: url('images/musica-bg.jpg'); }
body.shows::before { background-image: url('images/show-bg.jpg'); }
body.contato::before { background-image: url('images/contato.jpg'); }

/* Specific Background for Each Block on Homepage */
#biografia.section-block { background-image: url('images/biografia-bg.jpg'); background-size: cover; background-position: center; }
#aulas.section-block { background-image: url('images/aulas-bg.jpg'); background-size: cover; background-position: center; }
#musicas.section-block { background-image: url('images/musica-bg.jpg'); background-size: cover; background-position: center; }
#shows.section-block { background-image: url('images/show-bg.jpg'); background-size: cover; background-position: center; }
#contato.section-block { background-image: url('images/contato.jpg'); background-size: cover; background-position: center; }

/* Standard Section Block Styling with Natural Height */
.section-block {
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Black with 50% opacity for readability */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}


/* Logo Styling with Proportional Scaling */
.logo-full-size {
    width: 100%;  /* Scale based on container width */
    height: auto; /* Maintain aspect ratio */
    max-width: auto; /* Set max-width to prevent excessive scaling */
    display:block;
    margin: 0 auto;
}

.lembranca-img {
    width: 100%;
    max-width: 300px; /* Ajuste conforme necessário */
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px; /* Opcional: arredonda os cantos da imagem */
}

/* Text Styling with Black Glow for Improved Readability */
h1, h2, h3, p {
    text-shadow: 1px 1px 2px #000000; /* Subtle black glow effect */
}
h1 { font-size: 2.6em; text-transform: uppercase; text-align: center; color: #ffffff; }
h2, h3 {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
}
h2 { font-size: 2em; }

.icon {
    vertical-align: middle; /* Alinha o ícone ao centro com o texto */
    margin: 10 0 0 0; /* Espaço entre o ícone e o texto */
}

.icon-container {
    display: flex;
    justify-content: center; /* Centraliza os ícones */
    gap: 10px; /* Espaçamento entre os ícones */
}

/* Enhanced Button Styling with Depth, Gradient, and Border */
.btn {
    display: inline-block;
    font-weight: bold;
    padding: 12px 20px;
    background: linear-gradient(145deg, #004080, #0090ff); /* More pronounced gradient for depth */
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #004080; /* Enhanced border for added realism */
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
    white-space: nowrap; /* Prevents text overflow on buttons */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4), inset 0 -3px 0 rgba(255, 255, 255, 0.3); /* Stronger outer and inner shadows */
}
.btn:hover {
    background: linear-gradient(145deg, #003366, #006bb3); /* Darker blue on hover for enhanced effect */
    transform: translateY(-1px); /* Slight lift on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4), inset 0 -4px 0 rgba(255, 255, 255, 0.3); /* Enhanced shadow on hover */
}

.btn-back-home {
    display: inline-block;
    padding: 12px 20px;
    background: linear-gradient(0deg, #555555, #888888); /* Gray gradient for depth */
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #555555; /* Enhanced border for added realism */
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
    white-space: nowrap;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4), inset 0 -3px 0 rgba(255, 255, 255, 0.3);
}
.btn-back-home:hover {
    background: linear-gradient(145deg, #444444, #777777); /* Darker gray on hover for enhanced effect */
    transform: translateY(-1px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4), inset 0 -4px 0 rgba(255, 255, 255, 0.3);
}

/* Estilo do Rodapé */
footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(16, 16, 16, 0.9);
    border-radius: 8px;
    color: #ffffff;
    margin: 0; /* Remove todas as margens */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Sombra similar ao bloco de compartilhamento */
}

/* Texto de Chamada do Rodapé */
footer h3 {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Ícones das Plataformas no Rodapé */
footer .social-links a {
    margin: 0 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

footer .social-links a:hover {
    transform: scale(1.1); /* Aumenta o ícone ao passar o mouse */
    filter: brightness(1.2); /* Realça o brilho ao passar o mouse */
}

footer .social-links img {
    width: 36px; /* Tamanho fixo dos ícones */
    height: 36px;
    filter: drop-shadow(1px 1px 2px #000); /* Sombra nos ícones */
}

/* Social Links */
#social-links a {
    margin: 0 10px;
    color: #ffffff;
    font-size: 1.2em;
    text-decoration: none;
    transition: color 0.3s ease;
}
#social-links a:hover { color: #ff0000; }

/* Fade-in Effect for Blocks */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bloco de Compartilhamento de Conteúdo */
.share-content {
    text-align: center;
    margin: 0; /* Remove todas as margens */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.share-content h3 {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px #000;
}

/* Estilo dos Botões de Compartilhar */
.share-buttons a {
    margin: 0 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.share-buttons a:hover {
    transform: scale(1.1); /* Aumenta o ícone ao passar o mouse */
    filter: brightness(1.2); /* Aumenta o brilho para dar destaque */
}

/* Estilo dos Ícones de Compartilhar */
.share-buttons img {
    width: 36px; /* Tamanho fixo para os ícones */
    height: 36px;
    filter: drop-shadow(1px 1px 2px #000000bc);
}

.share-buttons a,
footer .social-links a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
    text-decoration: none; /* Remove o sublinhado */
    outline: none; /* Remove o contorno ao focar */
}

.share-buttons a:hover img,
footer .social-links a:hover img {
    transform: scale(1.1); /* Aumenta o ícone ao passar o mouse */
    filter: brightness(1.3); /* Realça o brilho, sem dar efeito de transparência */
}

/* Ícones de Compartilhamento e Rodapé */
.share-buttons img,
footer .social-links img {
    width: 36px; /* Tamanho fixo para os ícones */
    height: 36px;
    filter: drop-shadow(1px 1px 2px #000); /* Adiciona sombra aos ícones */
    border: none; /* Remove qualquer borda residual */
    vertical-align: middle; /* Alinha os ícones ao centro */
}