/* ===================================================================
   European Journal of Agricultural Sciences - Main Stylesheet
   Professional Academic Journal Theme
   =================================================================== */

/* ---- CSS Variables ---- */
:root {
  --primary: #1a5632;
  --primary-dark: #0e3a20;
  --primary-light: #2d7a4a;
  --secondary: #c8a951;
  --secondary-light: #dac06f;
  --accent: #1565c0;
  --accent-light: #1e88e5;
  --bg-light: #f8f9fa;
  --bg-cream: #faf8f4;
  --text-dark: #1a1a2e;
  --text-muted: #5a6270;
  --border-color: #dee2e6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Base ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.7;
  background: #ffffff;
  font-size: 15px;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.3; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-light); }

img { max-width: 100%; height: auto; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  letter-spacing: 0.3px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--secondary); }
.top-bar .separator { margin: 0 12px; opacity: 0.3; }
.top-bar-right a { margin-left: 14px; font-size: 15px; }

/* ---- Header / Navbar ---- */
.main-header {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--primary);
}

.journal-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.journal-logo .logo-icon {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.journal-logo .logo-text {
  display: flex;
  flex-direction: column;
}
.journal-logo .logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
}
.journal-logo .logo-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.navbar { padding: 12px 0; }
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 8px 16px !important;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: rgba(26, 86, 50, 0.06);
}
.navbar-nav .nav-link.active {
  font-weight: 600;
}

.btn-submit-paper {
  background: var(--primary);
  color: #fff !important;
  font-weight: 600;
  padding: 8px 22px !important;
  border-radius: 25px;
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.btn-submit-paper:hover {
  background: var(--primary-light);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 86, 50, 0.3);
}

/* ---- Hero Section ---- */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: white;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,170.7C384,181,480,171,576,149.3C672,128,768,96,864,96C960,96,1056,128,1152,138.7C1248,149,1344,139,1392,133.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}
.hero-section .hero-content { position: relative; z-index: 1; }
.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.hero-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 700px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.hero-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}
.hero-badge i { color: var(--secondary); }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 35px;
}
.hero-stat { text-align: center; }
.hero-stat .stat-number { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.hero-stat .stat-label { font-size: 12px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

/* ---- Section Styles ---- */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-light); }
.section-cream { background: var(--bg-cream); }

.section-header {
  text-align: center;
  margin-bottom: 45px;
}
.section-header h2 {
  color: var(--primary-dark);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 18px;
}

