@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap");

/* Basic Reset */
* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

body,
html {
  height: 100%;
  font-family: "Lato", sans-serif;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  filter: grayscale(100%);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(41, 17, 0);
  background: linear-gradient(
    90deg,
    rgba(41, 17, 0, 0.95) 23%,
    rgba(0, 0, 0, 0.9) 90%
  );
  overflow: hidden;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

header {
  position: absolute;
  top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  background-color: #d97a33;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #cb5c0d;
}

.romantic-quote {
  font-family: "Dancing Script", cursive;
  font-size: 25pt;
  color: #fff;
  text-align: center;
}

.romantic-quote.small {
  font-family: "Dancing Script", cursive;
  font-size: 14pt;
  color: #fff;
  text-align: center;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

#logo {
  animation: pulse 10s infinite;
}

#randomMessage {
  border-top: solid 1px white;
  border-bottom: solid 1px white;
  padding: 20px;
  margin: 30px 0px;
}

.button-premium {
  background: linear-gradient(145deg, #d97a33, #eb7530);
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 30px;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 2px 4px #eb7530;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}

.button-premium::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.75s ease-in-out;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
}

.button-premium:hover::before {
  opacity: 1;
  width: 100%;
  height: 100%;
}

.button-premium:hover {
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3), 0 4px 6px #ff5e00;
  transform: translateY(-2px);
}

.button-premium:active {
  transform: translateY(2px);
}

@keyframes pulse-btn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    transform: scale(2);
    opacity: 0.9;
  }
  60% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.link {
  color: #d97a33;
  text-decoration: none;
  font-weight: bold;
}

.link:hover {
  color: #ff6f00;
  text-decoration: none;
  font-weight: bold;
}

.setlist-panel {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid black;
  width: auto;
  display: inline-block;
  height: 90px;
  overflow: hidden;
  position: relative;
}

.setlist-panel::after {
  content: ""; /* Necessário para criar o pseudo-elemento */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px; /* Ajuste a altura do gradiente conforme necessário */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none; /* Garante que o pseudo-elemento não interfere na interação com os elementos abaixo */
}

.setlist-panel:not(:first-child) {
  margin-top: 30px;
  padding-top: 30px;
}

.setlist-panel .setlist-section:not(:last-child) {
  margin-bottom: 20px;
}

.setlist-panel .setlist-section .setlist-title {
  font-family: "Dancing Script", cursive;
  font-size: 15pt;
  color: #fff;
  text-align: center;
  border: 0.2px solid white;
  border-bottom: 3px solid white;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px;
  transition: all 0.1s linear;
  cursor: pointer;
}

.setlist-panel .setlist-section .setlist-title:hover {
  background: #ff6f00;
}

.setlist-panel .setlist-section .setlist-videos {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: auto;
}

.setlist-panel .setlist-section .setlist-videos .setlist-video {
  position: relative;
  min-height: 300px;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  box-sizing: border-box;
  margin-top: 10px;
  transition: all 0.1s ease-in-out;
  cursor: pointer;
  opacity: 0.1;
}

.setlist-panel .setlist-section .setlist-videos .setlist-video:hover {
  box-shadow: 0 16px 16px rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
  z-index: 1;
}

.setlist-panel
  .setlist-section
  .setlist-videos
  .setlist-video
  .setlist-video-thumb {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 240px;
  border-radius: 10px 10px 0px 0px;
}

.setlist-panel
  .setlist-section
  .setlist-videos
  .setlist-video
  .setlist-video-description {
  padding: 10px;
}

.setlist-video-info-music-name {
  font-weight: bold;
  color: #d97a33;
  font-size: 12pt;
}

.setlist-video-info-music-singer {
  color: #ccc;
  font-size: 8pt;
}

.setlist-panel
  .setlist-section
  .setlist-videos
  .setlist-video:not(:last-child) {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .setlist-panel .setlist-section .setlist-videos .setlist-video {
    width: 100%;
    margin-right: 0px;
  }

  .setlist-panel
    .setlist-section
    .setlist-videos
    .setlist-video:not(:last-child) {
    margin-right: 0px;
  }

  .setlist-panel {
    width: 100%;
  }
}

.setlist-video-thumb::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(
    255,
    255,
    255,
    0.2
  ); /* Cor de fundo do botão de play */
  border-radius: 50%; /* Faz o botão ser redondo */
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5; /* Opacidade do botão de play */
  transition: opacity 0.3s ease; /* Suaviza a transição de opacidade */
}

.setlist-video-thumb::before {
  content: "▶"; /* Ícone de play */
  color: #fff; /* Cor do ícone de play */
  font-size: 24px; /* Tamanho do ícone de play */
  font-family: "Arial", sans-serif; /* Fonte para o ícone */
  text-align: center;
}

.setlist-video:hover .setlist-video-thumb::before {
  opacity: 1; /* Mostra o botão de play ao passar o mouse */
}

/* Estilos para o modal */
.modal {
  display: none; /* Oculto por padrão */
  position: fixed; /* Fixa o modal na tela */
  z-index: 1000; /* Coloca o modal à frente */
  left: 0;
  top: 0;
  width: 100%; /* O modal ocupará a tela inteira */
  height: 100%; /* O modal ocupará a tela inteira */
  background-color: rgba(0, 0, 0, 0.8); /* Fundo escuro e transparente */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
}

.modal-content {
  margin: 0px auto;
  width: auto;
  max-width: 600px;
  background-color: transparent;
  color: #fff;
  border-radius: 10px;
  height: 90%;
}

.close {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 16px;
  right: 70px;
  position: absolute;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.modal video {
  width: 100%;
  height: 92%;
  border-radius: 10px;
}
