body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffef9;
  color: #2d3436;
}

.nav-tabs {
  background-color: #2980b9;
  padding: 0.5rem 0;
}

.nav-tabs ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-tabs ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.nav-tabs ul li a:hover {
  text-decoration: underline;
}

.site-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  background-color: #fef9f4;
  padding: 1.5rem 0.5rem;
  margin: 0;
  border-bottom: 4px solid #d4af7f;
}

.banner-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.hero-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  padding: 0 1rem;
}

.hero-images img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0.5rem;
}


.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #2980b9;
  margin-top: 2rem;
}

p {
  line-height: 1.7;
  font-size: 1rem;
}

.cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta button {
  background-color: #27ae60;
  border: none;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

.cta button:hover {
  background-color: #219150;
}

.site-footer {
  background-color: #f8f5f1;
  padding: 1rem 0;
  color: #555;
  border-top: 2px solid #d4af7f;
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

.footer-grid h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
  color: #2e2e2e;
}

.footer-grid p {
  margin: 0.2rem 0;
  line-height: 1.4;
}

.footer-grid > div {
  flex: 1;
  min-width: 180px;
}

footer .copyright {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  margin-top: 0.5rem;
}


.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  color: #3d3d3d;
  background: linear-gradient(to right, #fffaf0, #f0e5d8);
  padding: 1.5rem 1rem;
  border: 2px solid #d4af7f;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.main-title .highlight {
  color: #a0522d;
  font-weight: 600;
  font-size: 2.7rem;
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  text-align: center;
  color: #555;
  margin-top: 0.5rem;
  font-style: italic;
}


/* Glow section layout */
.section-intro {
  max-width: 700px;
  margin: 0.5rem auto 1.25rem;
  text-align: center;
  color: #555;
}

/* Card grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* Card */
.feature-card {
  background: #fffef9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 16px 16px 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

/* Icon badge */
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 8px auto 10px;
  display: grid;
  place-items: center;
  font-size: 34px;
  background: #fff6e9;           /* soft coconut tone */
  border: 2px solid #d4af7f;      /* your gold accent */
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Card headings inherit your site style */
.feature-card h3 {
  margin: 8px 0 6px;
  font-family: 'Playfair Display', serif;
  color: #2980b9;                 /* matches your h2/nav color scheme */
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.55;
}

.hero-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Figure behaves like your original image block */
.hero-images figure {
  width: 200px;
  margin: 0;
  text-align: center;
}

.hero-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

/* Captions styled neatly */
.hero-images figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
}

.hero-images figcaption {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #a67b5b;   /* coconut shell brown */
  text-align: center;
}

