@font-face {
  font-family: "Gill Sans Light";
  src: url("../fonts/GillSansLight.woff2") format("woff2"),
    url("../fonts/GillSansLight.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background-image: url("../img/bg-mobile.webp");
  background-size: 100vw 100vh;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Gill Sans Light", sans-serif;
  font-style: normal;
}

@media (min-width: 1199px) {
  body {
    background-image: url("../img/bg-desktop.webp");
  }
}

.password-error {
  color: #ff0000;
  font-weight: bold;
  font-size: 14px;
}

.btn {
  border-radius: 0;
}

.btn-outline-primary {
  color: #2377a4;
  border-color: #2377a4;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link {
  font-weight: 700;
}

.text-primary {
  color: #2377a4 !important;
}

.ave-volando-1 {
  position: relative;
  animation: aleteoSuave1 4s infinite alternate ease-in-out;
}

@keyframes aleteoSuave1 {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(-10px) translateX(5px);
  }
  50% {
    transform: translateY(0) translateX(0);
  }
  75% {
    transform: translateY(10px) translateX(-5px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.ave-volando-2 {
  position: relative;
  animation: aleteoSuave2 4.5s infinite alternate-reverse ease-in-out 0.5s;
}

@keyframes aleteoSuave2 {
  0% {
    transform: translateY(0) translateX(0);
  }
  25% {
    transform: translateY(12px) translateX(-7px);
  }
  50% {
    transform: translateY(0) translateX(0);
  }
  75% {
    transform: translateY(-8px) translateX(3px);
  }
  100% {
    transform: translateY(0) translateX(0);
  }
}

.sol-girando {
  animation: rotarSol 15s linear infinite;
}

@keyframes rotarSol {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 769px) {
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}

section {
  padding: 4rem 0;
}

.semi-circle {
  background-color: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 0px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.8em;
  min-width: 90px;
}

.countdown-item span {
  display: block;
}

.countdown-item .label {
  font-size: 0.5em;
  font-weight: normal;
  margin-top: 5px;
  text-transform: uppercase;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  .countdown-container {
    padding: 20px 30px;
  }
  h1 {
    font-size: 2em;
  }
  .countdown-item {
    font-size: 1.8em;
    min-width: 70px;
  }
  .countdown-item .label {
    font-size: 0.4em;
  }
  .countdown {
    gap: 10px;
  }
}

.the-experience-continues-image {
  width: 100%;
  border-radius: 24px;
}

.travel-and-stay-map {
  width: 100%;
  border-radius: 24px;
}
