body {
  background:#A6270D url("/lindseystuff/Lindseybg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin:0;
  min-height:100vh;
  font-family: "Times new Roman";
  color: white;
}

hr {
  border: none; /* Removes default border */
  height: 1px; /* Sets the line thickness */
  background-color: white; /* Sets the line color to black (use a hex code for different colors) */
  width: 100%; /* Adjusts the line length (optional) */
  margin: 10px auto; /* Centers the line and adds space above/below (optional) */
}

.updates-box {
  background: #A6270D;
  border: 1.5px solid white;
  padding: .5rem;
  max-height: 600px;
  max-width: 450px;
  overflow-y: scroll;
  color: white;
  font-family: "Times New Roman";
}

.character-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;        /* space between text + image */
  padding: 1rem;
  max-width: 1000px;
  margin: auto;
}

/* Text column */
.character-text {
  max-width: 400px;
  font-size: 1rem;
}

/* Images */
.small-img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.large-img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.small-img--jason {
  max-width: 400px;
}

/* --- MOBILE MODE --- */
@media (max-width: 768px) {
  .character-layout {
    flex-direction: column;   /* stack vertically */
    align-items: center;
    text-align: center;
  }

  .character-text {
    max-width: 90%;
  }

  .large-img {
    max-width: 90%;  /* shrink on phones */
  }
}


.menu a {
  font-family: "Times new Roman";
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* ← 3 across = 3×2 layout */
  gap: 2rem;
  max-width: 900px;
  margin: 3rem auto;
  justify-items: center;
}

@media (max-width: 768px) {
  .character-grid {
    grid-template-columns: 1fr; /* stack the characters */
    gap: 1.5rem; /* optional: smaller gap on mobile */
  }
  
  
  .char-button{
    max-width:90%;}
}

/* Base button style */
.char-button {
  width: 100%;
  max-width: 450px;
  height: auto;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  display: block;
  transition: transform 0.2s ease-in-out;
}

.char-button img {
  width: 100%;
  max-width: 450px;
  height: auto;
  transition: transform 0.2s ease;
}

.char-button img:hover {
  transform: scale(1.05);
}

/* --- MENU BAR --- */
.menu {
  position: static;
  border:1.5px solid white;
  background-color: #A6270D;
  width: fit-content;
  padding: .5rem 2rem;
  margin:2rem auto;
}

/* Use flexbox to align items horizontally */
.menu ul {
  list-style: none;
  display: flex;
  justify-content: center; 
  align-items: center;
  margin: auto;
  padding: 0px;
  gap: 1rem;
  flex-wrap: wrap;  /* space between items */
}

/* List items */
.menu li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding-right: 0.8rem; /* space after divider */
  margin:0;
}
/* Links */
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}

.menu a:hover {
  color: #517AAD;
  transform: translateY(-2px);
}
/* Main hero section */
.hero {
  display: flex;
  align-items: flex-start;
}
.hero-left img {
  width: 600px;
  max-width: 100%;
  border-radius: 6px;
}
.hero-right {
  flex: 1;
}

.title-image {
  width: 100%;
  max-width: 500px;
  display: block;
  margin-bottom: 1rem;
}
.intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
   padding: 30px;
  border-color: white;

}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    align-items: center;
  }
  .menu ul {
    justify-content: center;
  }
}
