@font-face {
  font-family: "Martin";
  /* src: url("MARTIN-Regular.otf") format("opentype"); */
  src: url("../fonts/MARTIN-Regular.otf") format("opentype");
  font-weight: 400;
  font-weight: normal;
  font-style: normal;
}

/* Apply Martin font to specific headers - ALWAYS UPPERCASE */
.section-header-martin {
  font-family: "Martin", "Roboto", sans-serif !important;
  font-size: 90px !important;
  font-weight: normal !important;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Apply Martin font to headers */
/* h1,
h2,
h3,
h4,
h5,
h6,
.logo-small,
.page-hero h1,
.section-title,
.footer-brand h3,
.footer-links h4 {
  font-family:
    "Martin",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    sans-serif;
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
}
.img-placeholder {
  background:
    linear-gradient(
      to top right,
      transparent calc(50% - 1px),
      #ccc calc(50% - 1px),
      #ccc calc(50% + 1px),
      transparent calc(50% + 1px)
    ),
    linear-gradient(
      to top left,
      transparent calc(50% - 1px),
      #ccc calc(50% - 1px),
      #ccc calc(50% + 1px),
      transparent calc(50% + 1px)
    ),
    #e0e0e0;
}

.img-placeholder-dark {
  background:
    linear-gradient(
      to top right,
      transparent calc(50% - 1px),
      #555 calc(50% - 1px),
      #555 calc(50% + 1px),
      transparent calc(50% + 1px)
    ),
    linear-gradient(
      to top left,
      transparent calc(50% - 1px),
      #555 calc(50% - 1px),
      #555 calc(50% + 1px),
      transparent calc(50% + 1px)
    ),
    #333;
}

/* ===== NAVIGATION FROM HOMEPAGE V19 ===== */

/* Sticky Header */
.main-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
/* Home page override */
.home .main-header {
  position: fixed;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.home .main-header.visible {
  transform: translateY(0);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-container .custom-logo-link img {
  height: auto;
  width: 300px;
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 6px;
}

.logo-icon img {
  max-height: 50px;
  width: auto;
}

.logo-small {
  font-size: 1em;
  font-weight: 600;
  color: #1a1a1a;
}

.header-utilities {
  display: flex;
  gap: 20px;
  align-items: center;
}

.open-hours {
  font-size: 0.85em;
  color: #666;
}

.plan-visit-btn {
  background: #1a1a1a;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9em;
  transition: background 0.3s;
}

.plan-visit-btn:hover {
  background: #333;
}

.donate-btn {
  background: #faa819;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9em;
  transition: background 0.3s;
}

.donate-btn:hover {
  background: #b8941f;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #1a1a1a;
}

.header-nav {
  padding: 0;
}

.nav-items {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  list-style: none;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  padding: 20px 0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-item:hover > a {
  color: #faa819;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 320px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border-top: 4px solid #faa819;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.dropdown-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.dropdown-item a {
  text-decoration: none;
  color: #1a1a1a;
  display: block;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s;
}

.dropdown-item a:hover {
  color: #faa819;
  padding-left: 5px;
}

/* Slide-out Menu */
.slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 2000;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 30px 40px;
}

.slide-menu.open {
  right: 0;
}

.menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
}

.menu-close i {
  margin-left: 8px;
}

.menu-close .fa-close:before {
  position: relative;
  margin-top: 2px !important;
}

.menu-search {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
}

.menu-nav {
  list-style: none;
}

.menu-nav > li {
  margin-bottom: 15px;
}

.menu-nav > li > a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
}

.menu-nav > li > a:hover {
  color: #faa819;
}

.expand-icon {
  font-size: 1.2em;
  transition: transform 0.3s;
}

.expand-icon.rotated {
  transform: rotate(45deg);
}

.sub-menu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 0;
  margin-top: 10px;
}

.sub-menu.expanded {
  max-height: 500px;
}

.sub-menu li {
  margin-bottom: 8px;
}

.sub-menu a {
  color: #bbb;
  text-decoration: none;
  font-size: 1em;
  font-weight: 400;
  display: block;
  padding: 5px 0;
  /* text-transform: lowercase; */
}

.sub-menu a:hover {
  color: white;
}

.menu-utilities {
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid #333;
}

.menu-utilities p {
  color: #999;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.menu-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.donate-menu-btn,
.plan-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
}

.donate-menu-btn {
  background: #faa819;
  color: white;
}

.plan-btn {
  background: white;
  color: #1a1a1a;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.menu-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Footer - From Homepage V19 */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 20px 30px;
}

.footer-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-brand h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #999;
  line-height: 1.6;
  font-size: 0.95em;
  max-width: 800px;
  margin-bottom: 25px;
}

.footer-social-icons {
  display: flex;
  gap: 15px;
}
.footer-social-icons .social-icon-link {
  width: auto !important;
  height: auto !important;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1em;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}

.footer-social-icon:hover {
  background: #faa819;
  transform: translateY(-2px);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.footer-links h4 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.9em;
}

.footer-links a:hover {
  color: #faa819;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
  color: #666;
  font-size: 0.9em;
}

.footer-legal {
  margin-top: 10px;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  margin: 0 10px;
}

.footer-legal a:hover {
  color: #faa819;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.mobile-sticky-cta .cta-buttons {
  display: flex;
  gap: 10px;
}

.mobile-sticky-cta button,
.mobile-sticky-cta a {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
}

.mobile-sticky-cta .donate-mobile-btn {
  background: #faa819;
  color: white;
}

