/* footer.css */

.contact-section {
  background-color: #111;
  color: white;
  padding: 60px 20px;
  margin-top: 80px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  font-family: "Syne Mono", monospace;
}

.contact-wrapper h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-details p {
  margin: 5px 0;
  font-size: 16px;
}

.contact-description {
  margin-top: 20px;
  font-size: 15px;
  opacity: 0.8;
}

.socials {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.socials a:hover {
  border-bottom: 1px solid white;
}

.footer-bottom {
  margin-top: 40px;
  font-size: 14px;
  opacity: 0.6;
}
