body {
    background-color: #2a1e1f;
    color: #f8f1e5;
    font-family: 'Gilda Display', serif;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.8;
}

nav {
    background-color: #1f1f1f;
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(202, 171, 116, 0.2); /* soft bottom glow */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav li {
    margin: 0;
}

nav a {
    color: #d7c198;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    transition: all 0.3s ease;
}

nav a:hover {
    text-decoration: underline;
    color: #f3e3c3;
}

img {
    width: 60%;
    border: 6px double #d4af7f;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(202, 171, 116, 0.3);
}

p {
    font-size: 18px;
    max-width: 750px;
    margin: 30px auto;
    text-align: center;
    padding: 0 20px;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    color: #e8dab2;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h3 {
    font-size: 25px;
    color: #f3e3c3;
    margin-top: 40px;
    text-align: center;
    letter-spacing: 0.5px;
}
a{
    color: #d4af7f
}

.gallery {
  text-align: center;
}
.gallery img {
  margin: 10px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Creates a responsive grid layout */
  gap: 20px;
  justify-items: center;
  padding: 20px;
}

.image-item {
  text-align: center;
}

.citation {
  font-size: 16px;
  color: #d7c198;
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}