@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;700&display=swap');

/* ============================
LOGO E HEADER
============================ */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #ff0000;
}

.logo-container-child {
    display: flex;
    align-items: left;
    justify-content: left;
    gap: 1rem;
    color: #ff0000;
}

.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1c0d6d, #2e0b23, #960000);
    background-attachment: fixed;
    color: #f2f2f2;
}

header {
    text-align: center;
    border-bottom: 2px solid #00cf0e;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ff0000;
    letter-spacing: 2px;
}

header p {
    font-size: 1.1rem;
    color: #ccc;
}

/* ============================
DROPDOWN MENU
============================ */
.dropdown {
    position: fixed;
    display: inline-block;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.dropbtn {
    background-color: transparent;
    color: #ff0000;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    font-weight: bold;
}

.dropbtn:hover {
    background-color: #ff0000;
    color: #111;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #272727;
    min-width: 140px;
    box-shadow: 5px 8px 16px rgba(0,0,0,0.3);
    border-radius: 18px;
    overflow: hidden;
    margin-top: 5px;
}

.dropdown-content a {
    color: #ff0000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #4b1919;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ============================
GRID DE BANDAS (HOME)
============================ */
.bandas {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    gap: 20px;
    padding: 20px;
}

.banda {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.banda:hover {
    transform: scale(1.05);
}

.banda img {
    padding: 1.5rem;
    width: 50%;
    height: 150px;
    object-fit: contain;
}

.banda h2 {
    color: #ff0000;
    margin: 0.5rem 0;
}

.banda p {
    color: #aaa;
}

.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0 1.5rem 0;
}

.links a {
    color: #fff;
    text-decoration: none;
    background: #ff0000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.2s;
}

.links a:hover {
    background: #cc0000;
}

/* ============================
FOOTER
============================ */
footer {
    text-align: center;
    padding: 1rem;
    background: #1a1a1a;
    border-top: 2px solid #00cf0e;
    font-size: 0.9rem;
    color: #aaa;
}

/* ============================
PÁGINA DA BANDA
============================ */
.band_image {
    width: 50%;
    height: 250px;
    object-fit: contain;
}

.band-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap; /* mantém responsivo */
}

.band-info {
    flex: 2;
    min-width: 300px;
}

.band-info img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

.band-player {
    flex: 1;
    min-width: 300px;
}

.social-link {
    font-size: 2rem;
    color: #ff0000;
    text-decoration: none;
    margin-left: 10px;
    transition: transform 0.2s, color 0.2s;
}

.social-link:hover {
    color: #ff5555;
    transform: scale(1.1);
}

.sugestion {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 10px;
}

.biography {
    max-width: 50%;
    color: #e0e0e0;
    background-color: #1f1f1f;
    padding: 25px 30px;
    border-left: 4px solid #ff4c4c;
    border-radius: 6px;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    box-shadow: 0 0 10px rgba(255, 76, 76, 0.1);
}

.biography h2 {
    color: #ff4c4c;
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.biography p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    word-wrap: break-word;
    text-align: left;
}

/* ============================
RESPONSIVO
============================ */
@media (max-width: 1024px) {
    .bandas {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em telas médias */
    }
}

@media (max-width: 768px) {
    /* Home */
    .bandas {
        grid-template-columns: 1fr; /* 1 coluna em celular */
    }

    /* Página da banda */
    .band-container {
        flex-direction: column-reverse; /* inverte a ordem dos blocos */
        align-items: center;
    }

    .band-info, .band-player {
        min-width: 90%;
        text-align: center;
    }

    .band-info img {
        margin: 0 auto 20px auto;
    }

    .biography {
        border-left: none;
        border-top: 4px solid #ff4c4c;
        padding: 20px;
        text-align: center; /* Centraliza o texto */
        margin: 0 auto; /* Centraliza o container horizontalmente */
        width: 90%; /* Faz ele ocupar menos largura */
        max-width: 600px; /* Limita o tamanho pra melhor leitura */
        display: flex;
        flex-direction: column;
        align-items: center; /* Centraliza conteúdo interno */
        justify-content: center;
    }

    .band-player {
        margin-bottom: 0; /* remove espaço abaixo do player */
        padding-bottom: 0;
    }

    .band-player iframe {
        width: 100%;
        height: 300px;
        margin: 0; /* zera margens */
        padding: 0;
        display: block;
    }

    .sugestion {
        margin-top: -5px; /* puxa o texto para cima */
        padding-top: 0;
        transform: translateY(-15px); /* força ele colar */
    }

    .social-link {
        font-size: 2rem;
        margin-left: 8px;
        margin-right: 8px;
    }
}
