/* Variáveis de Cores Baseadas no Logo */
:root {
    --grey-concrete: #2b2b2b;
    --metal-dark: #1a1a1a;
    --gold-aged: #c5a059; /* Tom do símbolo de radioatividade */
    --fire-red: #a31d1d; /* Tom das chamas */
    --text-light: #e0e0e0;
}

body {
    background-color: var(--metal-dark);
    /* Substituir pelo link da sua imagem de cimento em alta resolução */
    background-image: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('../img/fundo_bunker_brutalista.png');
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

h1, h2, nav a {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Estilo Industrial */
header {
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 3px solid var(--grey-concrete);
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px; /* Ajuste conforme necessário */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold-aged);
    text-shadow: 0 0 8px var(--fire-red);
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 5rem;
    margin: 0;
    color: var(--gold-aged);
    text-shadow: 4px 4px 0px rgba(0,0,0,0.5);
}
.hero-cover { flex: 1; text-align: right; }
.hero-cover img { 
    width: 100%; 
    max-width: 550px; /* Capa maior conforme solicitado */
    border: 1px solid var(--gold-aged);
    box-shadow: 0 0 40px rgba(0,0,0,0.9);
}


/* Botão Estilo Metal Cortado */
.btn-primary {
    display: inline-block;
    background: var(--grey-concrete);
    color: var(--gold-aged);
    padding: 15px 40px;
    border: 2px solid var(--gold-aged);
    text-decoration: none;
    font-weight: bold;
    transition: 0.4s;
}

.btn-primary:hover {
    background: var(--gold-aged);
    color: var(--metal-dark);
    box-shadow: 0 0 20px var(--fire-red);
}

/* Rodapé */
footer {
    background: #000;
    padding: 40px 0;
    margin-top: 50px;
    border-top: 1px solid var(--grey-concrete);
    font-size: 0.9rem;
    text-align: center;
}

/* Container otimizado para mobile */
.container-small {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.bio-header h1 {
    font-size: 2.5rem;
    color: var(--gold-aged);
    margin-bottom: 10px;
}

.bio-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* O "Link Card" estilo placa de metal */
.link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(43, 43, 43, 0.9); /* var(--grey-concrete) */
    border: 1px solid var(--gold-aged);
    color: var(--text-light);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.3s all ease;
    position: relative;
    overflow: hidden;
}

.link-card:hover {
    background: var(--gold-aged);
    color: var(--metal-dark);
    box-shadow: 0 0 15px var(--fire-red);
    transform: scale(1.02);
}

.link-card .icon {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
}

/* Divisória entre música e social */
.divider {
    margin: 20px 0;
    border-bottom: 1px solid var(--grey-concrete);
    position: relative;
}

.divider span {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--metal-dark);
    padding: 0 15px;
    font-size: 0.8rem;
    color: var(--gold-aged);
}

/* Ajuste para a página de links não ter o fundo tão transparente */
.links-page {
    min-height: 80vh;
}