/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body */
body {
  background: white;
  color: black;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  text-transform: lowercase;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px;
}

/* Page layout */
.container {
  display: flex;
  max-width: 900px;
  max-height: 600px;
  width: 100%;
  height: 100%;
  border: 4px solid black;
  background: white;
  box-shadow: 8px 8px 0 #ff6600;
  overflow: hidden;
}

/* Sidebar */
.sidebar {
  flex: 0 0 180px;
  border-right: 4px solid black;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
}

.logo-container {
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-logo {
  max-width: 100px;
  height: auto;
  image-rendering: pixelated;
  border: 3px solid black;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar nav a {
  color: black;
  text-decoration: none;
  padding: 4px 0;
  border-left: 4px solid transparent;
  padding-left: 10px;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  color: #ff6600;
  border-left-color: #ff6600;
}

/* Socials */
.socials {
  text-align: center;
  margin-top: 30px;
}

.socials p {
  font-size: 0.8rem;
  color: #ff6600;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.socials a img {
  width: 24px;
  height: 24px;
  margin: 0 4px;
  filter: drop-shadow(1px 1px 0 black);
}

/* Main content */
.content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #ff6600;
  border-bottom: 2px solid black;
  padding-bottom: 4px;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
  max-height: 100%;
  overflow-y: auto;
}

.gallery-grid a img {
  width: 100%;
  border: 2px solid black;
  image-rendering: pixelated;
  transition: transform 0.2s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.03);
  border-color: #ff6600;
}
