:root {
  --primary-gold: #D4AF37;
  --secondary-gold: #F4E7C1;
  --elegant-navy: #2C3E50;
  --warm-white: #FEFEFE;
  --light-gray: #F8F9FA;
  --text-gray: #6C757D;
  --accent-red: #800000;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.7;
  color: var(--elegant-navy);
  background: var(--warm-white);
}

.heading-font,
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

.navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--primary-gold) !important;
}

.nav-link {
  color: var(--elegant-navy) !important;
  font-weight: 500;
}

.nav-link:hover { color: var(--primary-gold) !important; }

.brand-logo {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
  border-radius: 50%;
}

.page-hero {
  padding: 8rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(27, 54, 93, 0.82), rgba(44, 62, 80, 0.88)),
    url('../assets/thai-decor-collective-luxury-event-banner.webp') center/cover no-repeat;
  color: #fff;
}

.page-hero.event-hero {
  background:
    linear-gradient(135deg, rgba(27, 54, 93, 0.82), rgba(44, 62, 80, 0.88)),
    url('../assets/thai-event-collective-destination-wedding-banner.webp') center/cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.page-hero .lead {
  max-width: 720px;
  margin: 0 auto;
  opacity: 0.95;
}

.breadcrumb {
  background: transparent;
  justify-content: center;
}

.breadcrumb a {
  color: var(--primary-gold);
  text-decoration: none;
}

.breadcrumb-item.active,
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.75);
}

.content-wrap {
  padding: 4rem 0 3rem;
}

.content-wrap .article {
  max-width: 820px;
  margin: 0 auto;
}

.content-wrap h2 {
  color: var(--accent-red);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.content-wrap h3 {
  color: var(--elegant-navy);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.content-wrap p {
  color: var(--text-gray);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.content-wrap ul {
  color: var(--text-gray);
  margin-bottom: 1.25rem;
  padding-left: 1.25rem;
}

.content-wrap li { margin-bottom: 0.45rem; }

.cta-band {
  background: #333;
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.cta-button {
  background: linear-gradient(45deg, var(--primary-gold), #E6C547);
  border: none;
  padding: 14px 34px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  color: var(--elegant-navy);
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button:hover {
  color: var(--elegant-navy);
  transform: translateY(-2px);
}

.footer {
  background: #333333;
  color: #fff;
  text-align: center;
  padding: 30px 0;
}

.footer h5 {
  color: #E6C547;
}

.footer .list-unstyled a:hover {
  color: #F4E7C1 !important;
}

.related-links {
  background: var(--light-gray);
  padding: 2.5rem 0;
}

.related-links a {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 500;
}

.related-links a:hover { color: var(--primary-gold); }

@media (max-width: 768px) {
  .page-hero { padding: 7rem 0 3rem; }
  .content-wrap { padding: 2.5rem 0; }
}
