/* * {
  outline: 1px solid red;
} */

:root {
  color-scheme: dark;
  forced-color-adjust: none;
}


html,
body {
  scroll-behavior: smooth;

  overflow-x: hidden;
  min-height: 100dvh;
  width: 100%;
  margin: 0;
  padding: 0;

  /* Layer order: top -> bottom */
  background-image:
    linear-gradient(to right, #000033b7 0%, #5100589f 50%, #000033b7 100%),
    url('../images/newback.webp'),
    url('../menu_img/gridme.png');

  background-repeat: no-repeat, no-repeat, repeat;
  background-position: left top, left top, top left;
  background-attachment: scroll, fixed, scroll;
  background-size: auto, cover, 50px 50px;
}


.hero-section {
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.burger-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(25vw, 40rem);
  margin: 0;
  padding: 0;
  overflow: visible;
}

.burger-menu::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);

  /* Background images */
  background-image: url('../menu_img/back.webp'), url('../menu_img/bt-logo.webp');

  /* Keep first image exactly as before */
  background-repeat: no-repeat;
  /* applies to all by default */
  background-position: center;
  /* first image stays centered */
  background-size: contain;
  /* first image stays contain */

  /* Override only the second image */
  background-repeat: no-repeat, no-repeat;
  /* ensure both no-repeat */
  background-position: center, center 5%;
  /* second image horizontally centered, 10% from top */
  background-size: contain, 7% auto;
  /* second image shrinks to 8% width */

  z-index: 0;
  pointer-events: none;
}



.burger-menu img:not(.bt-top, .socket-overlay, .face-overlay, .touchhere-overlay) {
  width: 100%;
  height: auto;
  display: block;
  padding: 1.45%;
}

/* Ensure child elements are layered above the background */
.burger-menu>* {
  position: relative;
  z-index: 2;
}



.bt-top-container {
  width: 125%;
  height: auto;
  margin-left: 0%;
  display: block;
  container-type: inline-size;
}

.bt-top {
  width: 100%;
  height: auto;
  display: block;
}

/* 
<img src="menu_img/bt-logo.webp" alt="anityex's logo" class="logotop" />
.logotop {
  position: absolute;
  top: -47%;
  left: 45%;
  z-index: 3;
  width: 8% !important;
} */


.socket-overlay {
  position: absolute;
  top: 7%;
  left: 58%;
  height: 110%;
  z-index: 2;
}

.face-overlay {
  position: absolute;
  top: 32%;
  left: 78%;
  height: 33%;
  z-index: 3;
}

.touchhere-overlay {
  position: absolute;
  top: 73%;
  left: 86%;
  height: 38%;
  z-index: 4;
}


.text-overlay {
  position: absolute;
  top: -13%;
  left: 3%;
  width: 55%;
  height: 90%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  user-select: none;

  padding-left: 0%;
  padding-right: 0%;
  font-family: 'Luckiest Guy', cursive;
  color: #000033;
  font-size: 5.7cqw;
  text-align: center;
}



.contact-btn {
  height: auto;
  width: 108%;
  margin-top: 0.7%;
}

.buttons-row {
  width: 122%;
  display: flex;
  justify-content: center;
}

.store-btn {

  height: auto;
  width: 88%;
}


.back::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 107%;
  height: 100%;

}

.bob2 {
  animation: bobbing2 1s cubic-bezier(.7, 0, 0, .7) infinite;
  animation-direction: normal;
  display: inline-block;
}

@keyframes bobbing2 {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-3px) rotate(1deg);
  }
}


.bob {
  animation: bobbing 1.8s cubic-bezier(.7, 0, 0, .7) infinite;
  animation-direction: normal;
  display: inline-block;
}

@keyframes bobbing {

  0%,
  100% {
    transform: translatex(0);
  }

  50% {
    transform: translatex(-8px);
  }
}


@keyframes sway {
  0% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(1deg);
  }
}

.sway {
  animation: sway 1s ease-in-out infinite;
  animation-direction: alternate;
  display: inline-block;
  transform-origin: center;
}




.clickable {
  /* Transition all properties that will change */
  transition: transform 0.05s ease, color 0.05s ease, filter 0.05s ease;
  filter: none;
}

.clickable:hover {
  transform: translateY(-7px);
  transform: translateY(-7px);
  filter:
    drop-shadow(0 7px 0 #ffffff) drop-shadow(0px -7px 5px #0000006e);
}

.clickable:active {
  transform: translateY(0px);
  filter: drop-shadow(0px 0px 0px #ffffff);
}




/* ----------------------------------------------------------------*/

/* .contact-section * {
  outline: 1px solid red;
}
 */
/* ----------------------------------------------------------------*/

.contact-section {
  height: 100vh;
  color: #ffffff;
  padding: 48px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .container-inner {

  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-section .container-inner .top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  flex-direction: row;
}

.contact-section .centerimage {
  max-width: 100%;
  height: auto;
  max-height: 30dvh;
  margin-bottom: 0.5dvh;
}

.contact-section .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


.buttons-container .div1 {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.buttons-container .div1 img {
  width: 12dvh;
  height: auto;
  padding-right: 2%;
}

/* … el resto de tus estilos … */

.buttons-container .div2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* incluido */
  width: 100%;
  box-sizing: border-box;
}

.buttons-container .div1 a {
  width: 100%;
  box-sizing: border-box;
}

h4 {
  font-family: Arial, Helvetica, sans-serif;
  color: #ffffff;
  text-align: justify;

}

h2 {
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  font-size: 200%;
}

.SOCIALS {
  white-space: nowrap;
  display: inline-block;

  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
  color: #ffffff;
  font-size: 120% !important;

  background-color: #ffae00;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  font-size: 1rem;
  padding: 1em 5vw;
  margin: 0.5em;
  text-decoration: none;
}

.SOCIALS2 {
  white-space: nowrap;
  display: inline-block;

  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
  color: #ffffff;
  font-size: 120% !important;

  background-color: #00bfa5;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  font-size: 1rem;
  padding: 0.5em 5vw;
  margin: 0.5em;
  text-decoration: none;
}

/* ----------------------------------------------------------------*/


/* ----------------------------------------------------------------*/

.footer {
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
  background: #17001a9f;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
  padding: 60px;
}


.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
}

.links {
  margin-top: 20px;
}

.links li {
  list-style: none;
  margin-bottom: 10px;
}

.links a {
  text-decoration: none;
  color: #bfbfbf;
  transition: .2s;
}

.links a:hover {
  color: #fff;
}


@media (max-width: 768px) {
  .footer {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    border-radius: 0;
  }

  .footer .footer-row {
    padding: 20px;
    gap: 1rem;
  }

  .footer-col form {
    display: block;
  }

  .footer-col form :where(input, button) {
    width: 100%;
  }

  .footer-col form button {
    margin: 10px 0 0 0;
  }
}






/* ----------------------------------------------------------------*/
/* Responsive adjustments */
@media (max-width: 712px) and (max-aspect-ratio: 6/7) {

  .burger-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(80vw, 40rem);




    .clickable {
      /* Transition all properties that will change */
      transition: transform 0.1s ease, color 0.1s ease, filter 0.1s ease;
      filter: none;
    }

    .clickable:hover {
      transform: translateY(-4px);
      transform: translateY(-4px);
      filter:
        drop-shadow(0 4px 0 #ffffff) drop-shadow(0px -4px 5px #0000006e);
    }

    .clickable:active {
      transform: translateY(0px);
      filter: drop-shadow(0px 0px 0px #ffffff);
    }


  }
}