/* =====================================================
   Global Variables and Base Styles
===================================================== */
:root {
  --primary-color: #001f4d; /* Navy Blue */
  --secondary-color: #800020; /* Oxblood Red */
  --light-bg: #f4f6f9;
  --card-bg: #ffffff;
  --accent-bg: #f8d7da;
  --white: #ffffff;
  --dark-accent: #660000;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: var(--light-bg);
}

h1 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

/* =====================================================
   Hero Section
===================================================== */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
}

.hero .btn {
  margin-top: 1.5rem;
}

/* =====================================================
   Board Members Grid
===================================================== */
.board-members {
  padding: 2rem 1rem;
  width: 100%;
}

.board-member-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.board-member-card:hover {
  transform: translateY(-5px);
}

.board-member-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.board-member-body {
  padding: 1.5rem;
  text-align: center;
}

.board-member-name {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.board-member-role {
  font-size: 1.125rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.board-member-bio {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

/* =====================================================
   Contact Button
===================================================== */
.contact-btn {
  background-color: var(--primary-color);
  border: none;
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  background-color: var(--secondary-color);
}

/* =====================================================
   Header Section
===================================================== */
.header {
  background: url('../uploads/img/about1.png') center center;
  background-size: cover;
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.header h1 {
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* =====================================================
   Section Title
===================================================== */
.section-title {
  margin: 2rem 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* =====================================================
   Card Header & List Group
===================================================== */
.card-header {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: bold;
  padding: 1rem;
  text-align: center;
}

.list-group-item {
  border: none;
  border-bottom: 1px solid #dee2e6;
}

.list-group-item:last-child {
  border-bottom: 0;
}

/* =====================================================
   Table Styling (General)
===================================================== */
.table {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.table thead {
  background-color: var(--primary-color);
  color: var(--white);
}

.table th,
.table td {
  vertical-align: middle;
  text-align: center;
}

/* =====================================================
   Manage Article Status Section
===================================================== */
.status-heading {
  color: var(--primary-color);
  text-transform: capitalize;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 5px;
}

.btn-info {
  transition: background-color 0.3s ease;
}

.btn-info:hover {
  background-color: var(--secondary-color);
}

/* =====================================================
   Author List Specific Styling
===================================================== */
.score {
  font-weight: bold;
  color: var(--secondary-color);
}

.articles-link {
  cursor: pointer;
  text-decoration: underline;
  color: var(--primary-color);
}

.articles-link:hover {
  color: var(--secondary-color);
}

/* =====================================================
   Additional Table Styles (if needed)
===================================================== */
.table-fees th,
.table-fees td {
  vertical-align: middle;
  text-align: center;
}

/* =====================================================
   Footer
===================================================== */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  width: 100%;
}
