/*
Theme Name: BAM Music
Author: Violeta Rosales
Version: 1.0
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
  /* background: #111; */
  color: white;
  overflow: auto; 
}

body, h1, h2, h3, h4, h5, h6 {
  font-family: 'Glacial Indifference', sans-serif;
}

p {
  font-size: 18px;
  margin-bottom: 20px;
}

a {
  text-decoration: none;
}


.background-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gif-bg {
  display: none;
  width: 100%;
  height: 100%;
  background: url('/coming-soon/bg.gif');
}


/* HEADER */
.menu-items {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(0deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  color: white;
}

.logo img {
  max-height: 30px;
  height: auto;
  width: auto;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 101;
  margin-top: -10px;
}

/* NAVIGATION */
.nav-links {
  display: flex;
  align-items: center;
}

.nav-links ul.menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul.menu li a {
  color: inherit;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.1em;
}

.nav-links ul.menu li a:hover {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

.nav-links ul.menu li.current-menu-item a {
  color: yellow;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 0 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }

  .menu-items.open .nav-links {
    max-height: 100vh;
    opacity: 1;
  }

  .header.open {
    background-color: black;
  }

  .nav-links ul.menu {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    height: 100vh;
  }

  .nav-links ul.menu li {
    text-align: center;
  }

  .only-desktop {
    display: none;
  }

  .wpcf7-form-control {
    width: 100%;
  }

}








/* COLUMNS */

.wp-block-column {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.wp-block-column.visible {
  opacity: 1;
  transform: translateY(0);
}
.details-header {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px 0;
  display: flex;
  flex-direction: column;
}

.details-title {
  z-index: 2;
  position: relative;
}

.details-title h1 {
  font-size: 76px;
  margin-bottom: 40px;
  color: yellow;
  font-family: 'Glacial Indifference', sans-serif;
  max-width: 60%;
}


.privacy-policy .details-title h1, .single .details-title h1 { 
  font-size:56px;
  max-width: 100%;
  padding-bottom: 40px;
}

.privacy-policy .details-title h1 {
  text-align: center;
}

/* Imagen destacada flotante */
.details-image {
  position: absolute;
  top: 120px;
  right: 40px;
  z-index: 3;
  /* transform: translateY(10%); */
}

.details-image img {
  max-width: 320px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.4);
}

/* Caja blanca del contenido */
.details-content {
  background: transparent;
  margin-top: -30px;
}

.details-box {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .details-header {
    padding: 60px 20px 0;
  }

  .details-title h1 {
    font-size: 46px;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  .details-image {
    position: static;
    transform: none;
    margin: 30px auto 0;
    text-align: center;
  }

  .details-image img {
    max-width: 100%;
  }

  .details-content {
    margin-top: 20px;
    padding: 0 20px 60px;
  }

  .details-box {
    padding: 0px 20px;
  }

  .video-bg {
    display: none;
  }

  .gif-bg {
    display: block;
  }

  .artist-social {
    padding: 0 !important;
  }
}


/* Contact Form */

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: none;
}

.wpcf7-form-control {
  padding: 10px;
  font-size: 1em;
}

.wpcf7-submit {
  background-color: var(--wp--preset--color--yellow) !important;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  border-radius: 9999px;
  color: var(--wp--preset--color--black) !important;
  font-family: 'Glacial Indifference', sans-serif;
}


/* Footer */

footer {
  text-align: center;
}

footer ul.menu {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 50px;
  justify-content: center;
}

footer ul.menu a{
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  display: block;
  transition: opacity 0.2s ease;

}

footer .social-icons a:hover {
  opacity: 0.7;
}


/* Video playlist */
.vpfy-arrow-up, .vpfy-arrow-down {
  display: none !important;
}

