/* heropages.css — Hero Page Styles for The Iron Banker */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Comic Neue', sans-serif;
  background-color: #000;
  color: #f5f5f5;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
}

/* HEADER */
.hero-header {
  background: linear-gradient(180deg, #001a00 0%, #000 100%);
  padding: 2.5rem 1rem;
  text-align: center;
}

.hero-title {
  font-family: 'Luckiest Guy', cursive;
  color: #00ff80;
  font-size: 3rem;
  text-shadow: 0 0 8px #00ff80, 0 0 20px #007a33;
}

.hero-header .tagline {
  font-family: 'Baloo 2', cursive;
  color: #88ffcc;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* MAIN CONTENT */
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section {
  margin-bottom: 3rem;
}

.hero-image {
  display: block;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 128, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0, 255, 128, 0.8);
}



.highlight {
  color: #00ffaa;
  font-weight: bold;
  text-shadow: 0 0 6px #00ff80;
}

/* CONTENT STYLING */
.content {
  background-color: #0b1a0f;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 255, 128, 0.4);
  text-align: left;
  color: #c0ffd5;
}

.content h2 {
  color: #00ff80;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* LIST STYLING */
.knowledge-list {
  list-style: none;
  padding-left: 0;
}

.knowledge-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* VILLAIN NAMES IN CONTENT */
.villain-name {
  color: #ff004f;
  font-weight: bold;
  text-shadow: 0 0 4px #ff3366;
}

/* BUTTONS */
.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  text-align: center;
  cursor: pointer;
}

.btn-hero {
  background-color: #00ff80;
  color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(0, 255, 128, 0.4);
}

.btn-hero:hover {
  background-color: #00ffaa;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 255, 128, 0.6);
}

.btn-alert {
  background-color: #ff004f;
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 0, 79, 0.4);
}

.btn-alert:hover {
  background-color: #ff3366;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 0, 79, 0.6);
}

/* FOOTER */
footer {
  background-color: #0a0a0a;
  padding: 1rem;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
  border-top: 1px solid rgba(0, 255, 128, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-header .tagline {
    font-size: 1rem;
  }

  .content {
    padding: 16px;
  }
}



