/* General Styling */
.comic-body {
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
}

body,
html {
  overflow-x: hidden;
}

body.light-mode {
  background-color: #ffffff;
  color: #000000;
}

/* Comic Viewer */
.comic-viewer {
  text-align: center;
  margin: 10px auto;
  padding: 10px;
  background-color: #1e1e1e;
  border-radius: 10px;
  max-width: 1000px;
}

body.light-mode .comic-viewer {
  background-color: #ffffff;
  border: 1px solid #ddd;
}

.comic-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.comic-container {
  display: flex;
  flex-direction: column; /* Stack images vertically */
  gap: 2px; /* Space between comics */
}

.comic-strip img {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border: 2px solid #ff0000;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

body.light-mode .comic-strip img {
  border: 1px solid #ddd;
}

body.light-mode .nav-button {
  background-color: #ddd;
  color: #000;
}

.war-highlight {
  color: #d11010;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.journey {
  font-family: serif, sans-serif;
  font-size: 30px;
  text-align: center;
  color: #ffffff;
  background-color: #1e1e1e;
}

.war-intro {
  text-align: center;
  margin: 20px auto;
  padding: 20px;
  background-color: #333;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-width: 800px;
}

.gold {
  color: #ffd700;
}

.war-heading {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #ff0000;
  margin-bottom: 10px;
}

.war-description {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
}

.war-thank-you {
  font-style: italic;
  color: #ffffff;
}

.war-name {
  font-weight: bold;
  color: #ff0000;
}

/* Footer */
footer {
  text-align: center;
  background-color: #ff0000;
  color: #fff;
  padding: 15px;
}

/* Founder Message Section */
.founder-message {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 50px 20px;
}

.message-container {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(255, 0, 0, 0.4);
  max-width: 250px;
  text-align: center;
  border: 2px solid #ff3131;
}

/* Title Styling */
.message-title {
  font-size: 24px;
  font-weight: bold;
  color: #ff3131;
  margin-bottom: 15px;
}

.highlight {
  color: #ffffff;
}

/* Message Text */
.message-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
}

.message-text1 {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 15px;
}

/* Subscribe Button */
.subscribe-button {
  background: #ff3131;
  color: #ffffff;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscribe-button:hover {
  background: #e60000;
}

.red {
  color: red;
  font-weight: bold;
}

.war-highlight {
  color: #d11010;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

/* Subscription Form Styles */
.sib-form {
  max-width: 400px;
  background-color: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.newsletter-logo {
  width: 80px;
  margin-bottom: 10px;
}

.newsletter-title {
  font-size: 22px;
  font-weight: bold;
  color: #ff1919;
  margin-bottom: 5px;
}

.newsletter-subtitle {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

/* Email Input */
.email-label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #444;
  text-align: left;
  margin-bottom: 5px;
}

.email-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Checkbox Styling */
.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  color: #333;
  margin-bottom: 15px;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 8px;
}

/* Subscribe Button */
.sib-form-block__button {
  width: 100%;
  background-color: #ff1919;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.sib-form-block__button:hover {
  background-color: #b30000;
}

/* Mobile Responsive */
@media (max-width: 500px) {
  .sib-form {
    max-width: 90%;
  }

  .checkbox-container {
    font-size: 11px;
  }
}