.mobile-sticky-cta .plan-mobile-btn {
  background: #1a1a1a;
  color: white;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-items {
    gap: 25px;
  }

  .nav-item > a {
    font-size: 1.2em;
  }

  .exhibitions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .filter-tabs {
    top: 72px;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .open-hours {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.5em;
  }

  .exhibitions-grid {
    grid-template-columns: 1fr;
  }

  .filter-tab {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-container .custom-logo-link img {
    height: auto;
    width: 250px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2em;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------- Home Page ----------------------------------------- */

/* Splash Screen */
.splash {
  height: 100vh;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.splash-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
  pointer-events: none;
}

.splash-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.splash-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 0 20px;
}

.splash-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.splash-title {
  font-size: 4em;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.splash-subtitle {
  font-size: 1.3em;
  opacity: 0.9;
  margin-bottom: 40px;
}

.splash-cta {
  display: inline-block;
  background: #faa819;
  color: white;
  padding: 14px 40px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1em;
  transition: transform 0.3s;
}

.splash-cta:hover {
  transform: translateY(-2px);
}

.hero-logo-crown {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.hero-logo-subtitle {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 30px auto 5px;
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9em;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.smithsonian-logo {
  width: 240px;
}

/* Featured Exhibition */
.featured-exhibition {
  padding: 100px 20px;
  background: #1a1a1a;
  color: white;
}

.featured-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* .featured-image {
  height: 500px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
} */
 .featured-image {
    /* height: 500px; */
    height: 100%;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background: transparent;
}

.featured-label {
  color: #faa819;
  font-size: 0.9em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.featured-title {
  font-size: 3em;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.featured-dates {
  font-size: 1.1em;
  opacity: 0.8;
  margin-bottom: 20px;
}

.featured-description {
  font-size: 1.15em;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

.featured-cta {
  display: inline-block;
  background: white;
  color: #1a1a1a;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* Exhibitions Section */
.exhibitions-section {
  padding: 80px 20px;
  background: white;
}

.section-header {
  max-width: 1400px;
  margin: 0 auto 50px;
}

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #1a1a1a;
}

.exhibitions-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.exhibition-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.exhibition-card:hover {
  transform: translateY(-5px);
}

.exhibition-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.exhibition-content {
  padding: 25px;
}

.exhibition-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exhibition-type.current {
  background: #faa819;
  color: white;
}

.exhibition-type.permanent {
  background: #1a1a1a;
  color: white;
}

.exhibition-type.online {
  background: #3498db;
  color: white;
}

.exhibition-title {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #1a1a1a;
}

.exhibition-dates {
  color: #666;
  font-size: 0.95em;
}

/* Programs Section */
.programs-section {
  padding: 80px 20px;
  /* background: #f8f8f8; */
  background: #f1ece1;
}

.programs-list {
  max-width: 1400px;
  margin: 0 auto;
}

.program-item {
  display: grid;
  /* grid-template-columns: 100px 150px 1fr; */
  grid-template-columns: 100px 90% 1fr;
  gap: 25px;
  /* background: white; */
  padding: 25px;
  margin-bottom: 20px;
  /* border-radius: 12px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.program-date {
  text-align: center;
}

.program-day {
  color: #faa819;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
}

.program-date-number {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.5em;
}
.program-date-box {
  background: white;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.program-month {
  font-size: 0.8em;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-day {
  font-size: 2em;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-top: 5px;
}
.program-thumbnail {
  height: 100px;
  border-radius: 8px;
}

.program-details h4 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.program-type {
  display: inline-block;
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.85em;
  color: #666;
}
.program-type {
  display: inline-block;
  background: #1a1a1a;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-calendar-link {
  text-align: center;
  margin-top: 30px;
}

.view-calendar-link a {
  color: #faa819;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
}

/* Support Section (Donate, Shop, Rent) - MOVED UP */
.support-section {
  padding: 80px 20px;
  background: white;
}

.support-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.support-card {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.support-card:hover {
  transform: translateY(-5px);
}

.support-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}

.support-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.support-card-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 30px;
}

.support-card h3 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 15px;
}

.support-card p {
  font-size: 1em;
  line-height: 1.5;
  opacity: 0.9;
}

/* Visitor Info Section */
.visitor-info-section {
  padding: 80px 20px;
  /* background: #f8f8f8; */
  background: #f1ece1;
}

.visitor-info-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.visitor-info-block h4 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.visitor-info-block p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 10px;
}

.visitor-info-block a {
  color: #faa819;
  font-weight: 600;
  text-decoration: none;
}

/* Social/Community Section - STATIC IMAGES, MOVED DOWN */
.social-section {
  padding: 80px 20px;
  background: white;
}

.social-header {
  max-width: 1400px;
  margin: 0 auto 40px;
  text-align: center;
}

.social-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.social-icon-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5em;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s;
}

.social-icon-link:hover {
  background: #faa819;
  transform: translateY(-3px);
}

.community-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.community-image {
  aspect-ratio: 1;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s;
  cursor: pointer;
}

.community-image:hover {
  transform: scale(1.05);
}

/* ----------------------------------------- Exhibitions Page -------------------------------------------- */
/* ===== PAGE CONTENT STYLES ===== */

/* Page Hero Banner */
/* .page-hero {
  background: #1a1a1a;
  color: white;
  padding: 80px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
} */
.page-hero {
  position: relative;
  /* background-image: url("images/visit-hero-museum-exterior.jpg"); */
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #faa817;
  opacity: 0.3;
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  opacity: 0.65;
  z-index: 2;
}

.page-hero-content {
  max-width: 1400px;
  margin: 0 auto;
  /* position: relative; */
  z-index: 3;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero.exhibition-hero {
  position: relative;
  background: #1a1a1a;
  padding: 120px 20px 100px;
  text-align: center;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.exhibition-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none !important;
  opacity: 0.3;
  z-index: 1;
}
/* Filter Tabs */
.filter-tabs {
  background: white;
  padding: 30px 20px;
  border-bottom: 2px solid #e0e0e0;
  position: sticky;
  top: 110px;
  z-index: 100;
}
.exhibition-tabs {
  padding: 30px 20px !important;
}

.filter-tabs-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  background: #f0f0f0;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-tab:hover {
  background: #e0e0e0;
}

.filter-tab.active {
  background: #faa819;
  color: white;
}
.exhibition-tabs .filter-tab.active {
  background: #faa819;
  color: white;
}

/* Exhibitions Grid */
.exhibitions-container.exhibition-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.exhibition-page .exhibitions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.exhibition-page .exhibition-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: none;
}

.exhibition-page .exhibition-card.visible {
  display: block;
}

.exhibition-page .exhibition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.exhibition-page .exhibition-image {
  height: 250px;
  position: relative;
}

.exhibition-page .exhibition-content {
  padding: 25px;
}

.exhibition-page .exhibition-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exhibition-page .exhibition-badge.current {
  background: #faa819;
  color: white;
}

.exhibition-page .exhibition-badge.upcoming {
  background: #3498db;
  color: white;
}

.exhibition-page .exhibition-badge.permanent {
  background: #1a1a1a;
  color: white;
}

.exhibition-page .exhibition-badge.past {
  background: #e0e0e0;
  color: #666;
}
.exhibition-page .exhibition-badge.community-murals {
  background: #e0e0e0;
  color: #666;
}

.exhibition-page .exhibition-badge.online {
  background: #3498db;
  color: #ffffff;
}

.exhibition-page .exhibition-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #1a1a1a;
  max-width: 60%;
}

.exhibition-page .exhibition-dates {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.exhibition-page .exhibition-description {
  color: #333;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.exhibition-page .exhibition-link {
  color: #faa819;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
}

.exhibition-page .exhibition-link:hover {
  text-decoration: underline;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  display: none;
}

.empty-state.visible {
  display: block;
}

.empty-state h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #666;
}

.empty-state p {
  color: #999;
  font-size: 1.1em;
}
/* --------------------------------------------- Programs & Events Page ------------------------------------------ */
/* ===== PROGRAMS PAGE STYLES ===== */

/* Page Header */
.page-header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 40px;
}

.page-title {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.page-description {
  font-size: 1.2em;
  color: #666;
  max-width: 700px;
  line-height: 1.6;
}

/* Filter Tabs */
.filter-tabs {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-tab {
  background: #f0f0f0;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-tab.active {
  background: #faa819;
  color: white;
}

.filter-tab:hover:not(.active) {
  background: #e0e0e0;
}

/* Programs Container */
.programs-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Date Section Headers */
.date-section {
  margin-bottom: 60px;
}

.date-section-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #faa819;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Programs Grid - 2 Columns */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Program Card */
.program-card {
  /* background: white; */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Past Event Cards - Subdued styling */
.program-card.past {
  opacity: 0.75;
}

.program-card.past:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Default Pattern Backgrounds */
.program-visual {
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Family Programs - Gold */
.program-visual.family {
  background: linear-gradient(135deg, #faa819 0%, #b8941f 100%);
}

/* Adult Programs - Teal/Navy */
.program-visual.adult {
  background: linear-gradient(135deg, #2c5f75 0%, #1a4357 100%);
}

/* Youth Programs - Bright Orange */
.program-visual.youth {
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

/* Senior Programs - Rich Purple */
.program-visual.senior {
  background: linear-gradient(135deg, #8e44ad 0%, #6c3483 100%);
}

/* Special Events - Black with gold accent */
.program-visual.special {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  border-left: 5px solid #faa819;
}

/* Past Events - Desaturated/Grayed Versions */
.program-visual.past-family {
  background: linear-gradient(135deg, #b5b5b5 0%, #9a9a9a 100%);
}

.program-visual.past-adult {
  background: linear-gradient(135deg, #7a8a94 0%, #5f6f79 100%);
}

.program-visual.past-youth {
  background: linear-gradient(135deg, #c49a7a 0%, #a88260 100%);
}

.program-visual.past-senior {
  background: linear-gradient(135deg, #9a86ab 0%, #7d6a8d 100%);
}

.program-visual.past-special {
  background: linear-gradient(135deg, #4a4a4a 0%, #5a5a5a 100%);
  border-left: 5px solid #999;
}

/* Icon Placeholder in Visual */
.program-icon {
  font-size: 3em;
  opacity: 0.3;
  color: white;
  margin-bottom: 15px;
}

/* Large Date Display */
.program-date-display {
  text-align: center;
  color: white;
}

.program-weekday {
  font-size: 0.85em;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Program Content */
.program-content {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
}

.program-type-badge {
  display: inline-block;
  background: #f0f0f0;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75em;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  align-self: flex-start;
}

.program-type-badge.family {
  background: #faa819;
  color: white;
}

.program-type-badge.adult {
  background: #2c5f75;
  color: white;
}

.program-type-badge.youth {
  background: #e67e22;
  color: white;
}

.program-type-badge.senior {
  background: #8e44ad;
  color: white;
}

.program-type-badge.special {
  background: #1a1a1a;
  color: white;
}

.program-type-badge.past {
  background: #999;
  color: white;
}

.program-time {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
}

.program-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #1a1a1a;
}

.program-description {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.program-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.program-cost {
  font-weight: 600;
  color: #1a1a1a;
}

.program-register-btn {
  background: #faa819;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9em;
  transition: background 0.3s;
}

.program-register-btn:hover {
  background: #b8941f;
}

/* Photo Override (when they have actual photos) */
.program-visual.has-photo {
  background-size: cover;
  background-position: center;
}

.program-visual.has-photo .program-icon {
  display: none;
}

.program-visual.has-photo .program-date-display {
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 8px;
}

/* Newww ---->  */
/* Filter Tabs */
.filter-tabs {
  background: white;
  padding: 30px 20px;
  border-bottom: 2px solid #e0e0e0;
  position: sticky;
  top: 110px;
  z-index: 100;
}

.filter-tabs-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-tab {
  background: #f0f0f0;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-tab:hover {
  background: #e0e0e0;
}

.filter-tab.active {
  background: #faa819;
  color: white;
}

/* Exhibitions Index Section */
.exhibitions-index-section {
  padding: 0px 20px 80px;
  background: white;
}

.exhibitions-index-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
}

.exhibition-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s;
  /* display: none; */
  position: relative;
}

.exhibitions-section .exhibition-card {
  display: block;
}

.exhibitions-section .exhibition-card .exhibition-content {
  padding-bottom: 30px !important;
}

.membership-index-section .exhibition-card {
  display: block;
}

/* Hide all cards by default */
.exhibition-card {
  display: none;
}

/* Show only filtered cards */
.exhibition-card.visible {
  display: flex;
}

.exhibition-card.visible {
  display: block;
  position: relative;
}

.exhibition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.exhibition-image {
  height: 280px;
  background-size: cover;
  background-position: center;
}

/* Program Date Display - Colored Backgrounds (No Icons) */
.program-date-display {
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.program-date-display.family {
  background: linear-gradient(135deg, #faa819 0%, #555555 100%);
}

.program-date-display.adult {
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
}

.program-date-display.youth {
  background: linear-gradient(135deg, #e41e27 0%, #ff4444 100%);
}

.program-date-display.senior {
  background: linear-gradient(135deg, #221f20 0%, #555555 100%);
}

.program-date-display.special {
  background: linear-gradient(135deg, #faa819 0%, #e41e27 100%);
}

.exhibitions-index-section .program-month {
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.95;
  margin-bottom: 8px;
  color: white;
}

.exhibitions-index-section .program-day {
  font-size: 4em;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 8px;
  color: white;
}

.exhibitions-index-section .program-weekday {
  font-size: 0.95em;
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.exhibitions-index-section .program-time {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 12px;
  font-weight: 500;
}

.exhibition-content {
  padding: 30px !important;
  position: relative;
  padding-bottom: 90px !important;
}

.exhibition-type {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.exhibition-type.current {
  background: #faa819;
  color: white;
}

.exhibition-type.family {
  background: #faa819;
  color: white;
}

.exhibition-type.adult {
  background: #e41e27;
  color: white;
}

.exhibition-type.youth {
  background: #e41e27;
  color: white;
}

.exhibition-type.senior {
  background: #221f20;
  color: white;
}

.exhibition-type.special {
  background: #faa819;
  color: white;
}

.exhibition-type.permanent {
  background: #1a1a1a;
  color: white;
}

.exhibition-type.online {
  background: #3498db;
  color: white;
}

.exhibition-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
  color: #1a1a1a;
}

.exhibition-dates {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 15px;
  font-weight: 500;
}

.exhibition-description {
  color: #555;
  line-height: 1.6;
  /* margin-bottom: 20px; */
}

.exhibition-link {
  color: #faa819;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: color 0.3s;
}

a.exhibition-link {
  position: absolute;
  left: 30px;
  bottom: 30px;
}

.exhibition-link:hover {
  color: #e89710;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .exhibitions-index-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .filter-tabs {
    padding: 20px 15px;
    top: 90px;
  }

  .filter-tab {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-header {
    padding: 80px 20px 60px;
    min-height: 350px;
  }

  h2.section-title {
    font-size: 48px !important;
  }

  .page-subtitle {
    font-size: 1.1em;
  }

  .exhibitions-index-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .exhibitions-index-section {
    padding: 60px 20px;
  }
}

@media (max-width: 575px) {
  .logo-container .custom-logo-link img {
    width: 160px;
  }

  .header-content .header-top {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 60px 20px 50px;
    min-height: 300px;
  }

  h2.section-title {
    font-size: 36px !important;
  }

  .page-subtitle {
    font-size: 1em;
  }

  .exhibition-content {
    padding: 25px;
  }

  .exhibition-title {
    font-size: 1.2em;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.85em;
  }
}

/* ----------------------------------------------------- About Page ---------------------------------------------------------- */

/* PAGE CONTENT */
/* .page-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
} */
.page-hero.about-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #faa817;
  opacity: 0.3;
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a1a1a;
  opacity: 0.65;
  z-index: 2;
}

.page-hero-content {
  max-width: 1400px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.about-section {
  margin-bottom: 100px;
  scroll-margin-top: 100px;
}

/* Story Section */
.story-intro {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.story-intro p {
  margin-bottom: 20px;
}

.mission-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.mission-box {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
}

.mission-box h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.mission-box ul {
  list-style: none;
  padding-left: 0;
}

.mission-box li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #333;
}

.mission-box li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #faa819;
  font-weight: bold;
}

.rflewis-bio {
  background: #1a1a1a;
  color: white;
  padding: 60px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.bio-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

.bio-image {
  width: 100%;
  height: 380px;
  border-radius: 12px;
}

.bio-content h3 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #faa819;
}

.bio-years {
  font-size: 1.1em;
  opacity: 0.8;
  margin-bottom: 20px;
}

.bio-content p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  opacity: 0.95;
}

.video-section {
  background: #faa819;
  padding: 60px;
  border-radius: 12px;
  text-align: center;
  color: white;
  margin-bottom: 60px;
}

.video-section h3 {
  font-size: 2em;
  margin-bottom: 15px;
}

.video-section p {
  font-size: 1.1em;
  opacity: 0.95;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-embed {
  max-width: 800px;
  height: 450px;
  margin: 0 auto;
  border-radius: 12px;
  background: #f0f0f0;
}

.know-us-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.know-us-card {
  text-align: center;
}

.know-us-image {
  height: 250px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.know-us-card h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.know-us-card p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

/* Board Section */
.board-intro {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}

.board-subsection {
  margin-bottom: 50px;
}

.board-subsection h3 {
  font-size: 1.8em;
  margin-bottom: 25px;
  color: #1a1a1a;
  padding-bottom: 10px;
  /* border-bottom: 2px solid #faa819; */
}

.board-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.board-member {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

.board-name {
  font-weight: 700;
  font-size: 1.1em;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.board-title {
  color: #666;
  font-size: 0.95em;
}

/* Staff Section */
.staff-intro {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
}

.staff-department {
  margin-bottom: 50px;
}

.staff-department h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  color: #1a1a1a;
  padding-bottom: 10px;
  /* border-bottom: 2px solid #faa819; */
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.staff-member {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

.staff-name {
  font-weight: 700;
  font-size: 1.05em;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.staff-title {
  color: #666;
  font-size: 0.9em;
  line-height: 1.4;
}

.staff-photos-section {
  margin-top: 60px;
}

.staff-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.staff-photo-item {
  aspect-ratio: 1;
  border-radius: 8px;
}

/* ------------------------------------- Annual Reports and Financials ------------------------------------------- */

/* PAGE CONTENT */
.page-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.intro-text {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline Style */
.timeline {
  position: relative;
  padding-left: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e0e0e0;
}

.year-block {
  position: relative;
  margin-bottom: 80px;
  padding-left: 60px;
}

.year-dot {
  width: 20px;
  height: 20px;
  background: #faa819;
  border-radius: 50%;
  position: absolute;
  left: 11px;
  top: 15px;
  z-index: 3;
  border: 4px solid white;
  box-shadow: 0 0 0 2px #faa819;
}

.year-number {
  font-size: 3em;
  font-weight: 900;
  color: #faa819;
  margin-bottom: 20px;
}

.year-description {
  font-size: 1.05em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  max-width: 900px;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
}

.document-card {
  background: #f8f8f8;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #faa819;
  transition: all 0.3s;
}

.document-card:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.document-icon {
  font-size: 2em;
  margin-bottom: 15px;
  color: #faa819;
}

.document-title {
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.document-meta {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 15px;
}

.download-btn {
  display: inline-block;
  background: #faa819;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #b8941f;
}

/* Responsive */
@media (max-width: 1024px) {
  .documents-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .open-hours {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.5em;
  }

  .timeline::before {
    display: none;
  }

  .year-dot {
    display: none;
  }

  .year-block {
    padding-left: 0;
  }

  .year-number {
    font-size: 2.5em;
  }
}
/* ------------------------------------------------- Request For Proposal Page ----------------------------------------- */

/* PAGE CONTENT */
.page-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.intro-text {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
}

/* How to Submit */
.submission-process {
  background: #f8f8f8;
  padding: 50px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.submission-process h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.process-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #faa819;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 auto 15px;
}

.process-step h3 {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.process-step p {
  color: #666;
  font-size: 0.95em;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid #faa819;
}

.contact-box h3 {
  margin-bottom: 15px;
  font-size: 1.3em;
}

.contact-box p {
  color: #666;
  margin-bottom: 10px;
}

.contact-box a {
  color: #faa819;
  font-weight: 600;
}

/* Active RFPs */
.rfp-listings {
  margin-bottom: 60px;
}

.rfp-listings h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
}

.rfp-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 35px;
  margin-bottom: 25px;
  transition: all 0.3s;
}

.rfp-card:hover {
  border-color: #faa819;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rfp-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.rfp-status {
  background: #faa819;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
}

.rfp-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.rfp-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  color: #666;
  font-size: 0.95em;
}

.rfp-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rfp-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.rfp-actions {
  display: flex;
  gap: 15px;
}

.download-rfp-btn,
.submit-proposal-btn {
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.download-rfp-btn {
  background: #1a1a1a;
  color: white;
}

.download-rfp-btn:hover {
  background: #333;
}

.submit-proposal-btn {
  background: #faa819;
  color: white;
}

.submit-proposal-btn:hover {
  background: #b8941f;
}

/* No Active RFPs */
.no-rfps {
  text-align: center;
  padding: 60px 40px;
  background: #f8f8f8;
  border-radius: 12px;
}

.no-rfps h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.no-rfps p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 25px;
}

.notify-btn {
  background: #faa819;
  color: white;
  padding: 14px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

/* Vendor Requirements */
.requirements-section {
  background: #1a1a1a;
  color: white;
  padding: 60px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.requirements-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.requirement-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 4px solid #faa819;
}

.requirement-item h3 {
  font-size: 1.1em;
  margin-bottom: 8px;
  color: #faa819;
}

.requirement-item p {
  color: #ccc;
  font-size: 0.95em;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .rfp-header {
    flex-direction: column;
    gap: 15px;
  }

  .rfp-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .open-hours {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.5em;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .submission-process {
    padding: 40px 30px;
  }

  .requirements-section {
    padding: 40px 30px;
  }

  .rfp-card {
    padding: 25px 20px;
  }

  .rfp-actions {
    flex-direction: column;
  }
}

/* --------------------------------------------- Newsroom Page ------------------------------------------------------ */

/* PAGE CONTENT */
.page-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: #f0f0f0;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95em;
}

.filter-btn.active {
  background: #faa819;
  color: white;
}

.filter-btn:hover:not(.active) {
  background: #e0e0e0;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.news-article {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  padding: 30px;
  background: #f8f8f8;
  border-radius: 12px;
  transition: all 0.3s;
}

.news-article:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.news-image {
  width: 100%;
  height: 250px;
  border-radius: 8px;
}

.news-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.news-date {
  color: #faa819;
  font-weight: 600;
  font-size: 0.9em;
}

.news-category {
  background: #1a1a1a;
  color: white;
  padding: 3px 12px;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: 600;
}

.news-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  line-height: 1.2;
}

.news-excerpt {
  font-size: 1.05em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #faa819;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more:hover {
  text-decoration: underline;
}

/* Press Contact */
.press-contact {
  background: #1a1a1a;
  color: white;
  padding: 60px;
  border-radius: 12px;
  margin-top: 80px;
  text-align: center;
}

.press-contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.press-contact p {
  font-size: 1.1em;
  opacity: 0.9;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  text-align: center;
}

.contact-label {
  color: #faa819;
  font-weight: 600;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-value {
  font-size: 1.1em;
}

.contact-value a {
  color: white;
  text-decoration: none;
}

.contact-value a:hover {
  color: #faa819;
}

/* Responsive */
@media (max-width: 1024px) {
  .news-article {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
  .featured-content {
    grid-template-columns: 1fr;
  }
  .exhibitions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .community-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .open-hours {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.5em;
  }

  .news-article {
    padding: 20px;
  }

  .news-title {
    font-size: 1.4em;
  }

  .press-contact {
    padding: 40px 30px;
  }
  .featured-title {
    font-size: 2em;
  }

  .section-title {
    font-size: 2em;
  }

  .exhibitions-grid {
    grid-template-columns: 1fr;
  }

  .program-item {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    display: block;
  }

  /* body {
    padding-bottom: 80px;
  } */
}

/* ---------------------------------------------------- Careers Page ------------------------------------------------- */
/* PAGE CONTENT */
.page-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Job Listings */
.jobs-section {
  margin-bottom: 60px;
}

.jobs-section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
}

.job-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s;
}

.job-card:hover {
  border-color: #faa819;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.job-info h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.job-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.job-tag {
  background: #f0f0f0;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  color: #666;
}

.job-tag.department {
  background: #faa819;
  color: white;
}

.apply-btn {
  background: #1a1a1a;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}

.apply-btn:hover {
  background: #faa819;
}

.job-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.job-description ul {
  margin-left: 20px;
  margin-top: 10px;
}

.job-description li {
  margin-bottom: 8px;
}

/* No Positions Available */
.no-positions {
  text-align: center;
  padding: 60px 40px;
  background: #f8f8f8;
  border-radius: 12px;
}

.no-positions h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.no-positions p {
  font-size: 1.1em;
  color: #666;
  margin-bottom: 25px;
}

.notify-btn {
  background: #faa819;
  color: white;
  padding: 14px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
}

.notify-btn:hover {
  background: #b8941f;
}

/* Responsive */
@media (max-width: 1024px) {
  .job-header {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .open-hours {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.5em;
  }

  .job-card {
    padding: 25px 20px;
  }
}

/* -------------------------------------------------- Plan Your Visit Page -------------------------------------------------- */

/* Page Hero Banner */
.page-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-hero-content {
  max-width: 1400px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  font-size: 0.85em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}
/* Intro Section - Below Hero */
.intro-section {
  background: #f1ece1;
  padding: 60px 20px;
}

.intro-section-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05em;
  line-height: 1.8;
  color: #221f20;
  text-align: center;
}
/* Main Content Wrapper */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Big Callout Boxes Section */
.callout-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* .callout-box {
  background: #faa819;
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.callout-box h2 {
  font-size: 2em;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.callout-box p {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
}
.callout-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
} */
.callout-box {
  background: #ffffff;
  color: black;
  padding: 0px 0px 40px 0px;
  border-radius: 12px;
  text-align: center;
  /* border: 1px solid #faa819; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s;
}
.callout-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.callout-box h2 {
  font-size: 2em;
  /* margin-bottom: 15px; */
  letter-spacing: 0.5px;
  color: #ffffff;
  /* background: #e41e27; */
  padding: 30px 20px 30px 20px;
  border-radius: 12px 12px 0px 0px;
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
  /* border-bottom: 2px solid #e0e0e0; */
}
.callout-box p {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
  padding: 0px 40px;
}
.callout-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.callout-link {
  display: inline-block;
  background: #faa819;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}
.callout-link:hover {
  background: #e89710;
}

.callout-link:hover {
  transform: translateY(-2px);
}
.callout-link-secondary {
  background: #1a1a1a;
  color: white;
}

.callout-link-secondary:hover {
  background: #333;
}

/* Getting Here Cards */
.getting-here-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.getting-here-card {
  background: white;
  /* border: 1px solid #e0e0e0; */
  border-radius: 12px;
  /* padding: 30px; */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    opacity 0.3s;
}

.getting-here-card h3 {
  font-size: 1.4em;
  /* margin-bottom: 20px; */
  color: #1a1a1a;
  font-weight: 700;
  padding: 30px;
  text-align: center;
  border-radius: 12px 12px 0px 0px;
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
  color: #fff;
}

.getting-here-card h4 {
  font-size: 1.1em;
  margin-top: 25px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 600;
  padding: 0px 30px;
}

.getting-here-card p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333;
  padding: 0px 30px;
}

.getting-here-card ul {
  margin-left: 20px;
  margin-bottom: 15px;
  padding: 0px 30px;
}

.getting-here-card li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Section Divider */
.section-divider {
  margin: 80px 0 40px;
  padding-top: 40px;
  /* border-top: 3px solid #1a1a1a; */
}

/* Two Column Section */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.column-text h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.column-text p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.column-text ul {
  margin-left: 20px;
  margin-top: 15px;
}

.column-text li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

.column-image {
  /* height: 400px; */
  border-radius: 12px;
}

/* Info Cards with Icons */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #faa819;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
}

.info-card h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.info-card p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

/* Map Section */
.map-section {
  margin-bottom: 80px;
}

.map-embed {
  height: 450px;
  border-radius: 12px;
  background: #e0e0e0;
}

/* Discover More Cards */
.discover-section {
  margin-top: 80px;
}

.discover-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
}

.discover-description {
  text-align: center;
  font-size: 1.1em;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
}

.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.discover-card {
  text-align: center;
}

.discover-card-image {
  height: 200px;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.discover-card:hover .discover-card-image {
  transform: translateY(-5px);
}

.discover-card h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.discover-card p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

/* Group Visit Form */
.group-form {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
}

.group-form h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.group-form p {
  font-size: 1.05em;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

.group-form .form-grid {
  display: grid;
  gap: 20px;
}

.group-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.group-form .form-group input,
.group-form .form-group select,
.group-form .form-group textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
  background: white;
  color: rgba(24, 24, 24, 0.5);
}

.group-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 120px;
}

.group-form .form-group input:focus,
.group-form .form-group select:focus,
.group-form .form-group textarea:focus {
  outline: none;
  border-color: #faa819;
}
.group-form .form-group input::placeholder,
.group-form .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.884);
}

.group-form .submit-btn {
  background: #faa819;
  color: white;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;
}

.group-form .submit-btn:hover {
  background: #e89710;
}

.visit-group-form .form-row {
  margin-bottom: 10px;
}

.visit-group-form .form-group p,
.visit-group-form .form-grid p {
  margin-bottom: 0px !important;
}

.visit-group-form .group-form .submit-btn {
  margin-top: 0;
  width: 100%;
}

/* ===== WORDPRESS MENU BRIDGE ===== */

/* Map WP li to .nav-item */
.nav-items > li {
  position: relative;
}
.nav-items > li > a {
  display: block;
  padding: 20px 0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hover color */
.nav-items > li:hover > a {
  color: #faa819;
}

/* Replace .nav-dropdown with .sub-menu */
.nav-items .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 320px;
  padding: 25px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-top: 4px solid #faa819;
  list-style: none;
}

/* Hover open dropdown */
.nav-items > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Replace .dropdown-item */
.nav-items .sub-menu li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.nav-items .sub-menu li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Dropdown links */
.nav-items .sub-menu li a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  display: block;
  transition: all 0.3s;
}

.nav-items .sub-menu li a:hover {
  color: #faa819;
  padding-left: 5px;
}
/* ===== DROPDOWN FIX (NO STRUCTURE CHANGE) ===== */

/* Ensure dropdown stays on top */
.nav-items .sub-menu {
  z-index: 9999;
}

/* Prevent hover gap issue */
/* .nav-items > li {
  padding-bottom: 10px;
} */

/* Keep hover active when mouse enters submenu */
.nav-items > li:hover,
.nav-items > li:focus-within {
  z-index: 100;
}

/* Remove WP default padding */
.nav-items .sub-menu {
  margin: 0;
}

/* Safety: prevent overflow clipping */
.header-content,
.header-nav {
  overflow: visible;
}

/* ===== FIX WORDPRESS DROPDOWN ===== */

/* Parent li */
.nav-items > li {
  position: relative;
}

/* Submenu container */
.nav-items > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 320px;
  padding: 20px 30px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-top: 4px solid #faa819;
  min-height: fit-content;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  list-style: none;
  z-index: 9999;
}

/* Open on hover */
.nav-items > li:hover > .sub-menu,
.nav-items > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.nav-items > li > .sub-menu > li {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}

.nav-items > li > .sub-menu > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* Links */
.nav-items > li > .sub-menu a {
  display: block;
  font-weight: 600;
  font-size: 1em;
  color: #1a1a1a;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-items > li > .sub-menu a:hover {
  color: #faa819;
  padding-left: 5px;
}

/* Prevent hover collapse */
.header-content,
.header-nav {
  overflow: visible;
}

/* ---------------------------------------------------- Teacher Resources Page --------------------------------------------- */
/* ===== STANDARD CONTENT PAGE STYLES ===== */

/* Page Hero Banner */
.page-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-hero-content {
  max-width: 1400px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  font-size: 0.85em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

/* Main Content Area */
.main-content.resource-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Intro Text Block */
/* .intro-section {
  margin-bottom: 60px;
} */

.intro-text {
  font-size: 1.15em;
  line-height: 1.8;
  color: #333;
}

.intro-text p {
  margin-bottom: 20px;
}

.intro-text strong {
  color: #1a1a1a;
}
.free-admission-badge {
  display: inline-block;
  background: #c9a227;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9em;
  margin-top: 20px;
}

.intro-highlight {
  background: white;
  border-left: 4px solid #c9a227;
  padding: 25px 30px;
  margin: 30px 0 0;
  font-style: italic;
  color: #555;
  border-radius: 0 12px 12px 0;
}
/* Section Divider */
.section-divider {
  margin: 60px 0 40px;
  padding-top: 40px;
  /* border-top: 3px solid #1a1a1a; */
}

/* ========================================
           TWO COLUMN LAYOUT
           ======================================== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin: 60px 0;
}

.column-image {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  background: #e0e0e0;
}

.column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-image-placeholder {
  height: 400px;
  background: #f1ece1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column-image-placeholder-content {
  text-align: center;
  padding: 30px;
}

.column-image-placeholder-content .icon {
  font-size: 4em;
  margin-bottom: 20px;
}

.column-text h3 {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.column-text p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.05em;
}

.column-text ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.column-text li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

/* Info Box */
.info-box {
  background: #f1ece1;
  border-radius: 12px;
  padding: 25px;
  margin: 25px 0;
}

.info-box h4 {
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.info-box p {
  margin-bottom: 0;
  font-size: 0.95em;
}

.column-text .contact-note {
  font-size: 0.95em;
  color: #ffffff;
  margin-top: 20px;
}

.column-text .contact-note a {
  color: #c9a227;
  text-decoration: none;
}

.column-text .contact-note a:hover {
  text-decoration: underline;
}

/* Two Column Layout */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.column-text h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.column-text p {
  font-size: 1.05em;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.column-text ul {
  margin-left: 20px;
  margin-top: 15px;
}

.column-text li {
  margin-bottom: 10px;
  color: #333;
  line-height: 1.6;
}

.column-image {
  /* height: 400px; */
  border-radius: 12px;
}

/* Resource Cards Grid */
.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.resource-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-image {
  height: 200px;
  background: #e0e0e0;
  overflow: hidden;
}

.resource-image img {
  background-size: cover;
  background-position: center;
  width: 100%;
}
.resource-image-icon {
  height: 200px;
  background: linear-gradient(135deg, #2c1810, #4a2c1d);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4em;
}

.resource-content {
  padding: 25px;
}

.resource-content h4 {
  font-size: 1.3em;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.resource-content p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.resource-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-primary {
  display: inline-block;
  background: #1a1a1a;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s;
  text-align: center;
}

.btn-primary:hover {
  background: #c9a227;
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: all 0.3s;
  text-align: center;
}

.btn-secondary:hover {
  background: #1a1a1a;
  color: white;
}

/* .download-btn {
  display: inline-block;
  background: #faa819;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: background 0.3s;
}

.download-btn:hover {
  background: #b8941f;
} */

/* ========================================
           BOOKING SECTION (Cream background)
           ======================================== */
.booking-section {
  background: #f1ece1;
  padding: 80px 20px;
  margin: 80px 0;
}

.booking-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.booking-section h3 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.booking-section > .booking-wrapper > p {
  color: #555;
  margin-bottom: 20px;
  font-size: 1.1em;
  line-height: 1.7;
}

.booking-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a227;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #faa819;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
}

.submit-btn:hover {
  background: #e89710;
  transform: translateY(-2px);
}

/* Digital Resources List */
.digital-resources {
  margin-bottom: 60px;
}

.resource-item {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}

.resource-item:hover {
  border-color: #faa819;
}

.resource-item h4 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.resource-item p {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.resource-meta {
  display: flex;
  gap: 20px;
  font-size: 0.9em;
  color: #999;
  margin-bottom: 15px;
}

.resource-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Contact Info Box */
.contact-box {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.contact-box h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.contact-box p {
  font-size: 1.1em;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-link {
  color: #faa819;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .nav-items {
    gap: 25px;
  }

  .nav-item > a {
    font-size: 1.2em;
  }

  .resource-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .resource-cards {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .header-utilities .plan-visit-btn,
  .header-utilities .donate-btn {
    display: none;
  }

  .exhibition-page .exhibitions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-tabs {
    position: static;
  }
}

@media (max-width: 768px) {
  .open-hours {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.5em;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-section {
    padding: 40px 30px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .visitor-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .exhibition-page .exhibitions-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2em;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .visitor-info-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ========================================
           VIRTUAL EXPERIENCES SECTION
           ======================================== */
.virtual-section {
  padding: 80px 20px;
  background: white;
}

.virtual-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.virtual-intro {
  max-width: 800px;
  margin-bottom: 50px;
}

.virtual-intro h2 {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.virtual-intro p {
  color: #555;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Virtual Tours Info Box */
.virtual-tours-box {
  background: #1a1a1a;
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.virtual-tours-box h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.virtual-tours-box p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.pricing-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.pricing-item .price {
  font-size: 1.8em;
  font-weight: 700;
  color: #faa819;
  margin-bottom: 5px;
}

.pricing-item .price-label {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-item .price-note {
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.virtual-tours-box .btn-primary {
  margin-top: 25px;
}

/* Virtual Exhibits Grid */
.virtual-subsection {
  margin-bottom: 60px;
}

.virtual-subsection h3 {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.virtual-subsection > p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.05em;
}

.virtual-exhibits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.virtual-exhibit-card {
  background: #f1ece1;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.virtual-exhibit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.virtual-exhibit-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  background-color: #333;
  position: relative;
}

.virtual-exhibit-image::after {
  content: "🏛️ Virtual Tour";
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
}

.virtual-exhibit-content {
  padding: 25px;
}

.virtual-exhibit-content h4 {
  font-size: 1.15em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.virtual-exhibit-content p {
  color: #555;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 15px;
}

.virtual-exhibit-content .grades {
  font-size: 0.85em;
  color: #888;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Living History Section */
.living-history-intro {
  background: #f1ece1;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.living-history-intro p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.living-history-intro p:last-child {
  margin-bottom: 0;
}

.living-history-pricing {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.living-history-pricing .price-option {
  background: white;
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
}

.living-history-pricing .price-option .amount {
  font-size: 1.4em;
  font-weight: 700;
  color: #c9a227;
}

.living-history-pricing .price-option .desc {
  font-size: 0.85em;
  color: #666;
}

.living-history-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.living-history-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  text-align: center;
}

.living-history-card:hover {
  transform: translateY(-5px);
}

.living-history-avatar {
  height: 180px;
  background-size: cover;
  background-position: center center;
  background-color: #e0e0e0;
  position: relative;
}

.living-history-avatar.placeholder {
  background:
    linear-gradient(
      to top right,
      transparent calc(50% - 1px),
      #ccc calc(50% - 1px),
      #ccc calc(50% + 1px),
      transparent calc(50% + 1px)
    ),
    linear-gradient(
      to top left,
      transparent calc(50% - 1px),
      #ccc calc(50% - 1px),
      #ccc calc(50% + 1px),
      transparent calc(50% + 1px)
    ),
    #e0e0e0;
}

.living-history-info {
  padding: 20px 15px;
}

.living-history-info h4 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.living-history-info .role {
  font-size: 0.85em;
  color: #888;
  margin-bottom: 10px;
}

.living-history-info p {
  font-size: 0.85em;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .virtual-exhibits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .living-history-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .virtual-exhibits-grid {
    grid-template-columns: 1fr;
  }

  .living-history-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .living-history-pricing {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .living-history-grid {
    grid-template-columns: 1fr;
  }
}
/* ========================================
           WEBINAR RECORDINGS
           ======================================== */
.webinars-section {
  padding: 80px 20px;
  background: white;
}

.webinars-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.webinar-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.webinar-item {
  background: #f1ece1;
  padding: 30px;
  border-radius: 12px;
  border-left: 5px solid #c9a227;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.webinar-item h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-weight: 700;
}

.webinar-meta {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 12px;
  font-weight: 600;
}

.webinar-item p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.webinar-facilitator {
  font-size: 0.9em;
  color: #888;
  font-style: italic;
}

.webinar-item .btn-primary {
  white-space: nowrap;
}

/* ========================================
           CONTACT BOX
           ======================================== */
.contact-section {
  background: #1a1a1a;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section h3 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-section p {
  opacity: 0.9;
  margin-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.7;
}

.contact-details {
  margin-top: 30px;
}

.contact-details strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.contact-link {
  color: #faa819;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ---------------------------------------------------------- Membership Page ---------------------------------------------------- */
/* Page Hero Banner */
.page-hero {
  background: #faa819;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.page-hero-content {
  max-width: 1400px;
  margin: 0 auto;
}

.page-hero-breadcrumb {
  font-size: 0.85em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.page-hero h1 {
  font-size: 4em;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.page-hero-description {
  font-size: 1.2em;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.page-template-page-teacher-resources .page-hero {
  background-repeat: no-repeat;
  background-size: cover;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.page-template-page-education .main-content {
  max-width: 1400px;
}

.page-template-page-family-activities .main-content {
  max-width: 1400px;
}

.membership-intro {
  background: white;
  padding: 60px 20px 40px;
  text-align: center;
}

.membership-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.membership-intro-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.membership-intro-text {
  font-size: 1.2em;
  color: #666;
  line-height: 1.6;
}

/* .intro-section p {
  font-size: 1.1em;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
} */

/* Membership Cards Grid */
.membership-index-section {
  padding: 40px 20px 80px;
  background: white;
}
.membership-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.membership-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s;
}

.membership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #faa819;
}
.membership-tier-header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: -2px -2px 0 -2px;
  border-radius: 10px 10px 0 0;
}

.membership-tier-header.student {
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
}

.membership-tier-header.individual {
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
}

.membership-tier-header.family {
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
}

.membership-tier-header.leader {
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
}

.membership-tier-header.icon {
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
}

.membership-tier-header.genius {
  background: linear-gradient(135deg, #e41e27 0%, #a11620 100%);
}
.membership-header {
  text-align: center;
  padding: 0px 20px 10px;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.membership-type {
  font-size: 0.85em;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.membership-price {
  font-size: 3em;
  font-weight: 900;
  color: #faa819;
  margin-bottom: 5px;
}

.membership-price-small {
  font-size: 0.3em;
  color: #999;
  font-weight: 400;
}

.membership-benefits {
  list-style: none;
  margin-bottom: 20px;
}

.membership-benefits li {
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
  color: #333;
  font-size: 0.95em;
  line-height: 1.5;
}

.membership-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #faa819;
  font-weight: bold;
  font-size: 1.2em;
}

.join-btn {
  display: block;
  /* width: 100%; */
  width: -webkit-fill-available;
  background: #faa819;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.3s;

  margin: 0px 30px;
  position: absolute;
  bottom: 30px;
}

.join-btn:hover {
  background: #e89710;
}

/* Gift Policy Section */
.gift-policy {
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 80px;
}

.gift-policy h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.gift-policy p {
  font-size: 1.05em;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.gift-policy-link {
  display: inline-block;
  margin-top: 20px;
  color: #faa819;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #faa819;
  padding: 10px 30px;
  border-radius: 30px;
  transition: all 0.3s;
}

.gift-policy-link:hover {
  background: #faa819;
  color: white;
}

/* Benefits Section */
.benefits-section {
  margin-bottom: 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: #faa819;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.2em;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.benefit-content p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

.page-template-page-teacher-resources .column-image img {
  border-radius: 10px;
  width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-items {
    gap: 25px;
  }

  .nav-item > a {
    font-size: 1.2em;
  }

  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .header-nav {
    display: none !important;
  }
  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .menu-toggle {
    display: flex;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .open-hours {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.5em;
  }

  .membership-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  .membership-intro {
    padding: 40px 20px 30px;
  }

  .membership-intro-title {
    font-size: 2em;
  }

  .membership-intro-text {
    font-size: 1.05em;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2em;
    line-height: normal;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
/* Membership Sections Wrapper - 2 Column Layout */
.membership-sections-wrapper {
  background: #f1ece1;
  padding: 80px 20px;
}

.membership-sections-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.join-renew-section {
  background: transparent;
  padding: 0;
}

.join-renew-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-weight: 700;
}

.join-renew-subtitle {
  font-size: 2em;
  margin-bottom: 25px;
  color: #1a1a1a;
  font-weight: 700;
}

.benefits-list {
  list-style: none;
  margin-bottom: 30px;
}

.benefits-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #333;
  font-size: 1.05em;
  line-height: 1.6;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #faa819;
  font-weight: bold;
  font-size: 1.3em;
}

.discount-note {
  background: #fff;
  padding: 20px 25px;
  border-left: 4px solid #faa819;
  margin: 30px 0;
  border-radius: 4px;
}

.discount-note p {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

.discount-note a {
  color: #faa819;
  text-decoration: none;
  font-weight: 600;
}

.discount-note a:hover {
  text-decoration: underline;
}

.addon-note {
  background: #fff;
  padding: 20px 25px;
  border-left: 4px solid #e41e27;
  margin: 20px 0;
  border-radius: 4px;
  color: #555;
  line-height: 1.6;
}

.contact-note {
  background: #221f20;
  color: white;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  margin-top: 30px;
}

.contact-note p {
  margin: 0;
  font-size: 1.05em;
}

.contact-note a {
  color: #faa819;
  text-decoration: none;
  font-weight: 600;
}

.contact-note a:hover {
  text-decoration: underline;
}

/* eMembership Card Section */
.emembership-section {
  background: transparent;
  padding: 0;
}

.emembership-title {
  font-size: 2em;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-weight: 700;
}

.emembership-steps {
  counter-reset: step-counter;
  list-style: none;
}

.emembership-steps li {
  counter-increment: step-counter;
  padding: 8px 0 8px 60px;
  position: relative;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333;
}

.emembership-steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 5px;
  background: #faa819;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2em;
}

.emembership-steps ul {
  margin-top: 5px;
  margin-left: 20px;
  margin-bottom: 5px;
}

.emembership-steps ul li {
  padding: 3px 0;
}

.emembership-steps ul li:before {
  display: none;
}

.app-badges {
  display: flex;
  gap: 15px;
  margin: 10px 0;
  align-items: center;
}

.app-badge {
  height: 50px;
}

.emembership-note {
  background: #f8f8f8;
  padding: 20px 25px;
  border-radius: 8px;
  margin-top: 20px;
  color: #555;
  line-height: 1.6;
}

/* Gift Policy Link */
.gift-policy-link {
  display: inline-block;
  margin: 40px 0;
  padding: 15px 30px;
  background: #faa819;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}

.gift-policy-link:hover {
  background: #e89710;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .exhibitions-index-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .exhibitions-index-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .membership-intro {
    padding: 40px 20px 30px;
  }

  .membership-intro-title {
    font-size: 2em;
  }

  .membership-intro-text {
    font-size: 1.05em;
  }

  .membership-sections-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-header {
    padding: 80px 20px 60px;
    min-height: 350px;
  }

  h2.section-title {
    font-size: 48px !important;
  }

  .social-title {
    font-size: 48px !important;
  }

  .page-subtitle {
    font-size: 1.1em;
  }

  .exhibitions-index-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .exhibitions-index-section {
    padding: 60px 20px;
  }

  .social-icon-link {
    width: 48px;
    height: 48px;
  }

  .callout-boxes {
    grid-template-columns: 1fr;
  }

  .getting-here-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .group-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header {
    padding: 60px 20px 50px;
    min-height: 300px;
  }

  h2.section-title {
    font-size: 36px !important;
  }

  .social-title {
    font-size: 36px !important;
  }

  .page-subtitle {
    font-size: 1em;
  }

  .exhibition-content {
    padding: 25px;
  }

  .exhibition-title {
    font-size: 1.2em;
  }

  .filter-tab {
    padding: 8px 16px;
    font-size: 0.85em;
  }

  .exhibition-content {
    padding-bottom: 90px;
  }

  a.exhibition-link {
    left: 25px;
    bottom: 25px;
  }

  .social-icon-link {
    width: 40px;
    height: 40px;
  }

  .jobs-section h2 {
    font-size: 32px;
  }
}
/* --------------------------------------------------- Family Activities Page --------------------------------------------------- */
/* Activity Cards Grid - Option B Style */
.activity-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
}

.activity-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.activity-image-container {
  height: 280px;
  background: #f1ece1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.activity-document {
  height: 240px;
  width: auto;
  aspect-ratio: 8.5 / 11;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-size: cover;
  background-position: top center;
}

.activity-content {
  padding: 25px;
}

.activity-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.3;
}

.activity-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95em;
}

.activity-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-link {
  color: #faa819;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: color 0.3s;
}

.activity-link:hover {
  color: #e89710;
}

.activity-link.secondary {
  color: #666;
}

.activity-link.secondary:hover {
  color: #1a1a1a;
}

/* ---------------------------------------------------- Book a field trip page ----------------------------------------------------- */
.page-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Sections */
.content-section {
  padding: 60px 0;
  border-bottom: 1px solid #e0e0e0;
}

.content-section:last-child {
  border-bottom: none;
}

.section-title {
  margin-bottom: 30px;
  color: #1a1a1a;
}

.section-intro {
  font-size: 1.15em;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 900px;
}

.section-intro a {
  color: #faa819;
  font-weight: 600;
}

/* Tour Type Cards */
.tour-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.tour-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 35px;
  border-left: 5px solid #faa819;
}

.tour-card h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.tour-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.tour-card ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.tour-card li {
  color: #555;
  margin-bottom: 8px;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.tour-meta-item {
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  color: #333;
}

/* Themed Tours Grid */
.themed-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.themed-tour-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s;
}

.themed-tour-card:hover {
  border-color: #faa819;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.themed-tour-card h4 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.themed-tour-grades {
  display: inline-block;
  background: #faa819;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
  margin-bottom: 15px;
}

.themed-tour-card p {
  color: #555;
  line-height: 1.7;
}

/* Pricing Table */
.pricing-section {
  background: #1a1a1a;
  color: white;
  padding: 60px 0;
  margin: 60px -40px;
  padding-left: 40px;
  padding-right: 40px;
}

.pricing-section .section-title {
  color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.pricing-card h4 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #faa819;
}

.pricing-amount {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-detail {
  font-size: 0.95em;
  opacity: 0.8;
  line-height: 1.6;
}

/* Financial Assistance Box */
.assistance-box {
  background: #1a1a1a;
  color: white;
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  border-left: 5px solid #faa819;
}

.assistance-box h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #faa819;
}

.assistance-box p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
}

.assistance-box a {
  color: #faa819;
  font-weight: 600;
}

/* Bus Guidelines */
.guidelines-list {
  background: #f1ece1;
  border-radius: 16px;
  padding: 35px;
  margin-top: 30px;
  border-left: 5px solid #c9a227;
}

.guidelines-list h3 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.guidelines-list ul {
  list-style: none;
  padding: 0;
}

.guidelines-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  color: #333;
  padding-left: 30px;
  position: relative;
}

.guidelines-list li:last-child {
  border-bottom: none;
}

.guidelines-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #c9a227;
  font-weight: 700;
  font-size: 1.2em;
}

/* Planning Checklist */
.planning-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.planning-checklist {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 35px;
}

.planning-checklist h3 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 20px;
}

.planning-checklist ul {
  list-style: none;
  padding: 0;
}

.planning-checklist li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  padding-left: 30px;
  position: relative;
}

.planning-checklist li:last-child {
  border-bottom: none;
}

.planning-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #faa819;
  font-weight: 700;
}

/* Reservation Form */
.reservation-form {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
}

.reservation-form h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 10px;
}

.reservation-form > p {
  color: #666;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1em;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #faa819;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background: #faa819;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #e89710;
  transform: translateY(-2px);
}

/* Contact Box */
.contact-box {
  background: #1a1a1a;
  color: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.contact-box h3 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-box p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.book-a-field .contact-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.book-a-field-trip-form .form-group br,
.teacher-resource-form .form-group br {
  display: none;
}

.book-a-field-trip-form .form-group textarea {
  min-height: 120px;
  max-height: 120px;
}

.book-a-field-trip-form .submit-btn {
  border-radius: 30px;
  border: none;
}

.contact-item {
  text-align: center;
}

.contact-item strong {
  display: block;
  color: #faa819;
  margin-bottom: 5px;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
}

.contact-item a:hover {
  text-decoration: underline;
}

.education-page .activity-document {
  height: 240px;
  width: 100%;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background-size: cover;
  background-position: center;
}
.education-page .activity-image-container {
  display: block;
  padding: 0;
  height: auto;
}
.privacy-policy {
  padding: 60px 20px;
  background-color: #ffffff;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.7;
}

.privacy-container h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.privacy-container h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
  font-weight: 600;
}

.privacy-container p {
  font-size: 16px;
  margin-bottom: 16px;
}

.privacy-container strong {
  font-weight: 600;
}
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #c62828;
  color: #fff;
  text-align: center;
  padding: 12px 20px;
}

.announcement-bar a {
  color: #fff;
  text-decoration: none;
}

.announcement-bar a:hover {
  text-decoration: underline;
}
.support-partners {
  background: rgb(241, 236, 225);
  padding: 60px 0;
  text-align: center;
}

.support-text {
  max-width: 70%;
  margin: 0 auto 50px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-item img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .partners-logos {
    gap: 5px;
  }

  .logo-item img {
    max-height: 100px;
  }
}

.live-search-wrapper {
  position: relative;
  width: 250px;
}

#liveSearchInput {
  width: 100%;
  padding: 8px 12px;
}

#liveSearchResults {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 999;
}

#liveSearchResults a {
  display: block;
  font-size: 14px;
  /* padding: 10px; */
  padding: 13px 18px;
  text-decoration: none;
  color: #222;
}

#liveSearchResults a:hover {
  background: #f5f5f5;
}
