/* Base */
body {
  margin: 0;
  font-family: 'Press Start 2P', cursive;
  background-color: #1c1c1c; /* dark background */
  color: #e0e0e0;
}

/* Container Grid */
#container {
  display: grid;
  grid-template-areas: 
    "header"
    "content1"
    "content2"
    "content3"
    "content4"
    "footer";
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #2c2c2c;
  border-bottom: 4px solid #8b0000;
  box-shadow: 0 0 20px #ff0000 inset, 0 0 15px #ff4444;
  padding: 15px 20px;
}

.header h1 {
  margin: 0 20px;
  font-family: 'Creepster', cursive;
  color: #ff4444;
  text-shadow: 2px 2px 5px black;
}

.logo {
  height: 80px;
  padding: 10px;
  background-color: #2c0000;
  border: 3px solid #ff5555;
  box-shadow: 0 0 15px #ff0000, 0 0 25px #ff4444 inset;
  border-radius: 3px;
  image-rendering: pixelated; /* blocky effect */
}

/* Hamburger */
#hamburger {
  display: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

/* Navigation */
.nav {
  display: flex;
  gap: 15px;
}

.nav a {
  text-decoration: none;
  color: #ff5555;
  transition: all 0.3s ease;
  font-weight: bold;
}

.nav a:hover {
  text-shadow: 0 0 10px red;
  transform: translateY(-2px);
}

/* Content Sections */
.content {
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;
  border: 3px solid #8b0000;
  border-radius: 4px;
  box-shadow: 0 0 15px #330000 inset;
}

.content h2 {
  font-family: 'Creepster', cursive;
  color: #ff4444;
  text-shadow: 2px 2px 4px black;
  margin-bottom: 10px;
}

.content p {
  flex: 1;
  line-height: 1.6;
}

.content-img {
  width: 200px;
  height: auto;
  border: 2px solid #ff4444;
  border-radius: 3px;
  box-shadow: 0 0 10px #ff0000;
  flex-shrink: 0;
  image-rendering: pixelated; /* blocky spooky vibe */
}

/* Section Backgrounds */
.content1 { background-color: #2a2f1b; }
.content2 { background-color: #3b1c1c; }
.content3 { background-color: #3d3d1f; }
.content4 { background-color: #3a1f2b; }

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #2c2c2c;
  border-top: 4px solid #8b0000;
  box-shadow: 0 0 15px #ff4444 inset;
  text-shadow: 1px 1px 2px black;
}

/* Responsive */
@media screen and (max-width: 1000px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .content-img {
    width: 80%;
    max-width: 250px;
  }
}

@media screen and (max-width: 600px) {
  .nav {
    display: none;
  }
  #hamburger {
    display: inline;
  }
}
