/* Fix for footer text color */
.footer {
  background-color: var(--dark);
  color: #d1d5db; /* Lighter gray color for better readability */
}

.footer p {
  color: #d1d5db; /* Ensure paragraph text is visible */
  opacity: 0.9;
}

.footer-about p {
  color: #d1d5db; /* Specifically target the about section text */
  font-size: 1rem;
  line-height: 1.5;
}

/* Make footer links more visible */
.footer-links a {
  color: #d1d5db;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Enhance footer social icons */
.footer-social a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #d1d5db;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Make specific text blue */
.hero h1 {
  color: #3B82F6; /* Blue color for the headline */
  font-weight: 700;
}

.hero p {
  color: #3B82F6; /* Blue color for the description */
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* For the footer logo text */
.footer-logo h2 {
  color: #3B82F6; /* Blue color */
}

/* For the "Define What You Want" text in other pages */
.footer-logo p {
  color: #3B82F6; /* Blue color */
}