/* =============================================
   Naru2day — Legal / Contact Pages
   ============================================= */

main.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1rem 3rem;
}

/* ── Shared parchment card ── */
.wn-legal,
.wn-contact {
  background: url('../img/Fondo_Pergamino.webp') center center / cover no-repeat;
  background-blend-mode: multiply;
  border: 2px solid #C19A6B;
  border-radius: 18px;
  padding: 2.5rem 3rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #1a0f0a;
}

/* ── Fade-in ── */
@keyframes wn-legal-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wn-fade-in {
  animation: wn-legal-fade-in 0.35s ease both;
}

/* ── Legal: headings ── */
.wn-legal h1 {
  font-family: 'Reggae One', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #3E2000;
  margin: 0 0 0.3rem;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.35);
}

.wn-legal h2 {
  font-family: 'Reggae One', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #4A2E15;
  margin: 1.8rem 0 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid rgba(139, 90, 43, 0.3);
  letter-spacing: 0.3px;
}

/* ── Legal: body text ── */
.wn-legal p {
  font-family: 'Klee One', cursive, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3b2510;
  line-height: 1.75;
  margin: 0.5rem 0;
}

.wn-legal-updated {
  display: inline-block;
  font-size: 0.78rem;
  color: #7a5030;
  margin-bottom: 1.6rem;
  font-style: italic;
}

.wn-legal a {
  color: #7a3d00;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.wn-legal a:hover {
  color: #3E2000;
}

/* ── Contact ── */
.wn-contact {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.wn-contact-emoji {
  display: block;
  font-size: 3rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.wn-contact h1 {
  font-family: 'Reggae One', system-ui, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: #3E2000;
  margin: 0 0 1rem;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.35);
}

.wn-contact p {
  font-family: 'Klee One', cursive, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3b2510;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}

.wn-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 1.25rem 0 0.75rem;
  padding: 0.65rem 1.4rem;
  background: rgba(90, 50, 0, 0.12);
  border: 1.5px solid rgba(90, 50, 0, 0.45);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #3E2000;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
}

.wn-contact-email:hover {
  background: rgba(90, 50, 0, 0.22);
  border-color: #5A3200;
  color: #1a0900;
  transform: translateY(-2px);
}

.wn-contact-note {
  font-family: 'Klee One', cursive, sans-serif;
  font-size: 0.82rem;
  color: #7a5030;
  font-style: italic;
  margin-top: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {

  .wn-legal,
  .wn-contact {
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
  }

  .wn-legal h1,
  .wn-contact h1 {
    font-size: 1.5rem;
  }

  .wn-legal h2 {
    font-size: 1rem;
  }
}