body {
  margin: 0;
  font-family: 'Merriweather', serif; 
  background-color: #F5F1E3; /* parch*ment /
  color: #3B2F2F; /* dark brown */
}

.site-title {
  font-family: 'Uncial Antiqua', cursive; 
  font-size: 2.5rem; 
  color: #C2A878; /* muted gold */
  margin: 0;
  padding: 1rem;
  text-align: center; 
  background-color: #2F4F2F; /* forest green */
  border-bottom: 4px solid #C2A878;
}

nav {
  background-color: #3B2F2F; /* dark brown */ 
}

.nav-links {
  display: flex; 
  justify-content: center; 
  list-style: none; 
  margin: 0; 
  padding: 0.5rem 0;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: #F5F1E3;
  text-decoration: none; 
  font-weight: bold; 
  padding: 0.5rem;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: #C2A878; /* muted gold */
  color: #2F4F2F; /* forest green */
}

.hero {
  text-align: center; 
  padding: 4rem 2rem; 
  background: linear-gradient(135deg, #2F4F2F, #909090);
  background-size: cover; 
  background-position: center; 
  color: #F5F1E3;
}

.hero h2 {
  font-family: 'Uncial Antiqua', cursive; 
  font-size: 2rem; 
  margin-bottom: 1rem; 
  color: #C2A878; 
}

.about-preview {
  max-width: 800px;
  margin: 3rem auto; 
  padding: 2rem; 
  background-color: #F5F1E3; /* parchment */
  border: 3px solid #C2A878; /* muted gold border */
  border-radius: 12px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.about-preview h2 {
  font-family: 'Uncial Antiqua', cursive; 
  font-size: 2rem; 
  color: #2F4F2F; /* forest green */
  margin-bottom: 1rem; 
}

.about-preview p {
  font-size: 1.1rem; 
  line-height: 1.6rem; 
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #C2A878; /*muted gold */
  color: #2F4F2F; /* forest green */
  font-weight: bold; 
  border-radius: 6px; 
  text-decoration: none; 
  transition: 0.3s;
}

.btn:hover {
  background-color: #2F4F2F; /* swap colors on hover */ 
  color: #F5F1E3; /* parchment */
}

.services-preview {
  padding: 3rem 2rem;
  background-color: #F5F1E3; /* parchment tone */
  /* optional parchment-pattern texture overlay in future */
}

.services-preview h2 {
  font-family: 'Uncial Antiqua', cursive;
  font-size: 2.2rem;
  color: #2F4F2F; /* forest green */
  text-align: center;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background-color: #EDE3D1; /* lighter parchment */
  padding: 1.5rem;
  border: 2px solid #C2A878; /* muted gold */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card h3 {
  font-family: 'Uncial Antiqua', cursive;
  font-size: 1.5rem;
  color: #3B2F2F; /* dark brown */
  margin-bottom: 0.8rem;
}

.service-card p {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #3B2F2F;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.gallery-preview {
  padding: 3rem 2rem; 
  background-color: #f5f1e3; /* parchment tone */
  text-align: center; 
}

.gallery-preview h2 {
  font-family: 'Uncial Antiqua', cursive;
  font-size: 2.2rem;
  color: #2f4f2f; /* forest green */
  margin-bottom: 1rem; 
}

.gallery-intro {
  font-family: 'Merriweather', serif; 
  font-size: 1.1rem;
  color: #3b2f2f;
  margin-bottom: 2rem;
}

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

.gallery-thumbnails .thumb {
  width: 150px;
  height: 150px;
  overflow: hidden; 
  border: 2px solid #c2a878; /* muted gold border */
  transition: transform 0.2 ease, box-shadow 0.2 ease; 
}

.gallery-thumbnails .thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.gallery-preview .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #c2a878;
  color: #2f4f2f;
  font-weight: bold;
  border-radius: 6px; 
  text-decoration: none; 
  transition: 0.3s;
}

.gallery-preview .btn:hover {
  background-color: #2f4f2f;
  color: #f5f1e3;
}

/* Booking Preview Section - Middle Earth Style */
.booking-preview {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #3a3a2e, #2b2b20); /* stone & earth */
  color: #f5f2e7; /* parchment tone */
  border-top: 3px solid #6b4f2e; /* wood accent */
  border-bottom: 3px solid #6b4f2e;
}

.booking-preview h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #d4c28a; /* golden parchment highlight */
  font-family: "Cinzel Decorative", serif; /* medieval style font */
}

.booking-preview p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #ddd6c1;
}

.booking-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #6b4f2e; /* leather brown */
  color: #f5f2e7;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  transition: 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.booking-btn:hover {
  background: #856239; /* warmer gold-brown */
  transform: scale(1.05);
}

.contact-preview {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #1e1e1e, #2d2d2d);
  color: #f1f1f1;
}

.contact-preview h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-family: 'Cinzel Decorative', serif;
  color: #e6d9b4; /* warm golden highlight */
}

.contact-preview p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.contact-preview .btn {
  background: #6b4226; /* earthy leather brown */
  color: #f1f1f1;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold; 
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-preview .btn:hover {
  background: #8c5b39;
  transform: scale(1.05);
}

.contact-preview {
  background-color: #fdfaf6; /* parchment vibe */
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.contact-preview h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-preview p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.contact-items {
  margin-top: 1.5rem;
}

.contact-items i {
  color: #5b3a29; /* deep earthy brown */
  margin-right: 10px;
  font-size: 1.2rem;
}