/* Base styles */
body {
  font-family: 'Rajdhani', sans-serif;
  background-color: #1c1c1e;
  color: rgb(254, 255, 255);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Title fonts */
h1, h2, h3 {
  font-family: 'Bangers', cursive;
  letter-spacing: 1px;
  margin: 0;
}

/* Header styling */
header {
  background: rgb(17, 17, 17);
  color: rgb(0, 140, 227);
  padding-bottom: 10px;
}

/* Flex layout for header */
.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 10px 20px;
}

/* Center title */
.header-container h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 48px;
  font-family: 'Bangers', cursive;
  color: rgb(0, 140, 227);
  white-space: nowrap;
}

.banner-header img {
  width: 100%;
  max-height: 300px; /* Change as needed */
  object-fit: cover;
  display: block;
  margin: 0 auto;
}


/* Logo on the right */
.logo {
  width: 240px;
  height: auto;
}

/* Navigation */
nav {
  text-align: center;
  margin-top: 10px;
}

nav a {
  color: rgb(0, 140, 227);
  margin: 0 15px;
  text-decoration: none;
}

/* Sections */
section {
  padding: 2em;
  max-width: 800px;
  margin: auto;
}

/* Footer */
footer {
  background: #1c1c1e;
  color: rgb(0, 140, 227);
  text-align: center;
  padding: 1em 0;
}

/* Comic Gallery */
.comic-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.comic-card {
  width: 250px;
  background-color: #222;
  color: #fff;
  border: 2px solid #fa6f0b;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.comic-card:hover {
  transform: scale(1.05);
}

.comic-card img {
  width: 100%;
  border-radius: 6px;
}

.character-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.character-card {
  width: 250px;
  background-color: #222;
  color: #fff;
  border: 2px solid #fa6f0b;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.character-card:hover {
  transform: scale(1.05);
}

.character-card img {
  width: 100%;
  border-radius: 6px;
}

.artist-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.artist-card {
  width: 250px;
  background-color: #222;
  color: #fff;
  border: 2px solid #fa6f0b;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.artist-card:hover {
  transform: scale(1.05);
}

.artist-card img {
  width: 100%;
  border-radius: 6px;
}

p {
  font-size: 18px;       /* Makes paragraph text bigger */
  line-height: 1.8;      /* Adds space between lines for easier reading */
  max-width: 700px;      /* Optional: Keeps lines from being too long */
  margin: 0 auto 20px;   /* Center the text and space it from other elements */
  font-family: 'Rajdhani', sans-serif;  /* Ensures your chosen font is used */
}

#preorder {
  background-color: #1f1f1f;
  color: #ffa94d;
  padding: 2em;
  margin-top: 2em;
  border: 2px solid #fa6f0b;
  border-radius: 10px;
  max-width: 800px;
  margin: 40px auto;
}

#preorder ul {
  list-style-type: '🔥 ';
  padding-left: 20px;
}

.preorder-button {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  font-size: 18px;
  background-color: #fa6f0b;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.preorder-button:hover {
  background-color: #fa6f0b;
}

.donate-button {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 18px;
  background-color: #fa6f0b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.donate-button:hover {
  background-color: #ff8800;
}

