body {
  margin: 0;
  font-family: 'Pirata One', cursive;
  color: #3b2f1b;
  background-color: #000000;
}

.parchment {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  background: url('content/parchment_bg.avif') center/cover no-repeat;
  background-blend-mode: overlay;
  border: 12px ridge #8c7442;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
  filter: contrast(1.1) brightness(1.03);
  backdrop-filter: blur(1px);
  position: relative;
  isolation: isolate;
}

.parchment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(1px);
  z-index: -1;
  opacity: 0.3;
}

header h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px #bba47e;
}

.intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: justify;
  line-height: 1.6;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.gallery img {
  width: 100%;
  max-width: 280px;
  border: 3px solid #8b5e3c;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  filter: sepia(0.1) contrast(1.05);
  object-fit: cover;
}

.cta {
  text-align: center;
  margin-bottom: 2rem;
}

.pirate-button {
  background-color: #8b0000;
  color: #fff0d4;
  padding: 1rem 2rem;
  border: none;
  border-radius: 15px;
  font-size: 1.2rem;
  text-decoration: none;
  font-family: 'Pirata One', cursive;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.pirate-button:hover {
  background-color: #a52a2a;
  transform: scale(1.05);
}

.map {
  margin-bottom: 2rem;
}

.map h2 {
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 1px #bba47e;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #ffffff;
  padding-top: 1rem;
  border-top: 2px dashed #c1ae88;
}
