/* RESET + GENERAL */
body {
  background-color: black;
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
  line-height: 1.6;
}

html, body {
  overflow-x: hidden;
}


h1, h2 {
  font-family: 'Staatliches', sans-serif;
  color: #ab1717;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

p {
  font-size: 1rem;
  max-width: 700px;
  margin-bottom: 15px;
}

/* HEADER + NAVIGATION */
header {
  background-color: black;
  color: white;
}

nav ul {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  list-style: none;
  margin: 0;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.links img {
  height: auto;
  max-height: 40px;
  max-width: 100%;
}


/* TITLE */
.about_title {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  width: fit-content;
}

.about_title img {
  width: 250px;
  display: block;
  filter: drop-shadow(0px 10000px #ab1717);
  transform: translateY(-10000px);
}

#background-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

/* COMIC GALLERY */
.comic_gallery_wrapper {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.comic_gallery_title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
}

.comic_gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.comic_item {
  text-align: center;
  text-decoration: none;
  color: white;
  transition: transform 0.2s ease;
}

.comic_item:hover {
  transform: scale(1.05);
}

.comic_item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #ab1717;
}

.comic_title {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}



/* FOOTER */
footer {
  background-color: black;
  padding: 20px;
  text-align: center;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .about_section,
  .about_section.reverse {
    flex-direction: column;
    text-align: center;
  }
.links img {
    max-height: 24px;
  }
  .about_text,
  .about_image_wrapper {
    flex: 1 1 100%;
  }

  .about_text {
    text-align: center;
  }

    .about_text img {
    width: 200px;
  }
   .logo img {
    height: 40px;
  }

  .links img {
    height: 30px;
  }
}
