/* villainpages.css — shared villain bio layout
   Mobile-first, responsive, cinematic style
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  /* Primary reading/display font: Permanent Marker (handwritten, bold) */
  font-family: "Permanent Marker", "Bangers", sans-serif;
  background: #000;
  color: #f2f2f2;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
  overflow-x: hidden;
}

/* ===== Header ===== */
.villain-header {
  background: linear-gradient(180deg, #1a0000 0%, #000 100%);
  padding: 2rem 1rem;
  text-align: center;
}

/* Villain title: use Nosifer for dramatic, dripping effect */
.villain-header h1,
.villain-title {
  font-family: "Nosifer", "Permanent Marker", cursive;
  color: #ff3030;
  font-size: 2.5rem;
  text-shadow: 0 0 10px #ff0000, 0 0 25px #ff3030;
  margin: 0;
}

.villain-header .tagline {
  /* Tagline uses the playful comic-style Bangers */
  color: #ffd580;
  font-family: "Bangers", cursive;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

/* ===== Sections ===== */
main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

section {
  margin-bottom: 3rem;
}

/* Section headings use Bangers for punchy look */
h2 {
  font-family: "Bangers", "Permanent Marker", cursive;
  color: #ff4040;
  margin-bottom: 1rem;
  text-shadow: 0 0 6px #ff4040;
}

/* Body paragraphs stay in Permanent Marker for consistency/readability */
p {
  font-size: 1rem;
  margin: 1rem 0;
  color: #ddd;
  font-family: "Permanent Marker", sans-serif;
}

/* ===== Images ===== */
.villain-image {
  display: block;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 400px;
  border: 3px solid #ff4040;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 64, 64, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.villain-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 100, 100, 0.6);
}

/* ===== Text styling ===== */
.debt {
  color: #ff8080;
  font-weight: bold;
  font-size: 1.1em;
  font-family: "Permanent Marker", sans-serif;
}

/* ===== Buttons ===== */
.button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem auto 2rem;
  width: 100%;
  text-align: center;
}

.btn {
  display: block;
  width: 90%;
  max-width: 300px;
  text-align: center;
  padding: 0.85rem 1.5rem;
  font-family: "Bangers", cursive;
  font-size: 1.2rem;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* Evil red/orange button */
.btn-evil {
  background: linear-gradient(90deg, #ff3030, #ff6600);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 64, 0, 0.6);
}

.btn-evil:hover {
  background: linear-gradient(90deg, #ff6600, #ff3030);
  box-shadow: 0 0 25px rgba(255, 80, 0, 0.8);
  transform: scale(1.05);
}

/* Heroic green button */
.btn-hero {
  background: linear-gradient(90deg, #00b33c, #66ff66);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 255, 80, 0.6);
}

.btn-hero:hover {
  background: linear-gradient(90deg, #66ff66, #00b33c);
  box-shadow: 0 0 25px rgba(0, 255, 80, 0.8);
  transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
  background: #0a0a0a;
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #888;
  font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
/* Tablets */
@media (min-width: 600px) {
  body { font-size: 1.05rem; }
  .villain-header h1 { font-size: 3rem; }
  .villain-image { max-width: 500px; }
  .button-container { flex-direction: row; }
  .btn { width: auto; }
}

/* Desktops */
@media (min-width: 900px) {
  .villain-header h1 { font-size: 3.5rem; }
  .villain-header .tagline { font-size: 1.25rem; }
  main { padding: 3rem 0; }
  .btn { font-size: 1.25rem; }
}


