/* Base styling */
body {
  font-family: sans-serif;
  background-color: #111;
  color: #f0f0f0;
  margin: 0;
  padding: 40px 20px; /* Top margin + horizontal spacing */
  text-align: center;
}

* {
  box-sizing: border-box;
}

.blog p {
  text-align: left;
}

a {
  color: #c48fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

h1 {
  color: #c48fff;
  font-size: 1.5em;
}

h2 {
  font-size: 1.2em;
}

.photos h2 {
  color: #c48fff;
}

p {
  line-height: 1.4;
}

.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Align header and nav bar to match content width */
.top-wrapper {
  max-width: 1200px;
  margin: 40px auto 0 auto; /* Adds margin from top */
}

.header {
  text-align: center;
}

/* Matches other content boxes exactly */
.header-box {
  background-color: #1a1a1a;
  padding: 20px;
  border: 2px solid #333;
  box-sizing: border-box;
  width: 100%;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: center;
  background-color: #333;
  border-bottom: 2px solid #444;
  width: 100%;
  box-sizing: border-box;
}

.navbar a {
  padding: 10px 20px;
  color: white;
}

.navbar a:hover {
  color: #c48fff;
  background: none;
}

/* Page layout */
.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 30px auto;
  gap: 30px;
}

/* Sidebar on the left */
.sidebar {
  width: 250px;
  background-color: #1a1a1a;
  padding: 20px;
  border: 2px solid #333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar ul li {
  color: #c48fff; /* Light purple list items */
}

/* When only main content is shown */
.single-column {
  justify-content: center;
}

.single-column .main-content-column {
  max-width: 100%;
}

/* Main content column with main box + music */
.main-content-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Main box */
.main-box {
  background-color: #1a1a1a;
  padding: 20px;
  border: 2px solid #333;
}

.character-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.character-row a {
  flex: 1 1 22%;
  max-width: 22%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-decoration: none;
}

.character-row a img {
  height: 250px;        /*  Uniform height */
  width: auto;
  display: block;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.character-row a:hover img {
  transform: scale(1.05);
}

/* Music corner */
.music-corner {
  background-color: #1a1a1a;
  padding: 20px;
  border: 2px solid #333;
}

.locker-gallery {
  display: flex;
  justify-content: center;
  gap: 40px;         /* large gap between each pair */
  overflow-x: auto;  /* allows horizontal scroll on narrow screens */
  margin-top: 20px;
}

.locker-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;          /* small gap between images and caption */
}

.locker-images {
  display: flex;
  gap: 8px;          /* small gap between front & inside */
}

.locker-images img {
  width: 120px;      /* adjust so total fits in one row */
  height: auto;
}

.locker-caption {
  font-weight: bold;
  color: #8b69e6;    /* purple accent */
  text-align: center;
  font-size: 1em;
}

.locker-img {
  height: 300px;
  width: auto;
  object-fit: cover;
}

.comment {
  background-color: #1b1b1b;
  border-left: 4px solid #8b69e6; /* left bar for regular comments */
  padding: 10px 15px;
  margin: 10px 0;
  font-size: 0.95em;
  line-height: 1.5;
  color: #eee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 4px;
  position: relative;
}

.comment strong {
  color: #8b69e6;
}

/* Style for team responses */
.comment.response {
  border-left: none;
  border-right: 4px solid #8b69e6;
  margin-left: 20px; /* indent to indicate it's a reply */
  background-color: #222; /* optional: make replies slightly darker */
}

.emoji {
  height: 1.8em;
  vertical-align: middle;
  margin: 0 2px;
}