:root{
    --blue:#37a2b5;
    --dark-blue:#1a2041;
    --light-blue:#e0f7fa;
    --white:#ffffff;
    --black:#000000;
}

@font-face {
    font-family: 'buck';
    src: url(assets/BucklaneScript_PERSONAL_USE_ONLY.otf) format('opentype');
}

@font-face {
    font-family: 'coco';
    src: url(assets/Cocogoose-Pro-Semilight-trial.ttf) format('truetype');
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

#menu-toggle{
    display: none;
}

.menu-btn{
    position: fixed;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
}
.menu-btn span{
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark-blue);
    border-radius: 3px;
    transition: 0.3s;
}

.slide-menu{
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: var(--dark-blue);
    transition: left 0.3s ease;
    padding-top: 60px;
    z-index: 1001;
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow-y: auto;
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

.slide-menu ul{
    font-family: 'coco';
    border-radius: 20px;
    list-style: none;
    color: var(--light-blue);
    margin: 0;
    padding: 0;
}

.slide-menu li a{
    text-decoration: none;
    color: var(--light-blue);
    border-radius: 20px;
    padding: 15px 20px;
}

.slide-menu ul li:hover{
    color: var(--dark-blue);
    background-color: var(--white);
    border-radius: 10px;
    cursor: pointer;
}

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--light-blue);
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

#menu-toggle:checked ~ .slide-menu{
    left: 0;
}

#menu-toggle:checked ~ .overlay{
    opacity: 1;
    pointer-events: auto;
}

span{
    color: var(--white);
}

#menu-toggle:checked ~ .menu-btn span:nth-child(1){
    transform: rotate(45deg) translateY(13px);
    background: #fff;
    color: var(--light-blue);
}

#menu-toggle:checked ~ .menu-btn span:nth-child(2){
    opacity: 0;
}

#menu-toggle:checked ~ .menu-btn span:nth-child(3){
    transform: rotate(-45deg) translateY(-13px);
    color: var(--light-blue);
    background: #fff;
}

/* From Uiverse.io by imtausef */ 
.parent {
  width: 100%;
  padding: 10px;
  perspective: 1000px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; /* Para responsividade */
  gap: 20px; /* Espaço entre as cards */
  justify-content: center;
}

.card {
  width: 250px; /* Ou o tamanho que preferir */
  height: 250px; /* Ou o tamanho que preferir */
  padding-top: 10px;
  border-radius: 10px;
  border: 3px solid #141414;
  transform-style: preserve-3d;
  background: var(--black);
  background-size: 60px 60px;
  background-position:
    0 0,
    0 0;
  background-color: var(--black);
  box-shadow: rgba(142, 142, 142, 0.3) 0px 30px 30px -10px;
  transition: all 0.5s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.card:hover {
  transform: rotate3d(0.5, 1, 0, 30deg);
}

.content-box {
  background: var(--black);
  /* border-radius: 10px 100px 10px 10px; */
  transition: all 0.5s ease-in-out;
  padding: 15px;
  transform-style: preserve-3d;
  width: 80%;
  flex-direction: column;
  align-items: flex-start;
  align-items: center;
  text-align: center;
}

.card-image:hover {
  transform: translate3d(0px, 0px, 80px);
}

.content-box .card-image {
  width: 100%; /* ou 100%, se preferir */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto; /* centraliza horizontalmente */
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: all 0.5s ease-in-out;
}

.content-box .card-content {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: #141414;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 30px);
}

.content-box .card-content:hover {
  transform: translate3d(0px, 0px, 60px);
}

.content-box a{
  text-decoration: none;
  color: var(--light-blue);
  font-weight: 700;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.5s ease-in-out;
  transform: translate3d(0px, 0px, 20px);
}

.content-box a:hover{
  transform: translate3d(0px, 0px, 30px);
  color: var(--white);
}

.content-box i{
  color: var(--white);
  margin-right: 8px;
    transition: all 0.5s ease-in-out;
    transform: translate3d(0px, 0px, 20px);

}

.fa-brands{
    font-size: 25px;
    color: #ffffff;
}

.content-box i:hover{
    color: var(--white);
    transform: translate3d(0px, 0px, 30px);
}

section{
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 60px;
}

#home{
    background-image: url(assets/capa-site.jpeg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

#home img{
    width: 250px;
    margin-bottom: 20px;
}

#home h1{
    font-family: 'buck', cursive;
    font-size: 60px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

#home p{
    font-family: 'coco', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

#home a{
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.589);
    transition: background-color 0.3s ease;
}

#about{
    background-image: url(assets/dupla.jpeg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 50px;
}

#about h2{
    font-family: 'buck', cursive;
    text-align: center;
    font-family: 'buck', cursive;
    font-size: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: var(--white);
}

#about p{
    font-family: 'coco', sans-serif;
    font-size: 14px;
    font-weight: bold;
}

