/* --- Variables de Color (Extraídos de tu Logo) --- */
:root {
  --bg-color: #f9f7f2; /* Crema / Papel suave */
  --text-dark: #4a3b32; /* Café oscuro del texto */
  --accent-rust: #c56c52; /* El color terracota de la casa */
  --accent-gold: #e6b55a; /* El color mostaza del sol */
  --font-heading: "Lora", serif;
  --font-body: "Lato", sans-serif;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-dark);
  font-family: var(--font-body);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

/* --- Contenedor Principal --- */
.container {
  max-width: 600px;
  width: 100%;
  animation: fadeIn 1.5s ease-in-out;
}

/* --- Estilos del Logo --- */
.logo {
  max-width: 250px; /* Ajusta esto según el tamaño de tu jpg */
  height: auto;
  margin-bottom: 2rem;
  /* Si tu JPG tiene fondo blanco y se ve un cuadro feo,
       usa esto para intentar mezclarlo (multiply),
       aunque lo ideal es un PNG transparente */
  mix-blend-mode: multiply;
}

/* --- Tipografía --- */
.tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--accent-rust);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6d5d52; /* Un café un poco más suave */
  margin-bottom: 2.5rem;
}

/* --- Botón --- */
.btn {
  text-decoration: none;
  background-color: var(--text-dark);
  color: var(--bg-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid var(--text-dark);
}

.btn:hover {
  background-color: transparent;
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* --- Footer --- */
footer {
  position: absolute;
  bottom: 20px;
  font-size: 0.75rem;
  opacity: 0.6;
}

/* --- Animación simple --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsivo (Móvil) --- */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  .logo {
    max-width: 200px;
  }
}
