nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-speed) ease;
}

nav .logo {
  height: 30px; /* Reduced from 40px to match client's screenshot */
  display: flex;
  align-items: center;
}

nav .logo img {
  height: 100%;
  width: auto;
  max-width: 120px; /* Added max-width to ensure proper sizing */
  object-fit: contain; /* Ensure the image maintains its aspect ratio */
}

/* Add font styling for navigation */
nav ul li a {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Footer logo text styling */
.footer-logo {
  font-family: var(--font-primary);
  font-weight: 700;
}

/* Footer text styling */
.footer-contact a,
.footer-copyright {
  font-family: var(--font-secondary);
}