.blur{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15); /* fundo semitransparente */
    backdrop-filter: blur(10px);            /* desfoca só o que está atrás */
    -webkit-backdrop-filter: blur(10px);    /* suporte para Safari */
    width: 1000px;
    height: 400px;
    line-height: normal;
    padding: 20px;
    border-radius: 10px;
    text-align: justify;
}

.hidden {
  opacity: 0;
  transform: translateY(50px); /* começa deslocado para baixo */
  transition: all 0.8s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0); /* volta para posição normal */
}

#music{
    background-image: url(assets/music.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 50px;
}

.blur1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15); /* fundo semitransparente */
    backdrop-filter: blur(10px);            /* desfoca só o que está atrás */
    -webkit-backdrop-filter: blur(10px);    /* suporte para Safari */
    width: 95%;
    height: 900px;
    line-height: normal;
    padding: 20px;
    border-radius: 20px;
    text-align: justify;
}

#music h2{
    font-family: 'buck', cursive;
    text-align: center;
    font-family: 'buck', cursive;
    font-size: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: var(--white);
    padding-top: 20px;
    margin-bottom: 10px;
}

#music p{
    font-family: 'coco', sans-serif;
    font-size: 14px;
    color: var(--dark-blue);
}

#shows{
    background-image: url(https://images.unsplash.com/photo-1605640631134-3ca945451184?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#shows h2{
    font-family: 'buck', cursive;
    text-align: center;
    font-family: 'buck', cursive;
    font-size: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: var(--white);
    padding-top: 20px;
    margin-bottom: 10px;
}

#shows p{
    font-family: 'coco', sans-serif;
    font-size: 14px;
    color: var(--dark-blue);
    text-align: center;
    width: 50%;
}

#shows ul{
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 600px;
}

#shows ul li{
    background: rgba(0, 0, 0, 0.6);
    color: var(--light-blue);
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

#contact{
    background-color: rgba(0,0,0,0.1);
    display: grid;
    place-items: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

#contact canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;        /* para não bloquear cliques */
    z-index: 0;                  /* fica atrás do conteúdo */
}

#contact > *:not(canvas) {
    position: relative;
    z-index: 1;                  /* garante que texto e imagem fiquem na frente */
}

#contact #dupla{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-bottom: 20px;
}

#contact h2{
    font-family: 'buck', cursive;
    text-align: center;
    font-family: 'buck', cursive;
    font-size: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: var(--white);
    padding-top: 20px;
    margin-bottom: 10px;
}

#contact p{
    font-family: 'coco', sans-serif;
    font-size: 14px;
    color: var(--light-blue);
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

#contact #detail{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

#contact img{
    width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 2px 2px 4px #37a2b5;
}

#contact i{
    font-size: 30px;
    color: var(--white);
    margin-right: 15px;
}

#footer{
    font-family: Arial,sans-serif;
    background-color: transparent;
    color: var(--light-blue);
    text-align: center;
    font-size: 14px;
}

/* --- Responsividade geral --- */
@media (max-width: 1200px) {
  .blur {
    width: 90vw;
    height: auto;
    padding: 15px;
  }
  .blur1 {
    width: 98vw;
    height: auto;
    padding: 15px;
  }
}

@media (max-width: 900px) {
  .parent {
    gap: 12px;
  }
  .card {
    width: 180px;
    height: 180px;
    padding-top: 5px;
  }
  .content-box {
    width: 95%;
    padding: 10px;
  }
  #home img {
    width: 180px;
  }
  #contact img {
    width: 220px;
  }
}

@media (max-width: 700px) {
  .slide-menu {
    display: none;
  }
  .blur, .blur1 {
    width: 98vw;
    padding: 10px;
    font-size: 13px;
  }
  #about, #music, #shows, #home, #contact {
    padding: 10px;
    height: auto;
  }
  #shows p, #about p, #music p {
    width: 100%;
    font-size: 13px;
    padding: 0 5px;
  }
  .parent {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .card {
    width: 90vw;
    height: auto;
    min-height: 120px;
    flex-direction: column;
  }
  .content-box {
    width: 98%;
    padding: 8px;
  }
  .content-box .card-image {
    width: 70%;
    margin: 10px auto 0 auto;
  }
  #home h1, #about h2, #music h2, #shows h2, #contact h2 {
    font-size: 28px;
    padding-top: 10px;
  }
}

@media (max-width: 500px) {
  .menu-btn {
    top: 10px;
    left: 10px;
    width: 25px;
    height: 18px;
  }
  .slide-menu {
    display: none;
  }
  .blur, .blur1 {
    font-size: 12px;
    padding: 5px;
  }
  #home img {
    width: 120px;
  }
  #contact img {
    width: 120px;
  }
  .card {
    width: 98vw;
    min-height: 100px;
    padding-top: 2px;
  }
  .content-box .card-image {
    width: 90%;
    margin: 5px auto 0 auto;
  }
  #footer {
    font-size: 11px;
    padding: 5px;
  }
}

/* Ajuste para evitar overflow horizontal */
body, html {
  max-width: 100vw;
  overflow-x: hidden;
}
