/* Old style look: warm colors + borders + classic feel */
body {
  background: #f4f0e6; /* paper-like */
  font-family: "Times New Roman", Georgia, serif;
  color: #222;
}

/* Top banner */
.top-banner {
  border-bottom: 4px solid #5a3e1b;
}

/* Navbar old style */
.old-navbar {
  background: linear-gradient(#7a4f1d, #5a3e1b);
  border-bottom: 3px solid #2f1f0e;
}

.old-navbar .navbar-brand,
.old-navbar .nav-link {
  color: #fff !important;
}

.old-navbar .nav-link {
  font-weight: 600;
  padding: 10px 14px;
}

.old-navbar .nav-link:hover {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.old-navbar .dropdown-menu {
  border: 2px solid #5a3e1b;
  font-family: Georgia, serif;
}

/* Cards */
.old-card {
  border: 2px solid #5a3e1b;
  border-radius: 0;
  background: #fffdf6;
  box-shadow: 0 2px 0 rgba(0,0,0,0.15);
}

.old-card-header {
  background: #f0d8a8;
  border-bottom: 2px solid #5a3e1b;
  font-weight: 700;
}

/* Slider */
.slider-img {
  height: 360px;
  object-fit: cover;
  border-bottom: 2px solid #5a3e1b;
}

.old-caption {
  background: rgba(90, 62, 27, 0.75);
  padding: 10px;
  border: 1px solid #f0d8a8;
}

/* Notice board */
.notice-board .card-body {
  max-height: 360px;
  overflow: auto;
}

.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li {
  padding: 10px 6px;
  border-bottom: 1px dashed #7a4f1d;
}

.notice-list a {
  text-decoration: none;
  color: #2b1a09;
  font-weight: 600;
}

.notice-list a:hover {
  text-decoration: underline;
}

.notice-date {
  display: inline-block;
  min-width: 55px;
  font-weight: 700;
  color: #7a4f1d;
}

/* Old style button */
.btn-old {
  background: #7a4f1d;
  border: 2px solid #2f1f0e;
  color: #fff;
  border-radius: 0;
  font-weight: 700;
}

.btn-old:hover {
  background: #5a3e1b;
  color: #fff;
}

/* Footer */
.old-footer {
  background: #5a3e1b;
  color: #fff;
  border-top: 4px solid #2f1f0e;
}

.founder-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 3px solid #f0d8a8;
  background: #fff;
}
/* Governing Body page */

.member-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.table-photo{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}
.member-card { transition: transform .2s ease, box-shadow .2s ease; }
.member-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12); }

.member-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
body {
  font-family: Arial, sans-serif;
  background: #f7f9fc;
  margin: 0;
  padding: 20px;
}

.page-title {
  text-align: center;
  color: #003366;
  margin-bottom: 30px;
}

.accordion {
  max-width: 900px;
  margin: auto;
}

details {
  background: #ffffff;
  margin-bottom: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

summary {
  padding: 15px;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
  background: #003366;
  color: #fff;
  border-radius: 6px;
}

details[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

details ul {
  list-style: none;
  padding: 15px 20px;
  margin: 0;
}

details ul li {
  margin-bottom: 8px;
}

details ul li a {
  text-decoration: none;
  color: #003366;
}

details ul li a:hover {
  text-decoration: underline;
}


