/* =========================
   FUENTES LOCALES
========================= */

@font-face {
  font-family: 'Ravise';
  src: url('../fonts/Ravise-Regular.ttf') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RalewayCustom';
  src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  overflow: hidden;
  font-family: 'RalewayCustom', sans-serif;
  background: #000;
}

/* Fondo */
#hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background: url('../img/Bg.webp') center/cover no-repeat;
  transform: translate(-5%, -5%);
  transition: transform 0.2s ease-out;
  z-index: 1;
}

/* Overlay */
#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  /* //background: rgba(0, 40, 20, 0.65); */
  z-index: 2;
}

/* Contenido */
#content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Logo */
#logo {
  position: absolute;
  top: 30px;
  left: 40px;
  z-index: 4;
}

#logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Títulos */
#title {
    font-family: 'Ravise', serif;
    font-size: 7.1rem;
}

#subtitle {
    font-size: 2.2rem;
    margin-top: 1px;
    font-weight: 700;
}

#description {
    max-width: 720px;
    font-weight: 400;
    margin-top: 5px;
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Botones */
.btn-custom {
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 14px;
  transition: all 0.3s ease;
  transform: scale(1);
}

.btn-outline-light {
  border: 1px solid #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
  transform: scale(1.08);
}

.btn-light:hover {
  transform: scale(1.08);
  color: #fff;
  background-color: #be6732;
  border: #be6732;
}

/* Responsive */
@media (max-width: 768px) {
  #title {
    font-size: 2.5rem;
  }

  #subtitle {
    font-size: 1.2rem;
  }

  #logo {
    font-size: 20px;
    left: 20px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  #logo {
    top: 20px;
    left: 20px;
  }

  #logo img {
    width: 150px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  #logo img {
    width: 120px;
  }
}