@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;700&family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --primary-blue: #003366;
  --primary-red: #CC0000;
  --accent-gold: #F2A900;
  --soft-gray: #F8FAFC;
  --deep-slate: #1E293B;
}

body {
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
  background-color: var(--soft-gray);
  color: var(--deep-slate);
}

h1, h2, h3, h4, .font-serif {
  font-family: 'Roboto Slab', serif;
}

/* Favicon Styling for Browser Tabs (Conceptual CSS for clarity) */
link[rel="icon"] {
  border-radius: 50%;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.news-card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.news-card-hover:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.news-card-hover img {
  transition: transform 0.8s ease;
}

.news-card-hover:hover img {
  transform: scale(1.1);
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #002244;
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.bg-pattern {
  background-image: radial-gradient(var(--primary-blue) 0.5px, transparent 0.5px);
  background-size: 30px 30px;
  opacity: 0.03;
}

.category-badge {
  background: linear-gradient(90deg, var(--primary-red), #990000);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(204, 0, 0, 0.3);
}

.pagination-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.active-page {
  background-color: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 10px 15px -3px rgba(0, 51, 102, 0.4);
}