@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Special+Elite&display=swap');

/* Global styles */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: url('https://pin.it/59xUkSDuf') no-repeat center center fixed;
  background-size: cover;
  color: #f8f8f2;
  font-family: 'Special Elite', serif;
  text-align: center;
}

/* Headers */
h1, h2 {
  font-family: 'Cinzel', serif;
  color: #dcdcdc;
  margin: 20px 0;
  text-shadow: 0 0 6px rgba(255,255,255,0.2);
}

/* Navigation */
nav {
  margin-top: 20px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  font-size: 1.2em;
  color: #c9a46c;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #7a2a2a;
  text-shadow: 0 0 8px rgba(201,164,108,0.6);
}

/* Content container */
.container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  text-align: left;
}

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.gallery img {
  width: 100%;
  border: 2px solid #c9a46c;
  filter: grayscale(30%);
  transition: all 0.3s ease;
}
.gallery img:hover {
  filter: grayscale(0%) contrast(110%);
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(201,164,108,0.8);
}

/* Secret/italic text */
.secret {
  font-style: italic;
  opacity: 0.8;
  letter-spacing: 1px;
}