/* Whimsigoth Elegante - Limpio y Romántico */
* { margin:0; padding:0; box-sizing:border-box; }
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: linear-gradient(to bottom, #0d001a, #1a0033);
  color: #d9c2ff;
  line-height: 1.7;
  min-height: 100vh;
  background-image: url('assets/rosas-goticas-fondo.jpg'); /* sube un seamless de rosas moradas/negro */
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header */
header {
  text-align: center;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(212, 165, 255, 0.2);
}
h1 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 4rem;
  color: #c9a0ff;
  margin-bottom: 10px;
  letter-spacing: 4px;
}
.tagline {
  font-size: 1.3rem;
  color: #b19cd9;
  font-style: italic;
}
nav {
  margin-top: 30px;
}
nav a {
  color: #d4a5ff;
  text-decoration: none;
  margin: 0 25px;
  font-size: 1.1rem;
  transition: color 0.3s;
}
nav a:hover {
  color: #ff99cc;
}

/* Hero / Presentación */
.hero {
  text-align: center;
  margin: 60px 0;
}
.avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(200, 160, 255, 0.4);
  box-shadow: 0 0 30px rgba(160, 32, 240, 0.25);
  margin-bottom: 30px;
}
.hero h2 {
  font-size: 2.2rem;
  color: #e0c3ff;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #ccc2e0;
}

/* Secciones / Cards */
.sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 60px 0;
}
.card {
  background: rgba(20, 10, 40, 0.6);
  border: 1px solid rgba(75, 0, 130, 0.4);
  border-radius: 12px;
  padding: 35px;
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(160, 32, 240, 0.3);
  border-color: #c9a0ff;
}
.card h3 {
  font-family: 'Cinzel Decorative', cursive;
  font-size: 1.8rem;
  color: #d4a5ff;
  margin-bottom: 15px;
}
.card p {
  color: #b19cd9;
}

/* Personajes page */
.characters article {
  margin: 50px 0;
  padding: 30px;
  background: rgba(30, 15, 50, 0.55);
  border-radius: 10px;
  border: 1px dashed rgba(212, 165, 255, 0.2);
}
.characters h2 {
  color: #ff99cc;
  font-size: 2rem;
  margin-bottom: 20px;
}
.char-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 60px 0 40px;
  color: #888;
  font-size: 0.95rem;
  border-top: 1px solid rgba(75, 0, 130, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 3rem; }
  .avatar { width: 140px; height: 140px; }
}
