/* Modern artful style - Dark Mode */
:root {
  --img-roundness: 0px;
}
body {
  background-color: #1a1a1a;
  color: #d0d0d0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}
.gallery {
  column-count: 3;
  column-gap: 1.5rem;
  padding: 0;
}
.gallery a {
  display: inline-block;
  width: 100%;
  margin-bottom: 1.5rem;
  break-inside: avoid;
}
.gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--img-roundness);
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}
nav {
  background-color: #2c2c2c;
  padding: 2rem 0;
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}
.nav-links a {
  margin-right: 1.5rem;
  color: #aaa;
  text-decoration: none;
  text-transform: none;
}
.nav-links a:hover {
  color: #fff;
}
.site-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  color: #f5f5f5;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.content {
  padding: 2rem;
  margin: 0 auto;
  max-width: 1300px;
  line-height: 1.6;
}
.detail-image {
  display: block;
  margin: 2rem auto;
  width: auto;
  max-width: 100vw;
}
img {
  max-width: 100%;
  border-radius: var(--img-roundness);
}
a.back {
  display: inline-block;
  margin: 2rem;
  text-decoration: none;
  color: #bbb;
}
a.back:hover {
  color: #fff;
}
h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  margin: 1rem 0;
  font-weight: 400;
  text-transform: uppercase;
}