/* ---- Article Cards ---- */
.article-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.article-card .article-type {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.article-type.research { background: #e3f2fd; color: #1565c0; }
.article-type.review { background: #f3e5f5; color: #7b1fa2; }
.article-type.editorial { background: #fff3e0; color: #e65100; }
.article-type.short_communication { background: #e8f5e9; color: #2e7d32; }
.article-type.case_study { background: #fce4ec; color: #c62828; }
.article-type.letter { background: #e0f2f1; color: #00695c; }

.article-card h4 { margin-bottom: 8px; }
.article-card h4 a { color: var(--text-dark); }
.article-card h4 a:hover { color: var(--primary); }
.article-card .article-authors {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}
.article-card .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.article-card .article-meta span { display: flex; align-items: center; gap: 4px; }
.article-card .article-abstract {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-actions { margin-top: 15px; display: flex; gap: 10px; flex-wrap: wrap; }
.article-actions .btn { font-size: 13px; padding: 5px 14px; }

/* ---- Board Member Cards ---- */
.board-card, .board-member-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.board-card:hover, .board-member-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.board-member-card.chief {
  border-color: var(--secondary);
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(200, 169, 81, 0.15);
}
.board-card .member-photo, .board-member-card .member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-heading);
  overflow: hidden;
  object-fit: cover;
}
.board-card .member-photo img, .board-member-card .member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-photo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
}
.board-card h4, .board-card h5, .board-member-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary-dark);
}
.board-card .member-title, .board-member-card .member-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.board-card .member-affiliation, .board-member-card .member-affiliation {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
}
.board-card .member-country, .board-member-card .member-country {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.board-card .member-specialization, .board-member-card .member-specialization {
  font-size: 12px;
  color: var(--primary);
  margin-top: 8px;
  font-style: italic;
}
.board-member-card .member-email {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.board-member-card .member-email a { color: var(--accent); }
.board-role-label {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}

/* ---- Announcement Cards ---- */
.announcement-card {
  background: white;
  border-left: 4px solid var(--secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.announcement-card:hover { box-shadow: var(--shadow-md); }
.announcement-card .ann-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.ann-type.call_for_papers { background: #e8f5e9; color: #2e7d32; }
.ann-type.news { background: #e3f2fd; color: #1565c0; }
.ann-type.general { background: #fff3e0; color: #e65100; }
.ann-type.conference { background: #f3e5f5; color: #7b1fa2; }
.ann-type.deadline { background: #fce4ec; color: #c62828; }
.ann-type.important { background: #fce4ec; color: #c62828; }

.announcement-card h5 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 6px; }
.announcement-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }

/* ---- Pricing Box ---- */
.pricing-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: white;
  margin: 30px 0;
}

.pricing-box .price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.pricing-box .currency {
  font-size: 1.5rem;
  font-weight: 600;
}

.pricing-box .amount {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-box .period {
  font-size: 1.1rem;
  opacity: 0.9;
}

.pricing-box .price-note {
  margin-top: 15px;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ---- Callout Box ---- */
.callout-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: 25px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 25px 0;
}

.callout-box h5 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* ---- Sidebar ---- */
.sidebar-widget {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
}
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { padding: 6px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li i { color: var(--primary); margin-right: 8px; width: 16px; }

.journal-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
}
.journal-info-item strong { min-width: 100px; color: var(--text-dark); }
.journal-info-item span { color: var(--text-muted); }

/* ---- Page Header Banner ---- */
.page-header, .page-header-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 50px 0;
  color: white;
  text-align: center;
  position: relative;
}
.page-header::after, .page-header-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
}
.page-header h1, .page-header-banner h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: white;
}
.page-header .breadcrumb, .page-header-banner .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a,
.page-header-banner .breadcrumb-item,
.page-header-banner .breadcrumb-item a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.page-header .breadcrumb-item.active,
.page-header-banner .breadcrumb-item.active { color: rgba(255,255,255,0.95); }
.page-header .breadcrumb-item + .breadcrumb-item::before,
.page-header-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ---- Content Area ---- */
.content-area { padding: 50px 0; }
.content-area h3 { color: var(--primary-dark); margin-bottom: 15px; margin-top: 30px; }
.content-area h3:first-child { margin-top: 0; }
.content-area h4 { color: var(--primary); margin-bottom: 12px; margin-top: 20px; }
.content-area p { margin-bottom: 14px; color: var(--text-dark); }
.content-area ul, .content-area ol { margin-bottom: 14px; padding-left: 24px; }
.content-area li { margin-bottom: 6px; }

/* ---- Forms ---- */
.form-section {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-section .form-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-section .form-control,
.form-section .form-select {
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  transition: var(--transition);
}
.form-section .form-control:focus,
.form-section .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}

/* ---- Buttons ---- */
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 24px;
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 86, 50, 0.25);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  border-radius: 6px;
  font-weight: 500;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-secondary-gold {
  background: var(--secondary);
  border: none;
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 24px;
}
.btn-secondary-gold:hover {
  background: var(--secondary-light);
  transform: translateY(-1px);
}

/* ---- Footer ---- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.site-footer h5 {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.site-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 35px;
  height: 2px;
  background: var(--secondary);
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--secondary); }
.site-footer small { color: rgba(255,255,255,0.6); }
.site-footer small strong { color: rgba(255,255,255,0.8); }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 5px 0; font-size: 14px; }
.footer-links li i { margin-right: 8px; color: var(--secondary); width: 16px; }

.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ---- Search Box ---- */
.search-box {
  position: relative;
  max-width: 500px;
}
.search-box input {
  padding: 12px 20px 12px 45px;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  font-size: 15px;
  width: 100%;
  transition: var(--transition);
}
.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 86, 50, 0.08);
  outline: none;
}
.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}
.stat-item {
  text-align: center;
  padding: 10px;
}
.stat-item .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
}
.stat-item h3 { font-size: 1.8rem; color: var(--primary-dark); margin-bottom: 2px; }
.stat-item p { font-size: 13px; color: var(--text-muted); margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- Utilities ---- */
.text-primary-dark { color: var(--primary-dark) !important; }
.bg-primary-gradient { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.border-primary { border-color: var(--primary) !important; }
.divider { height: 1px; background: var(--border-color); margin: 30px 0; }

/* ---- Alert boxes ---- */
.alert-success {
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  color: #2e7d32;
  border-radius: var(--radius);
}
.alert-danger {
  background: #fce4ec;
  border: 1px solid #f8bbd0;
  color: #c62828;
  border-radius: var(--radius);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero-section { padding: 50px 0 40px; }
  .hero-section h1 { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .top-bar { 
    display: block;
    padding: 6px 0;
    font-size: 11px;
  }
  .top-bar .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
  .top-bar-left, .top-bar-right {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  .top-bar-left span {
    margin: 0 4px;
  }
}
@media (max-width: 768px) {
  .hero-section h1 { font-size: 1.6rem; }
  .hero-tagline { font-size: 1rem; }
  .stats-bar { margin-top: 0; }
  .section { padding: 40px 0; }
  .page-header, .page-header-banner { padding: 30px 0; }
  .page-header h1, .page-header-banner h1 { font-size: 1.6rem; }
}

/* ---- Article Detail ---- */
.article-detail-header {
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
  margin-bottom: 30px;
}
.article-detail-header h2 { color: var(--primary-dark); margin-bottom: 12px; font-size: 1.7rem; }
.article-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
  font-size: 14px;
  color: var(--text-muted);
}
.article-detail-meta span { display: flex; align-items: center; gap: 6px; }
.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}
.article-keywords .keyword {
  background: #e8f5e9;
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* ---- Archive accordion ---- */
.archive-volume {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.archive-volume-header {
  padding: 18px 24px;
  background: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.archive-volume-header:hover { background: #eef2ee; }
.archive-volume-header h5 { margin: 0; font-family: var(--font-heading); color: var(--primary-dark); }
.archive-issue-list { padding: 0 24px 18px; }
.archive-issue-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.archive-issue-item:last-child { border-bottom: none; }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }

/* ---- Navbar (main-navbar) ---- */
.main-navbar {
  background: var(--primary) !important;
  padding: 0;
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--secondary);
}
.main-navbar .navbar-brand {
  color: white !important;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  padding: 14px 0;
}
.main-navbar .navbar-brand i { color: var(--secondary); }
.main-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 16px 14px !important;
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: white !important;
  background: rgba(255,255,255,0.1);
}
.main-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 8px;
  padding: 8px 0;
  margin-top: 0;
}
.main-navbar .dropdown-item {
  padding: 8px 20px;
  font-size: 13.5px;
  transition: var(--transition);
}
.main-navbar .dropdown-item:hover {
  background: rgba(26, 86, 50, 0.08);
  color: var(--primary);
}

/* ---- Content Card ---- */
.content-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.content-card h2 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}
.content-card h3 {
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.content-card p {
  color: var(--text-dark);
  line-height: 1.8;
}
.content-card .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---- Styled List ---- */
.styled-list {
  list-style: none;
  padding: 0;
}
.styled-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 14px;
  color: var(--text-dark);
}
.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
