/* ====== FONTS ====== */
@font-face {
  font-family: 'Mogeira';
  src: url('../fonts/Mogeira.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@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;
}

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

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Libre Franklin', sans-serif;
  color: #fff;
  overflow: hidden;
}

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

  /* 🔹 Fondo con overlay + multiply */
  background-color: rgba(110, 102, 83, 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;
}

/* ====== ELEMENTS ====== */
.logo-guinda {
  position: absolute;
  top: 8rem;      /* 🔹 Ubica el logo hacia arriba */
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
}

.headline {
  font-family: 'Mogeira', serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.subtitle {
  font-size: 1.25rem;       /* Un poco más grande */
  font-weight: 300;
  margin-bottom: 3rem;      /* Más espacio debajo */
}

.email {
  display: block; /* <--- antes inline-block */
  font-size: 1.1rem;
  margin-bottom: 2rem; /* menos separación porque ahora es bloque */
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  text-align: center; /* mantiene centrado el texto */
}

.email:hover {
  color: #d7a7a7;
}

.logo-littlebig {
  position: absolute;
  bottom: 4rem;      /* 🔹 margen desde el fondo */
  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 {
    font-size: 0.9rem;
  }
  .email {
    font-size: 0.9rem;
  }
}
