/* Importando fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Pathway+Gothic+One&family=Road+Rage&display=swap');

/* reseta margens, paddings defini rolagem suave */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Rolagem suave para links */
}
#shows, #fotos, #contatos { 
    scroll-margin-top:80px;
}
#topo{
    scroll-margin-top: 160px;
}

/* Configuração geral do corpo do site */
body {
    scroll-padding-top: -1000px; /* Ajuste conforme a altura do header */
    font-family: "Pathway Gothic One", sans-serif; 
    background-color: #111; 
    color: #fff; 
    text-align: center; 
}

/* Cabeçalho fixo com menu */
header {
    background-color: rgba(0, 0, 0, 0.8); /* quase transparente */
    padding: 20px;
    position: fixed; /* fixa o cabeçalho */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100; /* deixa em cima de outros elementos */
    transition: 0.3s ease-in-out;
}
.fonte-Backseat {
    width: 1000px;
    font-family: "Road Rage", sans-serif;
    
}

/* Navegação do menu */
.menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu ul li {
    display: inline;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

.menu ul li a:hover {
    color: #ff004c;
}

/* Título principal (nome da banda) */
h1 {
    font-family: "Road Rage", sans-serif;
    font-size: 400px;
    margin-top: 150px;
    margin-bottom: 150px;
    text-transform: uppercase;
    letter-spacing: 5px;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Efeito de hover */
h1:hover {
    transform: scale(1.05) rotate(-1deg); /* Aumenta e inclina um pouco */
    text-shadow: 0px 0px 20px rgba(255, 0, 76, 0.7); /* Brilho rosa */
}



/* Seção de fotos e rolagem horizontal */

#fotos::before {    /* cria um espaço que compensa o header fixo */
    content: "";
    display: block;
    height: 80px;        
    margin-top: 80px;  
}

#fotos {
    overflow-x: scroll; /* rolagem horizontal */
    white-space: nowrap; /* n quebra a linha */
    padding: 20px 0; 
    
    /* Oculta a barra de rolagem */
    -ms-overflow-style: none;  /* IE e Edge */
    scrollbar-width: none;  /* Firefox */
}
#fotos::-webkit-scrollbar {
    display: none; /* Chrome, Safari e Opera */
}

/* Estilização das imagens ampliadas */
#fotos img {
    display: inline-block; /* deixa as imagens em linha */
    height: 400px;
    margin: 0 15px;
    object-fit: cover; /* imagem n distorce */
    transition: transform 0.3s ease; /* efeito suave ao passar o mouse */
}


/* Efeito hover nas imagens */
#fotos img:hover {
    transform: scale(1.05);
}

/* Seção de Shows */

#shows  {
    padding: 40px 20px;
}

#shows h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#shows ul {
    list-style: none;
    padding: 0;
}

#shows li {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
}

/* Botões de Compra nos Shows */
#shows button {
    background-color: #ff004c;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

#shows button:hover {
    background-color: #700a6d;
}

/* Rodapé */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    margin-top: 40px;
}

footer a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff004c;
}

footer p {
    margin-top: 10px;
    font-size: 16px;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    h1 {
        font-size: 60px;
        margin-top: 120px;
        
    }
    
    .menu ul {
        flex-direction: row;
        gap: 10px;
    }
    
    .menu ul li a {
        font-size: 16px;
    }
    
    /* Ajusta a altura das imagens na seção de fotos */
    #fotos img {
        height: 250px;
        margin: 0 10px;
    }
    
    #shows h2 {
        font-size: 36px;
    }
    
    #shows li {
        font-size: 18px;
    }
    
    footer a {
        font-size: 16px;
    }
}
