/* ----------------------------------------------------------
   BASE
---------------------------------------------------------- */

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;        /* Raleway fina */
  color: #ffffff;
  background-color: #000000;
  height: 100%;
}

/* ----------------------------------------------------------
   HERO SECTION
---------------------------------------------------------- */

.hero {
  width: 100%;
  height: 100vh;
  background-image: url('images/fondo.jpg');
  background-size: cover;
  background-position: center;
background-color: rgba(0, 0, 0, 0.35);
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

/* ----------------------------------------------------------
   LOGO
---------------------------------------------------------- */

.hero-logo {
  width: 420px;
  max-width: 90vw;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

/* ----------------------------------------------------------
   TITULAR
---------------------------------------------------------- */

.hero-title {
  font-size: 48px;
  font-weight: 200;        /* Raleway fina */
  letter-spacing: 1px;
  margin: 0;
}

/* ----------------------------------------------------------
   SUBTÍTULO
---------------------------------------------------------- */

.hero-coming {
  font-size: 20px;
  font-weight: 200;        /* Aún más fino */
  opacity: 0.85;
  margin: 0;
  letter-spacing: 0.5px;
}

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */

@media (max-width: 768px) {
  .hero-logo {
    width: 240px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-coming {
    font-size: 18px;
  }
}
