/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header and Navigation */
.map-nav {
  position: relative;
  display: flex;                
  align-items: center;          
  justify-content: space-between;
  background-color: #f7fafc;
  padding: 3rem 0;
  border-bottom: 2px solid #e2e8f0;
}

.logo img {
  height: 7.5rem;   /* adjust size of logo */
  width: auto;    /* keep proportions */
}

.nav-wrapper {
  position: relative; /* so dotted path stays under nav only */
}

.nav-list {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.nav-item {
  text-align: center;
  position: relative;
  flex-grow: 1;
  padding-bottom: 0.5rem;
}

.nav-link {
  display: block;
  font-weight: 600;
  color: #4a5568;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-item:hover .nav-link {
  color: #2b6cb0;
}

.nav-pin-container {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 40px;
  height: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-pin-svg {
  color: #2b6cb0;
  filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.1));
}

.nav-item.active .nav-pin-container {
  opacity: 1;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #3b82f6;
  border-radius: 50%;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dotted-path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Content Area */
.content {
  flex-grow: 1;
}
