/* =====================================================
   Lions Club of Calicut — style.css
   Colors: Lions Yellow #f5c518 / Lions Blue #1a5dad
   Font: Inter + Barlow
   ===================================================== */

:root {
  --gold:       #f5c518;
  --gold-hover: #d4a900;
  --gold-dark:  #b8920a;
  --navy:       #1a5dad;
  --navy2:      #154fa0;
  --navy-dark:  #0f3d80;
  --text:       #2d2d2d;
  --light-bg:   #f8f9fc;
  --border:     #e0e8f5;
  --radius:     6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); font-size: 15px; line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased; letter-spacing: -0.01em; }
h1,h2,h3,h4,h5,h6 { font-family: 'Barlow', sans-serif; color: var(--navy); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
a { text-decoration: none; transition: all 0.3s; }
img { max-width: 100%; }

.topbar {
  background: var(--gold);
  padding: 10px 0;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--navy-dark);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { color: var(--navy-dark); display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left span + span { margin-left: 20px; padding-left: 20px; border-left: 1px solid rgba(26,93,173,0.3); }
.topbar-left i { font-size: 13px; color: var(--navy-dark); }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.topbar-right a {
  color: var(--navy-dark);
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(26,93,173,0.4);
  border-radius: 50%;
  font-size: 12px;
  transition: background 0.3s, border-color 0.3s;
}
.topbar-right a:hover { background: rgba(26,93,173,0.15); border-color: var(--navy-dark); }

/* ===== NAVBAR ===== */
.main-navbar {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Brand — logo + text side by side */
.main-navbar .navbar-brand {
  padding: 10px 0;
  gap: 12px;
}
.main-navbar .navbar-brand img {
  height: 60px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 1px;
}
.brand-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}
.brand-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Nav links */
.main-navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #222 !important;
  padding: 32px 16px !important;
  position: relative;
  transition: color 0.25s;
  letter-spacing: -0.01em;
}
.main-navbar .nav-link:hover { color: var(--navy) !important; }
.main-navbar .nav-link.active { color: var(--navy) !important; }

/* Dropdown caret fix */
.main-navbar .nav-link.dropdown-toggle::after {
  position: static;
  height: auto;
  background: none;
  transform: none;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
  vertical-align: middle;
  margin-left: 4px;
  display: inline-block;
  content: '';
}

/* Dropdown menu */
.main-navbar .dropdown-menu {
  border: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 8px 0;
  min-width: 200px;
  margin-top: 0;
}
.main-navbar .dropdown-item {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.main-navbar .dropdown-item:last-child { border-bottom: none; }
.main-navbar .dropdown-item:hover {
  background: var(--gold);
  color: var(--navy-dark);
  padding-left: 28px;
}

/* Lions Hall button — blue */
.btn-lions-nav {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 24px !important;
  border-radius: 5px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn-lions-nav:hover { background: var(--gold-hover); color: var(--navy-dark) !important; transform: translateY(-1px); }

.btn-lions {
  background: var(--gold);
  color: var(--navy-dark) !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 28px;
  border-radius: 4px;
  border: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-lions:hover { background: var(--gold-hover); color: var(--navy-dark) !important; transform: translateY(-1px); }
.btn-lions-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 26px;
  border-radius: 4px;
  background: transparent;
  display: inline-block;
  transition: all 0.3s;
}
.btn-lions-outline:hover { background: var(--navy); color: #fff; }

/* ===== HERO SLIDER ===== */
.hero-slider,
.hero-fallback { width: 100%; position: relative; overflow: hidden; }
.hero-slider .carousel,
.hero-slider .carousel-inner { width: 100%; }
.hero-slider .carousel-item { position: relative; }

.hero-bg {
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
}

/* Desktop image — shown on tablet and up */
.hero-bg.hero-desktop {
  height: 100vh;
  max-height: 700px;
  min-height: 400px;
  display: block;
}
.hero-bg.hero-mobile { display: none; }

/* Mobile image — shown on phones */
@media (max-width: 576px) {
  .hero-bg.hero-desktop { display: none; }
  .hero-bg.hero-mobile {
    display: block;
    height: 125vw;
    max-height: 750px;
    min-height: 400px;
    background-position: center top;
  }
}
@media (min-width: 577px) and (max-width: 992px) {
  .hero-bg.hero-desktop { height: 60vw; max-height: 480px; }
}

/* Ken Burns zoom */
.kenburns { animation: none; }
.carousel-item.active .kenburns { animation: kenburns 6s ease-out forwards; }
@keyframes kenburns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}
/* removed */
/* removed */
.hero-caption { max-width: 580px; }
.hero-caption h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hero-caption p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 26px;
  font-family: 'Inter', sans-serif;
}
.btn-hero {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 30px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
  font-family: 'Inter', sans-serif;
}
.btn-hero:hover { background: var(--gold-hover); color: var(--navy-dark); }

/* Carousel fade transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Hero caption animations - slide up and stay */
.carousel-item .hero-caption h1,
.carousel-item .hero-caption p,
.carousel-item .hero-caption .btn-hero {
  opacity: 0;
}

.carousel-item.active .hero-caption h1 {
  animation: slideUpFade 0.8s ease 0.3s forwards;
}
.carousel-item.active .hero-caption p {
  animation: slideUpFade 0.8s ease 0.55s forwards;
}
.carousel-item.active .hero-caption .btn-hero {
  animation: slideUpFade 0.8s ease 0.8s forwards;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid transparent;
  margin: 0 4px;
  transition: background 0.3s;
}
.carousel-indicators button.active { background: var(--gold); }

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 46px;
  height: 46px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
  transition: background 0.3s;
  z-index: 5;
}
.carousel-control-prev { left: 15px; }
.carousel-control-next { right: 15px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--gold); opacity: 1; color: var(--navy-dark); }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 16px; height: 16px; }

