@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Typography & Body */
body {
  background-color: #fdf6e3; /* creme */
  color: #000000; /* black */
  font-family: 'Special Elite', monospace;
  padding: 2rem;
  background-image: url('../textures/paper-light.jpg'); /* Optional texture */
  background-repeat: repeat;
}

/* Navigation */
nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin-bottom: 2rem;
  justify-content: center;
}

nav a {
  text-decoration: none;
  color: #3b5b3b; /* ivy */
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

nav a:hover {
  border-color: #7c2c28; /* burgundy */
}

/* Header */
header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 2.5rem;
  color: #7c2c28; /* burgundy */
  letter-spacing: 1px;
}

header p {
  font-style: italic;
  color: #5e4632; /* light brown */
  margin-top: 0.5rem;
}

/* Main Gallery Layout */
.gallery {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

/* Individual Figure */
figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  text-align: center;
}

figure img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border: 2px solid #5e4632; /* light brown */
  box-shadow: 2px 2px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

figure img:hover {
  transform: scale(1.02);
}

figcaption {
  margin-top: 1rem;
  color: #000000; /* black */
}

figcaption h2 {
  font-size: 1.2rem;
  color: #7c2c28; /* burgundy */
  margin-bottom: 0.3rem;
}

figcaption p {
  font-size: 1rem;
  color: #5e4632; /* light brown */
}

/* Lightbox (CSS-Only Indicator) */
a.lightbox {
  position: relative;
  display: inline-block;
}

a.lightbox::after {
  content: "🔍";
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: 1.5rem;
  color: #7c2c28; /* burgundy */
}

/* Optional Responsive for Future */
@media screen and (max-width: 768px) {
  body {
    padding: 1rem;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
}
