@font-face {
  font-family: "Tusker";
  src: url("fonts/TuskerGrotesk-6500Medium.eot") format("eot"), url("fonts/TuskerGrotesk-6500Medium.woff2") format("woff2"), url("fonts/TuskerGrotesk-6500Medium.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
  font-family: "Tusker";
}

body {
  max-width: 100vw;
}

main {
  width: 100%;
}

img {
  display: block;
  object-fit: contain;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
}

/* Video Containers */
.video-container {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}

#desktop-video {
  display: block;
}

#mobile-video {
  display: none;
}

/* Media query to switch videos */
@media (max-width: 768px) {
  #desktop-video {
    display: none;
  }
  #mobile-video {
    display: block;
  }

  .controls {
    display: block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
  }

  nav img {
  width: auto;
  height: 40px !important;
  }
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 2;
  padding: 0 20px;
}

nav img {
  width: auto;
  height: 55px;
}

/* Botón dentro del nav */
nav #soundToggle {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

.controls {
  display: none;
}

.custom-footer {
  background: #111;
  color: #fff; /* amarillo verdoso como en la imagen */
  text-align: center;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-email {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}

.footer-socials {
  display: flex;
  gap: 30px;
}

.footer-socials img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 8px;
  transition: transform 0.2s ease;
}

.footer-content a {
  color: #b80002;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-content a:hover {
  transform: scale(1.1);
}

.footer-socials img:hover {
  transform: scale(1.1);
}

.footer-copy {
  color: #555;
  font-size: 14px;
  margin-top: 10px;
}

/*# sourceMappingURL=style.css.map */