/* ===== ABOUT SECTION ===== */
.home-about { background: #fff; }
.about-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.4;
}
.about-title span { color: var(--gold); }
.home-about p { color: #555; font-size: 14.5px; margin-bottom: 12px; }
.about-img-box { text-align: center; }
.about-img-box img { border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

/* ===== HISTORY DARK SECTION ===== */
.home-history {
  position: relative;
  background: url('../img/about/history-bg.jpg') center center / cover no-repeat;
  background-color: #1a2a1a;
  padding: 70px 0;
  overflow: hidden;
}
.history-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 15, 0.82);
}
.history-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.history-inner h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.history-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.btn-history-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 28px;
  border-radius: 4px;
  background: transparent;
  display: inline-block;
  transition: all 0.3s;
  margin-top: 8px;
}
.btn-history-outline:hover { background: var(--gold); color: #fff; }

/* ===== ACTIVITIES PHOTO GRID ===== */
.home-activities { background: #fff; }
.sec-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.sec-sub {
  color: #666;
  font-size: 14.5px;
  max-width: 620px;
  margin: 0 auto 4px;
}
.sec-divider {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}
/* ===== ACTIVITY CARDS (Homepage) ===== */
.act-card-link { text-decoration: none; display: block; }
.act-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.act-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.14); }
.act-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.act-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.act-card:hover .act-card-img img { transform: scale(1.07); }
.act-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,20,40,0.6) 100%);
}
/* act-card-cat */
.act-card-cat {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.act-card-body {
  padding: 18px 20px 16px;
  border-left: 3px solid var(--navy);
}
.act-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.act-card-desc {
  font-size: 13.5px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.7;
}
.act-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.act-card-date { font-size: 12px; color: #999; font-family: 'Inter', sans-serif; }
.act-read-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.act-card:hover .act-read-more { gap: 8px; color: var(--gold-hover); }

/* ===== ACTIVITY DETAIL PAGE ===== */
.activity-detail-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-height: 450px;
  object-fit: cover;
}
.activity-detail-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.act-detail-cat {
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.act-detail-date { font-size: 13px; color: #888; font-family: 'Inter', sans-serif; }
.activity-detail-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.activity-detail-content {
  font-size: 15px;
  color: #555;
  line-height: 1.9;
}

/* Sidebar */
.activity-sidebar-box {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  border-top: 3px solid var(--gold);
}
.sidebar-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.sidebar-activity-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sidebar-activity-item:last-child { border-bottom: none; }
.sidebar-activity-item:hover { opacity: 0.8; }
.sidebar-activity-item img {
  width: 65px; height: 50px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.sidebar-activity-noimg {
  width: 65px; height: 50px;
  background: #e8e8e8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  flex-shrink: 0;
}
.sidebar-activity-item h6 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 3px;
  line-height: 1.3;
}
.sidebar-activity-item small { font-size: 11px; color: var(--gold); font-weight: 600; }
.activity-contact-box {
  background: var(--navy);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
.activity-contact-box h5 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.activity-contact-box p { color: rgba(255,255,255,0.7); font-size: 13.5px; margin-bottom: 16px; }

/* ===== HALL BOOKING CTA ===== */
.home-hall-cta {
  position: relative;
  background: url('../img/slider/slide1-2.jpg') center center / cover no-repeat;
  background-color: var(--navy);
  padding: 80px 0;
}
.hall-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,0.7);
}
.hall-cta-box {
  position: relative;
  z-index: 2;
  background: rgba(245,197,24,0.95);
  padding: 35px 30px;
  border-radius: 6px;
}
.hall-cta-box h3 { color: var(--navy-dark); font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
.hall-phone { color: var(--navy-dark); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.hall-cta-box p { color: var(--navy-dark); font-size: 14px; margin-bottom: 18px; opacity: 0.85; }
.btn-hall { background: var(--navy-dark); color: #fff; font-weight: 700; font-size: 13px; padding: 10px 24px; border-radius: 4px; display: inline-block; transition: background 0.3s; }
.btn-hall:hover { background: #0a2d60; color: #fff; }

/* ===== NEWS CARDS ===== */
.home-news { background: var(--light-bg); }
.news-card-home {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.news-card-home:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.news-card-img { position: relative; overflow: hidden; height: 200px; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card-home:hover .news-card-img img { transform: scale(1.05); }
/* news-card-date */
.news-card-date {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
}
.news-card-body { padding: 18px 20px; }
.news-card-body h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.news-card-body h5 a { color: var(--navy); }
.news-card-body h5 a:hover { color: var(--gold); }
.news-card-body p { font-size: 13.5px; color: #666; margin-bottom: 12px; }
.news-read-more { color: var(--gold); font-size: 13px; font-weight: 700; }
.news-read-more:hover { color: var(--gold-hover); }

/* ===== PAGE BANNER ===== */
/* ===== PAGE BANNER ===== */
.page-banner {
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,197,24,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(245,197,24,0.06);
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
}
.page-banner h1 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  position: relative;
}
.page-banner .breadcrumb {
  justify-content: center;
  background: none;
  margin: 0;
  position: relative;
}
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.page-banner .breadcrumb-item a:hover { color: var(--gold); }
.page-banner .breadcrumb-item.active { color: var(--gold); font-weight: 600; }
.page-banner .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255,255,255,0.25);
  content: '›';
  font-size: 16px;
}
@media (max-width: 576px) {
  .page-banner { padding: 50px 0 36px; }
  .page-banner h1 { font-size: 1.7rem; }
}

/* ===== INNER PAGE SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}
.section-title span { color: var(--gold); }

/* ===== INNER PAGE COMPONENTS ===== */

/* Stat cards */
.stat-card { background: #f5f5f5; border-left: 4px solid var(--gold); padding: 14px 16px; border-radius: 4px; text-align: center; }
.stat-num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--navy); font-family: 'Barlow', sans-serif; }
.stat-label { font-size: 12px; color: #777; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* Mission/Vision cards */
.mv-card { background: #fff; border-radius: 8px; padding: 28px 20px; box-shadow: 0 2px 15px rgba(0,0,0,0.07); text-align: center; height: 100%; }
.mv-icon { width: 60px; height: 60px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; margin: 0 auto 14px; }
.mv-card h5 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.mv-card p { font-size: 14px; color: #666; margin: 0; }

/* Stats band */
.lions-bg-gold { background: linear-gradient(135deg, var(--gold-hover) 0%, var(--gold) 100%); }
.counter-item h2 { font-size: 2.5rem; font-weight: 800; color: var(--navy); margin: 0; font-family: 'Barlow', sans-serif; }
.counter-item p { color: var(--navy2); font-weight: 700; font-size: 13.5px; margin: 0; }

/* Team cards */
.team-card { background: #fff; border-radius: 8px; box-shadow: 0 2px 15px rgba(0,0,0,0.07); padding-bottom: 1.2rem; transition: transform 0.3s; text-align: center; }
.team-card:hover { transform: translateY(-4px); }
.team-photo { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 1.5rem auto 0.8rem; border: 4px solid var(--gold); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 110px; height: 110px; border-radius: 50%; background: #f0f0f0; display: flex; align-items: center; justify-content: center; margin: 1.5rem auto 0.8rem; border: 4px solid var(--gold); color: #ccc; font-size: 2rem; }
.team-body h6 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-pos { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.5px; }
.team-year { font-size: 12px; color: #888; }
.team-contact a { font-size: 13px; color: #555; }

/* Activity inner page cards */
.activity-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.07); height: 100%; transition: transform 0.3s; }
.activity-card:hover { transform: translateY(-4px); }
.activity-img { height: 200px; overflow: hidden; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.activity-card:hover .activity-img img { transform: scale(1.05); }
.activity-body { padding: 16px 18px; }
.activity-cat { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block; }
.activity-body h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.activity-body p { font-size: 13.5px; color: #666; margin: 0; }

/* Club cards */
.aff-type-heading { font-size: 1.1rem; font-weight: 700; color: var(--navy); border-left: 4px solid var(--gold); padding-left: 14px; }
.club-card { background: #fff; border-radius: 6px; padding: 20px; box-shadow: 0 2px 15px rgba(0,0,0,0.07); height: 100%; border-top: 3px solid var(--gold); transition: transform 0.3s; }
.club-card:hover { transform: translateY(-3px); }
.club-header { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.club-logo { width: 48px; height: 48px; object-fit: contain; }
.club-logo-ph { width: 48px; height: 48px; background: #f5f5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; }
.club-header h6 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin: 0 0 3px; }
.club-type-badge { background: var(--gold) !important; color: #fff !important; font-size: 10px; }
.club-desc { font-size: 13px; color: #666; margin-bottom: 10px; }
.club-officers { font-size: 13px; color: var(--text); line-height: 1.9; }

/* Contact */
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon { width: 42px; height: 42px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.95rem; flex-shrink: 0; }
.contact-info-item p { margin: 0; font-size: 14px; color: #666; }
.contact-info-item strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 2px; }
.contact-form-wrap { background: #f8f8f8; border-radius: 10px; padding: 28px; }
.contact-form-wrap .form-control, .contact-form-wrap .form-select { border-radius: 4px; border: 1.5px solid #ddd; font-size: 14px; }
.contact-form-wrap .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 0.15rem rgba(200,161,42,0.2); }

/* Hall features */
.hall-feature-list { display: flex; flex-direction: column; gap: 10px; }
.hall-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.hall-feature i { color: var(--gold); width: 18px; }

/* Gallery */
.gallery-thumb { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 1; background: #111; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; color: #fff; font-size: 1.2rem; }
.gallery-thumb:hover img { transform: scale(1.08); }
.gallery-thumb:hover .gallery-overlay { opacity: 1; }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.filter-btn { padding: 7px 20px; border: 2px solid var(--gold); background: transparent; color: var(--gold); font-weight: 700; font-size: 13px; border-radius: 30px; cursor: pointer; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: #fff; }

/* News/events page */
.news-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.07); height: 100%; transition: transform 0.3s; }
.news-card:hover { transform: translateY(-4px); }
.news-img { height: 200px; overflow: hidden; position: relative; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-type { position: absolute; top: 12px; left: 12px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; padding: 3px 10px; border-radius: 20px; }
.news-type.news { background: var(--gold); color: var(--navy-dark); }
.news-type.event { background: var(--navy); color: #fff; }
.news-body { padding: 16px 18px; }
.news-date { font-size: 12px; color: #888; margin-bottom: 6px; }
.event-meta { font-size: 12px; color: var(--navy2); font-weight: 600; margin-bottom: 5px; }
.news-body h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.news-body p { font-size: 13.5px; color: #666; margin: 0; }

/* Timeline */
.timeline { position: relative; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: var(--gold); transform: translateX(-50%); }
.timeline-item { position: relative; width: 45%; margin-bottom: 2.5rem; }
.timeline-item.left { margin-right: auto; }
.timeline-item.right { margin-left: auto; }
.timeline-item::before { content: ''; position: absolute; top: 20px; width: 16px; height: 16px; background: var(--gold); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 3px var(--gold); }
.timeline-item.left::before { right: -10%; }
.timeline-item.right::before { left: -10%; }
.timeline-content { background: #fff; border-radius: 6px; padding: 18px 20px; box-shadow: 0 2px 15px rgba(0,0,0,0.07); border-top: 3px solid var(--gold); }
.timeline-year { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.timeline-content h5 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.timeline-content p { font-size: 13.5px; color: #666; margin: 0; }
@media (max-width: 768px) {
  .timeline::before { left: 16px; }
  .timeline-item { width: 88%; margin-left: 40px !important; }
  .timeline-item::before { left: -30px !important; right: auto !important; }
}

/* ===== FOOTER ===== */
.site-footer { background: #111111; }
.footer-main { padding: 55px 0 35px; }
.footer-logo { height: 65px; width: auto; max-width: none; object-fit: contain; margin-bottom: 15px; display: block; }
.footer-about { color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.8; }
.footer-heading { color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 13.5px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.6); font-size: 13.5px; margin-bottom: 12px; }
.footer-contact-list i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { background: #000000; padding: 14px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-slide { height: 420px; }
  .hero-caption h1 { font-size: 2rem; }
  .main-navbar .nav-link { padding: 12px 14px !important; }
}
@media (max-width: 767px) {
  .hero-slide { height: 320px; }
  .hero-caption h1 { font-size: 1.6rem; }
  .topbar-left { font-size: 12px; }
  .home-history { padding: 50px 0; }
}

/* ===== GALLERY TABS ===== */
.gallery-tabs { border-bottom: 2px solid #e5e5e5; gap: 4px; }
.gallery-tabs .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #666;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 24px;
  border-radius: 0;
  transition: all 0.3s;
  background: none;
}
.gallery-tabs .nav-link:hover { color: var(--navy); }
.gallery-tabs .nav-link.active { color: var(--navy); border-bottom-color: var(--gold); background: none; }

/* ===== ALBUM CARDS ===== */
.album-card-link { text-decoration: none; display: block; }
.album-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.album-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.14); }
.album-cover {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #eee;
}
.album-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.album-card:hover .album-cover img { transform: scale(1.07); }
.album-no-cover {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 3rem;
}
.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.album-card:hover .album-overlay { opacity: 1; }
.album-view-btn {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.album-count {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.album-body { padding: 16px 18px; }
.album-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  display: block;
  margin-bottom: 6px;
}
.album-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.album-date { font-size: 12px; color: #999; font-family: 'Inter', sans-serif; }

/* ===== ACTIVITY DETAIL GALLERY ===== */
.activity-photos-section { margin-top: 2rem; }
.act-gallery-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.act-gallery-heading span { font-size: 0.9rem; color: #999; font-weight: 500; }
.act-gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1;
  background: #111;
  cursor: pointer;
}
.act-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.act-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
  font-size: 1.1rem;
}
.act-gallery-thumb:hover img { transform: scale(1.08); }
.act-gallery-thumb:hover .act-gallery-overlay { opacity: 1; }

/* ===== ALBUM DETAIL PAGE ===== */
.album-detail-header { border-bottom: 2px solid #f0f0f0; padding-bottom: 30px; }
.album-detail-title { font-size: 1.9rem; font-weight: 700; color: var(--navy); margin: 8px 0 6px; }
.album-detail-meta { font-size: 13.5px; color: #888; font-family: 'Inter', sans-serif; }

.album-photo-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1;
    cursor: pointer;
    background: #eee;
}
.album-photo-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.album-photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,20,40,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-size: 1.3rem;
}
.album-photo-thumb:hover img { transform: scale(1.08); }
.album-photo-thumb:hover .album-photo-overlay { opacity: 1; }

/* ===== CUSTOM LIGHTBOX ===== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay.active { display: flex; }
.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    transition: opacity 0.25s;
}
.lightbox-caption {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    margin-top: 14px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    padding: 0 20px;
}
.lightbox-counter {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    margin-top: 6px;
    font-family: 'Inter', sans-serif;
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 24px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}
.lightbox-close:hover { background: var(--gold); color: var(--navy-dark); }
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    width: 50px; height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 2;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--gold); }
@media (max-width: 576px) {
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* Album type badge */
.album-type-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.album-type-activity { background: var(--gold); color: var(--navy-dark); }
.album-type-news { background: #17a2b8; color: #fff; }
.album-type-event { background: var(--navy); color: #fff; }

/* ===== NEWS SWIPER SLIDER ===== */
.news-swiper-wrap { position: relative; }
.newsSwiper { padding-bottom: 10px !important; }
.news-slide-link { text-decoration: none; display: block; height: 100%; }
.news-slide-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.news-slide-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

.news-slide-type {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.news-slide-type.news  { background: var(--gold); color: var(--navy-dark); }
.news-slide-type.event { background: var(--navy); color: #fff; }

.news-slide-img { height: 200px; overflow: hidden; background: #f0f0f0; flex-shrink: 0; }
.news-slide-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.news-slide-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 2.5rem; background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%); }
.news-slide-card:hover .news-slide-img img { transform: scale(1.06); }

.news-slide-body {
  display: flex;
  gap: 16px;
  padding: 18px 20px 20px;
  flex: 1;
}
.news-slide-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 8px;
  padding: 10px 12px;
  min-width: 52px;
  flex-shrink: 0;
  height: fit-content;
}
.news-date-day { font-size: 1.4rem; font-weight: 800; line-height: 1; font-family: 'Barlow', sans-serif; color: var(--navy-dark); }
.news-date-mon { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; font-family: 'Inter', sans-serif; color: var(--navy-dark); }

.news-slide-content { flex: 1; display: flex; flex-direction: column; }
.news-event-meta { font-size: 11.5px; color: var(--navy); font-weight: 600; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.news-slide-title { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; font-family: 'Barlow', sans-serif; }
.news-slide-excerpt { font-size: 13px; color: #777; margin-bottom: 12px; line-height: 1.65; flex: 1; }
.news-slide-readmore { font-size: 12.5px; font-weight: 700; color: var(--navy); font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.news-slide-card:hover .news-slide-readmore { gap: 8px; color: var(--gold-hover); }

/* Swiper nav buttons */
.news-swiper-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; }
.news-swiper-prev,
.news-swiper-next {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.news-swiper-prev:hover,
.news-swiper-next:hover { background: var(--gold); color: var(--navy-dark); }

/* ===== NEWS DETAIL PAGE ===== */
.news-detail-header { margin-bottom: 28px; }
.news-detail-type { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 4px 14px; border-radius: 20px; font-family: 'Inter', sans-serif; margin-bottom: 12px; }
.news-detail-type.news  { background: var(--gold); color: #fff; }
.news-detail-type.event { background: var(--navy); color: #fff; }
.news-detail-title { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
.news-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: #888; font-family: 'Inter', sans-serif; padding-bottom: 18px; border-bottom: 2px solid #f0f0f0; margin-bottom: 24px; }
.news-detail-meta span { display: flex; align-items: center; gap: 6px; }
.news-detail-meta i { color: var(--gold); }
.news-detail-img { border-radius: 10px; overflow: hidden; margin-bottom: 28px; }
.news-detail-img img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.news-detail-content { font-size: 15px; color: #555; line-height: 1.9; }
.news-detail-content p { margin-bottom: 16px; }

/* Related news sidebar */
.news-sidebar-box { background: #f8f8f8; border-radius: 10px; padding: 20px; border-top: 3px solid var(--gold); }
.news-sidebar-item { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid #eee; text-decoration: none; transition: opacity 0.2s; }
.news-sidebar-item:last-child { border-bottom: none; }
.news-sidebar-item:hover { opacity: 0.75; }
.news-sidebar-item img { width: 65px; height: 50px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }
.news-sidebar-noimg { width: 65px; height: 50px; background: #e5e5e5; border-radius: 5px; display: flex; align-items: center; justify-content: center; color: #bbb; flex-shrink: 0; }
.news-sidebar-item h6 { font-size: 13px; font-weight: 700; color: var(--navy); margin: 0 0 3px; line-height: 1.35; font-family: 'Barlow', sans-serif; }
.news-sidebar-item small { font-size: 11px; color: #999; }

/* ===== HISTORY PAGE ===== */

/* Stats grid */
.history-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.hist-stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-bottom: 4px solid var(--gold);
    transition: transform 0.3s;
}
.hist-stat-card:hover { transform: translateY(-4px); }
.hist-stat-num {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}
.hist-stat-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* Sponsored clubs list */
.sponsored-list {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}
.sponsored-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s, transform 0.2s;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}
.sponsored-item:last-child { border-bottom: none; }
.sponsored-item:hover { background: #fffbf0; transform: translateX(4px); }
@keyframes slideInLeft {
    to { opacity: 1; transform: translateX(0); }
}
.sponsored-num {
    font-family: 'Barlow', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    min-width: 32px;
}
.sponsored-name {
    flex: 1;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Inter', sans-serif;
}
.sponsored-year {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: var(--navy);
    padding: 3px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

/* Timeline */
.hist-timeline {
    position: relative;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}
.hist-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, var(--navy) 100%);
    transform: translateX(-50%);
}
.hist-tl-item {
    position: relative;
    width: 46%;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.hist-tl-item[data-side="left"] {
    margin-right: auto;
    transform: translateX(-30px);
}
.hist-tl-item[data-side="right"] {
    margin-left: auto;
    transform: translateX(30px);
}
.hist-tl-item.visible {
    opacity: 1;
    transform: translateX(0);
}
.hist-tl-dot {
    position: absolute;
    top: 18px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--gold);
    transition: transform 0.3s;
}
.hist-tl-item[data-side="left"] .hist-tl-dot  { right: -8.5%; }
.hist-tl-item[data-side="right"] .hist-tl-dot { left: -8.5%; }
.hist-tl-item:hover .hist-tl-dot { transform: scale(1.3); }
.hist-tl-content {
    background: #fff;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border-top: 3px solid var(--gold);
    position: relative;
}
.hist-tl-item[data-side="left"]  .hist-tl-content::after,
.hist-tl-item[data-side="right"] .hist-tl-content::before {
    content: '';
    position: absolute;
    top: 18px;
    border: 8px solid transparent;
}
.hist-tl-item[data-side="left"] .hist-tl-content::after {
    right: -16px;
    border-left-color: #fff;
}
.hist-tl-item[data-side="right"] .hist-tl-content::before {
    left: -16px;
    border-right-color: #fff;
}
.hist-tl-year {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}
.hist-tl-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.hist-tl-content p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Mobile timeline */
@media (max-width: 768px) {
    .hist-timeline::before { left: 16px; }
    .hist-tl-item { width: 88%; margin-left: 40px !important; }
    .hist-tl-item[data-side="left"],
    .hist-tl-item[data-side="right"] { transform: translateX(20px); }
    .hist-tl-item[data-side="left"]  .hist-tl-dot,
    .hist-tl-item[data-side="right"] .hist-tl-dot { left: -32px !important; right: auto !important; }
    .hist-tl-item[data-side="left"]  .hist-tl-content::after  { display: none; }
    .hist-tl-item[data-side="right"] .hist-tl-content::before { display: none; }
    .history-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== HALL AVAILABILITY CALENDAR ===== */
.hall-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hall-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--navy);
  background: #f0f5ff;
  padding: 10px 14px;
  border-radius: 8px;
}
.hall-feat i { color: var(--gold-dark); font-size: 15px; }

.hall-calendar-wrap {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hall-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  padding: 14px 18px;
}
.cal-month-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.5px;
}
.cal-nav {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  font-size: 12px;
}
.cal-nav:hover { background: var(--gold); color: var(--navy-dark); }

.hall-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 10px;
  background: #f8f9fc;
}
.cal-day-name {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: default;
  transition: transform 0.15s;
}
.cal-day.empty { background: transparent; }
.cal-day.past { color: #ccc; background: transparent; }
.cal-day.available {
  background: #e8f5e9;
  color: #2e7d32;
  font-weight: 700;
}
.cal-day.available:hover { transform: scale(1.1); }
.cal-day.booked {
  background: #ffebee;
  color: #c62828;
  font-weight: 700;
  text-decoration: line-through;
}
.cal-day.blocked {
  background: #f3f3f3;
  color: #999;
  font-weight: 600;
}
.cal-day.reserved {
  background: #fff3e0;
  color: #e65100;
  font-weight: 700;
}
.hall-cal-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px;
  border-top: 1px solid #f0f0f0;
  background: #fff;
}
.leg-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #666;
  font-family: 'Inter', sans-serif;
}
.leg-dot {
  width: 10px; height: 10px;
  border-radius: 3px;
}
.leg-dot.available { background: #e8f5e9; border: 1.5px solid #2e7d32; }
.leg-dot.booked    { background: #ffebee; border: 1.5px solid #c62828; }

/* ===== ADMIN CALENDAR ===== */
.admin-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cal-nav-sm {
  background: #f0f0f0;
  border: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cal-nav-sm:hover { background: var(--gold); color: var(--navy-dark); }
.admin-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.acal-hdr {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #aaa;
  padding: 4px 0;
  font-family: 'Inter', sans-serif;
}
.acal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 0.15s;
}
.acal-day:not(.past):not(:empty):hover { transform: scale(1.1); background: #f0f5ff; }
.acal-day.past { color: #ddd; cursor: default; }
.acal-day.booked   { background: #ffebee; color: #c62828; font-weight: 700; }
.acal-day.blocked  { background: #f3f3f3; color: #999; font-weight: 600; }
.acal-day.reserved { background: #fff3e0; color: #e65100; font-weight: 700; }
.cal-legend-sm {
  display: flex; gap: 12px; font-size: 11px; color: #666;
  font-family: 'Inter', sans-serif;
}
.leg-dot-sm { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 3px; }
.leg-dot-sm.booked   { background: #ffcdd2; border: 1px solid #c62828; }
.leg-dot-sm.blocked  { background: #e0e0e0; border: 1px solid #999; }
.leg-dot-sm.reserved { background: #ffe0b2; border: 1px solid #e65100; }

/* ===== HALL BOOKING PAGE ===== */

/* Big Calendar */
.hall-big-calendar {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26,93,173,0.12);
  overflow: hidden;
}
.hbc-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
}
.hbc-title h4 { color: #fff; margin: 0; font-size: 1.3rem; font-weight: 700; letter-spacing: 0.5px; }
.hbc-nav {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
}
.hbc-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.hbc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 16px 16px 8px;
  gap: 4px;
}
.hbc-day-name {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  padding: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: 'Inter', sans-serif;
}
.hbc-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: default;
  transition: transform 0.15s;
  position: relative;
}
.hbc-day span {
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  z-index: 1;
}
.hbc-day.empty { background: transparent; }
.hbc-day.past span { color: #ccc; }
.hbc-day.available {
  background: #e8f5e9;
}
.hbc-day.available span { color: #2e7d32; font-weight: 700; }
.hbc-day.available:hover { transform: scale(1.1); background: #c8e6c9; }
.hbc-day.reserved {
  background: #ffebee;
}
.hbc-day.reserved span {
  color: #c62828;
  font-weight: 700;
  text-decoration: line-through;
}
.hbc-day.reserved::after {
  content: '';
  position: absolute;
  inset: 2px;
  border: 2px solid #ef9a9a;
  border-radius: 6px;
  pointer-events: none;
}

.hbc-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 14px 20px 18px;
  border-top: 1px solid #f0f0f0;
}
.hbc-leg {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  font-family: 'Inter', sans-serif;
}
.hbc-dot {
  width: 14px; height: 14px;
  border-radius: 4px;
}
.hbc-dot.available { background: #e8f5e9; border: 2px solid #2e7d32; }
.hbc-dot.reserved  { background: #ffebee; border: 2px solid #c62828; }
.hbc-dot.past      { background: #f5f5f5; border: 2px solid #ccc; }

/* Facilities */
.hall-facility-list { display: flex; flex-direction: column; gap: 12px; }
.hf-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(26,93,173,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hf-item:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(26,93,173,0.12); }
.hf-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hf-text { display: flex; flex-direction: column; }
.hf-text strong { font-size: 14px; font-weight: 700; color: var(--navy); font-family: 'Barlow', sans-serif; }
.hf-text span { font-size: 12.5px; color: #888; font-family: 'Inter', sans-serif; }

.hf-contact { display: flex; flex-direction: column; gap: 10px; }
.hf-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--navy);
  border-radius: 10px;
  color: #fff;
}
.hf-contact-item i { color: var(--gold); font-size: 1.1rem; flex-shrink: 0; }
.hf-contact-item small { display: block; font-size: 11px; color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; }
.hf-contact-item strong { font-size: 13.5px; color: #fff; font-family: 'Inter', sans-serif; }

/* Booking Form */
.hall-form-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26,93,173,0.1);
  overflow: hidden;
}
.hall-form-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 24px 28px;
}
.hall-form-header h4 { color: #fff; margin: 0 0 4px; font-size: 1.2rem; font-weight: 700; }
.hall-form-header p { color: rgba(255,255,255,0.7); margin: 0; font-size: 13.5px; font-family: 'Inter', sans-serif; }
.hall-form-body {
  padding: 28px;
}
.hall-form-body .form-label { font-size: 13px; font-weight: 600; color: var(--navy); font-family: 'Inter', sans-serif; margin-bottom: 5px; }
.hall-form-body .form-control,
.hall-form-body .form-select {
  border: 1.5px solid #dde5f0;
  border-radius: 8px;
  font-size: 13.5px;
  padding: 10px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hall-form-body .form-control:focus,
.hall-form-body .form-select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,93,173,0.1);
}

/* ===== NEWS/EVENTS PAGE CARDS ===== */
.news-card-link { text-decoration: none; display: block; height: 100%; }
.news-card-new {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,93,173,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card-new:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(26,93,173,0.14); }
.ncn-img { position: relative; height: 210px; overflow: hidden; flex-shrink: 0; background: #eee; }
.ncn-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.news-card-new:hover .ncn-img img { transform: scale(1.06); }
.ncn-noimg { width:100%;height:100%;display:flex;align-items:center;justify-content:center;color:#ccc;font-size:2.5rem;background:#f5f5f5; }
.ncn-type {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 12px; border-radius: 20px;
  font-family: 'Inter', sans-serif;
}
.ncn-type.news  { background: var(--gold); color: var(--navy-dark); }
.ncn-type.event { background: var(--navy); color: #fff; }
.ncn-date-strip {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 18px 0;
}
.ncn-date-box {
  display: flex; flex-direction: column; align-items: center;
  background: var(--gold); border-radius: 8px;
  padding: 8px 12px; min-width: 52px; flex-shrink: 0;
}
.ncn-day { font-size: 1.3rem; font-weight: 800; color: var(--navy-dark); line-height: 1; font-family: 'Barlow', sans-serif; }
.ncn-mon { font-size: 10px; font-weight: 700; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Inter', sans-serif; }
.ncn-venue { font-size: 12.5px; color: #888; font-family: 'Inter', sans-serif; font-weight: 500; }
.ncn-body { padding: 12px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.ncn-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; font-family: 'Barlow', sans-serif; }
.ncn-excerpt { font-size: 13.5px; color: #777; line-height: 1.7; flex: 1; margin-bottom: 12px; }
.ncn-readmore { font-size: 13px; font-weight: 700; color: var(--navy); font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.news-card-new:hover .ncn-readmore { gap: 8px; color: var(--gold-dark); }

/* ===== OFFICE BEARERS SECTION ===== */
.home-office-bearers { background: #f8f9fc; }

.ob-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(26,93,173,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid transparent;
}
.ob-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(26,93,173,0.13);
  border-left-color: var(--gold);
}
.ob-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,93,173,0.15);
}
.ob-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.ob-photo-placeholder {
  width: 100%; height: 100%;
  background: #f0f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aac;
  font-size: 2rem;
}
.ob-info { flex: 1; }
.ob-name {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.ob-position {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Nav buttons */
.ob-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.ob-prev, .ob-next {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.2s;
}
.ob-prev:hover, .ob-next:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: scale(1.08);
}

/* ===== MEMBERS & OFFICE BEARERS SLIDER ===== */
.home-members { background: #f0f4fb; }
.member-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26,93,173,0.09);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: stretch;
  border-left: 5px solid var(--gold);
  min-height: 160px;
}
.member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,93,173,0.15);
}
.member-card-top {
  width: 140px;
  flex-shrink: 0;
  overflow: hidden;
  background: #dde6f5;
  position: relative;
}
.member-card-top img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.member-photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #a0b4d0; font-size: 3.5rem;
  background: #dde6f5;
}
.member-life-badge {
  position: absolute;
  bottom: 6px; left: 0; right: 0;
  text-align: center;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 10px; font-weight: 800;
  padding: 4px 0;
  letter-spacing: 0.5px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}
.member-card-bottom {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 1;
}
.member-name {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--navy); margin: 0;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.member-desig {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}
.member-phone {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px; font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 2px;
  transition: color 0.2s;
}
.member-phone i { color: var(--gold-dark); font-size: 11px; }
.member-phone:hover { color: var(--gold-dark); }

/* ===== MEMBER CARD MOBILE RESPONSIVE ===== */
@media (max-width: 576px) {
  .member-card {
    min-height: 120px;
  }
  .member-card-top {
    width: 100px;
  }
  .member-card-bottom {
    padding: 12px 14px;
    gap: 4px;
  }
  .member-name { font-size: 0.85rem; }
  .member-desig { font-size: 10px; }
  .member-phone { font-size: 12px; }
}

.member-address {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #888;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.4;
  margin-top: 2px;
}
.member-address i { color: var(--gold-dark); font-size: 10px; margin-top: 2px; flex-shrink: 0; }

/* Members page extras */
.members-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.mstat { text-align: center; }
.mstat-num {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}
.mstat-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
}
.member-profession {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}
.member-profession i { color: var(--navy); font-size: 10px; }
.member-since {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.member-since i { color: var(--gold-dark); font-size: 10px; }

/* ===== CHARITY BOX ===== */
.charity-box {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(245,197,24,0.5);
  border-radius: 14px;
  padding: 28px 26px;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 2;
}
.charity-icon {
  width: 50px; height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-dark);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.charity-box h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.charity-details { display: flex; flex-direction: column; gap: 12px; }
.charity-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.charity-row:last-child { border-bottom: none; padding-bottom: 0; }
.charity-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Inter', sans-serif;
  min-width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
}
.charity-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}


/* ===== HALL BOOKING RESPONSIVE ===== */
@media (max-width: 991px) {
  .hall-big-calendar { margin-bottom: 24px; }
}
@media (max-width: 767px) {
  .hall-cal-section { padding-top: 30px !important; padding-bottom: 20px !important; }
  .hbc-header { padding: 12px 14px; }
  .hbc-title h4 { font-size: 1rem; }
  .hbc-grid { padding: 8px 4px 6px; gap: 2px; }
  .hbc-day-name { font-size: 10px; padding: 5px 0; letter-spacing: 0; }
  .hbc-day { border-radius: 6px; }
  .hbc-day span { font-size: 12px; }
  .hbc-nav { width: 32px; height: 32px; font-size: 11px; }
  .hbc-legend { gap: 10px; padding: 10px 12px 14px; flex-wrap: wrap; justify-content: center; }
  .hbc-leg { font-size: 11.5px; }
  .hall-form-header { padding: 18px; }
  .hall-form-body { padding: 16px; }
  .hall-form-body .form-control,
  .hall-form-body .form-select { font-size: 14px; }
  .hf-contact { gap: 8px; }
  .hf-contact-item { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .hbc-day-name { font-size: 9px; }
  .hbc-day span { font-size: 11px; }
  .hbc-grid { gap: 1px; padding: 6px 3px; }
  .hall-form-body { padding: 12px; }
}