/* ====== TIPOGRAFÍAS ====== */
@font-face {
  font-family: 'Libre Franklin';
  src: url('../fonts/LibreFranklin-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'Libre Franklin';
  src: url('../fonts/LibreFranklin-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
}

@font-face {
  font-family: 'Albert Sans';
  src: url('../fonts/AlbertSans-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Albert Sans';
  src: url('../fonts/AlbertSans-Medium.ttf') format('truetype');
  font-weight: 500;
}

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

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  border: none;
  overflow: hidden;
  font-family: 'Albert Sans', sans-serif;
  color: #fff;
}

/* ====== LAYOUT ====== */
.container {
  position: relative;
  width: 100vw;
  height: 100vh;

  background-color: rgba(22, 17, 14, 0.7);
  background-image: url("../assets/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;

  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  text-align: center;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ====== ELEMENTOS ====== */
.logo-guinda {
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
}

.headline {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 3rem;
  font-weight: 300; /* Light/Regular */
  line-height: 1.3;
  margin-bottom: 2rem;
  text-transform: uppercase;
  color: #d6975d; /* todo el texto en terracota */
}

.headline .highlight {
  font-weight: 600; /* Solo aumenta grosor */
}


.subtitle {
  font-family: 'Albert Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.email {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}

.email:hover {
  color: #d6975d;
}

.logo-littlebig {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .headline {
    font-size: 1.8rem;
  }

  .logo-guinda {
    width: 140px;
  }

  .logo-littlebig {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .headline {
    font-size: 1.4rem;
  }

  .subtitle,
  .email {
    font-size: 0.9rem;
  }
}
