@font-face {
  font-family: "CursiveBold";
  src: url("./fonts/Cursive_Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "CursiveSemiBold";
  src: url("./fonts/Cursive_Semi_Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NeueBlack";
  src: url("./fonts/Neue_Black.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NeueBold";
  src: url("./fonts/Neue_Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SansBoldItalic";
  src: url("./fonts/Sans_Bold_Italic.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SansSemiBold";
  src: url("./fonts/Sans_Semi_Bold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  color: #f6f1ec;
  font-family: "SansSemiBold", sans-serif;
  background-color: #d8b495;
  margin: 0;
  padding: 0;
}

.container-contact-language {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #1f2d53;
  padding: 10px 20px;
  height: 35px;
}

.contact-mainpage {
  font-size: 13px;
}

.language .material-symbols-outlined {
  font-size: 20px;
  vertical-align: middle;
}

.hero {
  position: relative;
  height: 700px;
  width: 100%;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(216, 180, 149, 0.8),
    rgba(31, 45, 83, 0.8)
  );
  z-index: 1;
}

#bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.top-bar {
  position: fixed;
  top: 35px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 40px;
  transition: all 0.3s ease-in-out;
}

.top-bar.scrolled {
  background-color: rgba(31, 45, 83, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 5px 40px;
  backdrop-filter: blur(10px);
}

.hero-logo img {
  width: 150px;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.top-bar.scrolled .hero-logo img {
  width: 80px;
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.menu-card {
  font-size: 20px;
}

.hero-text {
  position: absolute;
  bottom: 110px;
  left: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.headline {
  z-index: 3;
  font-size: 50px;
  line-height: 60px;
}

.subheadline {
  z-index: 3;
  font-family: "CursiveSemiBold";
  font-size: 25px;
}

.trabaja-button {
  font-family: "SansSemiBold", sans-serif;
  background-color: rgba(31, 45, 83, 0.8);
  border: none;
  color: #f6f1ec;
  border-radius: 30px;
  font-size: 20px;
  padding: 10px;
  width: 230px;
  vertical-align: middle;
  margin: 20px 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.servicios-container-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 50px;
  text-align: center;
  margin: 50px auto;
  margin-bottom: 0;
  gap: 30px;
}

.main-service .material-symbols-outlined {
  font-size: 150px;
  font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 48;
}

.title-services {
  font-size: 23px;
  font-family: "NeueBold";
}

.description-service {
  font-size: 16px;
  margin: 10px;
  text-align: justify;
}

.reserva-button {
  display: block;
  font-family: "SansSemiBold", sans-serif;
  background-color: rgb(31, 45, 83);
  border: none;
  color: #d8b495;
  border-radius: 30px;
  font-size: 23px;
  padding: 15px 20px;
  width: auto;
  text-align: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 50px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.reserva-button:hover {
  background-color: #a57665;
  color: #f6f1ec;
  transition: all 0.3s ease-in-out;
}

.nosotras-container {
  background-color: #a57665;
  padding: 80px 40px;
  margin: auto;
  display: flex;
  justify-content: center;
  text-align: left;
}

.nosotras-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

#nosotras-img {
  flex: 0 0 30%;
  max-width: 650px;
  min-width: 300px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-radius: 5px;
}

.nosotras-text {
  flex: 0 0 70%;
  max-width: 500px;
}
.titulo-nosotras {
  font-size: 50px;
  text-align: center;
}

.sobre-nosotras {
  font-size: 20px;
  text-align: justify;
  margin-top: 20px;
}

.marea-text {
  font-family: "NeueBold";
}

footer {
  z-index: 1;
  font-size: 15px;
  opacity: 25%;
  text-align: center;
  margin: 10px auto;
}

.menu-btn {
  position: fixed;
  top: 0px;
  right: 15px;
  font-size: 15px;
  background-color: transparent;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  color: #f6f1ec;
  z-index: 1500;
  display: none;
}

.scroll-down {
  display: none;
}

@media (max-width: 900px) {
  .container-contact-language {
    padding: 10px;
    justify-content: left;
    height: 32px;
    gap: 30px;
  }

  .contact-mainpage {
    font-size: 10px;
  }

  .language .material-symbols-outlined {
    font-size: 17px;
  }

  .menu-btn {
    display: block;
    z-index: 1600;
  }

  .hero {
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding-top: 40px;
  }

  .top-bar {
    position: relative;
    top: 0px;
    width: 100%;
    display: flex;
    justify-content: center;

    margin-bottom: 20px;
  }

  .top-bar.scrolled {
    background: none;
    box-shadow: none;
  }

  .top-bar,
  .top-bar.scrolled {
    padding: 0;
  }

  .menu-container {
    position: fixed;
    top: 31px;
    right: -450px;
    width: 200px;
    height: 100vh;
    border-radius: 0px;
    background-color: rgba(31, 45, 83, 0.9);
    transition: right 0.3s ease-in-out;
    will-change: right;
    z-index: 1800;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0px;
    padding: 20px;
    padding-top: 50px;
    backdrop-filter: blur(10px);
  }

  .menu-container.open {
    right: 0;
  }

  .menu-card {
    text-align: center;
    color: #a57665;
  }

  .hero-logo {
    display: flex;
    justify-content: center;
  }

  .hero-logo img {
    width: 250px;
  }

  .hero-text {
    position: relative;
    top: 10px;
    left: auto;
    transform: none;
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .headline {
    font-size: 30px;
    line-height: 35px;
  }

  .subheadline {
    font-size: 16px;
  }

  .trabaja-button {
    font-size: 15px;
  }

  .scroll-down {
    display: block;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    cursor: pointer;
  }

  .scroll-down .material-symbols-outlined {
    font-size: 80px;
  }

  .scroll-down span {
    color: #f6f1ec;
    animation: bounce 1.8s infinite;
    opacity: 0.9;
  }

  /* Animación */
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(10px);
    }
    60% {
      transform: translateY(6px);
    }
  }

  .servicios-container-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 5px;
    padding: 15px;
  }

  .main-service .material-symbols-outlined {
    font-size: 100px;
  }

  .nosotras-block {
    flex-direction: column;
  }

  #nosotras-img {
    width: 30%;
  }
}
