/* Base styles for a clean, professional look */
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: #f8fafc;
  color: #1e293b;
  line-height: 1.5;
}

/* Navbar – now white */
.navbar {
  background-color: #ffffff;
  padding: 0.75rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* subtle shadow for depth */
  border-bottom: 1px solid #eaeef2;
}

/* Navbar container */
.nav-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 60px;         /* slightly smaller for better fit on white */
  width: auto;
  display: block;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Links container */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;            /* increased spacing for cleaner look */
  margin: 0;
  padding: 0;
}

/* Individual link items */
.nav-links li {
  position: relative;   /* for pseudo‑element positioning */
}

/* Link styles */
.nav-links a {
  color: #1e293b;       /* dark text on white background */
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;    /* vertical padding for click area */
  display: inline-block;
  transition: color 0.2s ease;
}

/* Creative hover effect: sliding underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00bcd4;  /* accent color */
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #00bcd4;       /* text changes to accent on hover */
}

.nav-links a:hover::after {
  width: 100%;          /* underline expands fully */
}

/* Optional: active link style (if you want to mark current page) */
.nav-links a.active {
  color: #00bcd4;
}

.nav-links a.active::after {
  width: 100%;
}
