/* Navigation Styles */
.nav-container {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* Explicit height */
  flex-wrap: wrap;
}

.nav-logo-container {
  display: flex;
  align-items: center;
  height: 100px;
}

.nav-logo {
  height: 100px; /* Match container height */
  width: auto;
  min-height: 100px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #4a5568;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #f687b3;
}

/* Button Styles */
.cta-button {
  display: inline-block;
  background-color: #e11d48;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #be123c;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
}

.mobile-menu.active {
  display: block;
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  
  .mobile-menu-btn {
      display: block;
  }
  
  .mobile-menu.active {
      padding: 1rem;
  }
  
  .mobile-menu a {
      display: block;
      padding: 0.5rem 0;
      color: #4a5568;
      text-decoration: none;
  }
  
  .mobile-menu a:hover {
      color: #f687b3;
  }
}