
/*_________________________________________*/
.wave {
    margin-top: 165px;
}

div.waves{
    width: 100%;
    transform: rotate(0);
    position: absolute;
    z-index: 99;
  }
  .header{
    font-family: sans-serif;
    text-align: center;
    color: #f3f3f3;
  }
  .header h2{
    background: linear-gradient(90deg, #eee 0%, #eee 50%, #eee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    
  }
  .header a{
    text-decoration: none;
    background: linear-gradient(90deg, #eee 0%, #eee 50%, #eee 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    
  }
  
  svg{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    animation-name: move-left;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
  }
  
  /*_________________________________________*/



/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Footer Styles */
.footer {
  padding: 40px 0;
  background-color: #f3f4f6; /* Light mode background */
}

.dark-mode .footer {
  background-color: #1f2937; /* Dark mode background */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-section {
      text-align: left;
  }
}

.footer-logo {
  width: 150px;
  margin-bottom: 24px;
}

.footer-description {
  line-height: 1.6;
  color: #4b5563; /* Light mode text color */
}

.dark-mode .footer-description {
  color: #d1d5db; /* Dark mode text color */
}

.footer-heading {
  font-size: 1.125rem; /* text-lg equivalent */
  margin-bottom: 16px;
  color: #1f2937; /* Light mode heading color */
}

.dark-mode .footer-heading {
  color: #f3f4f6; /* Dark mode heading color */
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .contact-item {
      justify-content: flex-start;
  }
}

.contact-icon {
  color: #007bff; /* Light mode icon color */
}

.dark-mode .contact-icon {
  color: #60a5fa; /* Dark mode icon color */
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .social-links {
      justify-content: flex-start;
  }

  .social-link {
    width: auto;
    max-width: none;
  }
}

.social-link {
  background-color: #e5e7eb; /* Light mode background */
  border-radius: 50%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dark-mode .social-link {
  background-color: #374151; /* Dark mode background */
}

.social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icon {
  font-size: 1.5rem; /* text-2xl equivalent */
  color: #007bff; /* Light mode icon color */
}

.dark-mode .social-icon {
  color: #60a5fa; /* Dark mode icon color */
}

/* Footer Bottom Styles */
.footer-bottom {
  padding: 16px;
  background-color: #1f2937; /* Light mode background */
  color: #ffffff; /* Light mode text color */
}

.dark-mode .footer-bottom {
  background-color: #111827; /* Dark mode background */
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem; /* text-sm equivalent */
}

.copyright-icon {
  font-size: 1.125rem; /* text-lg equivalent */
}

.dev-coder-link {
  color: #a31f38; /* Custom color */
  text-decoration: none;
}

li.contact-item a {
  color: #000;
}

.dark-mode li.contact-item a {
  color: #fff;
}

.dev-coder-link:hover {
  text-decoration: underline;
}