/* Top Info Bar Styles */
.top-info-bar {
  background-color: #f8f9fa;
  font-size: 0.9rem;
}

.top-info-bar .info-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-info-bar a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.top-info-bar a:hover {
  color: #1e88e5;
}

.top-info-bar .social-icons {
  display: flex;
  gap: 0.75rem;
}

.top-info-bar .social-icons a {
  color: #666;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.top-info-bar .social-icons a:hover {
  color: #1e88e5;
}

/* Header Styles */
.main-navbar {
  background: linear-gradient(90deg, #eaffd0 0%, #b2fefa 100%);
}

.navbar-brand img {
  background: #fff;
  padding: 2px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-link {
  position: relative;
  color: #333 !important;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #1e88e5 !important;
}

.nav-link.active {
  color: #1e88e5 !important;
}

.nav-underline {
  position: relative;
}

.nav-underline::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #1e88e5;
  transition: width 0.3s;
}

.nav-link:hover .nav-underline::after,
.nav-link.active .nav-underline::after {
  width: 100%;
}

/* Footer Styles */
.site-footer {
  background: #f1f3f6;
  color: #222;
}

.footer-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #1e88e5;
}

.footer-social-link {
  color: #666;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: #1e88e5;
}

.footer-bottom {
  background: #1e1e2f;
  color: #cccccc;
  font-size: 14px;
  padding: 12px 0;
  border-top: 1px solid #ddd;
} 