.contact {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-family: "Rubik Mono One", sans-serif;
  font-size: 2.5rem;
  color: var(--pink);
  text-shadow: 2px 2px 0 var(--purple);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.25rem;
}
/* Social Links Container */
.social-links-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Social Icons */
.social-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(50, 50, 50, 0.5);
}

.youtube-icon {
  background-color: #20e3c2; /* Teal background for YouTube icon */
  color: #333;
}

.facebook-icon {
  background-color: #8469ff; /* Purple background for Facebook icon */
  color: white;
}

.twitter-icon {
  background-color: white; /* White background for Twitter icon */
  color: #333;
}

/* Social Buttons */
.social-button {
  flex: 1;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Rubik Mono One", sans-serif;
  font-size: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0 rgba(50, 50, 50, 0.5);
  text-transform: uppercase;
}

.youtube-button {
  background-color: #ffde00; /* Yellow for YouTube */
  color: #333;
}

.facebook-button {
  background-color: white; /* White for Facebook */
  color: #333;
}

.twitter-button {
  background-color: #ff97ea; /* Pink for Twitter */
  color: #333;
}

.social-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(50, 50, 50, 0.5);
}

/* Contact Info */
.contact-info {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .social-button {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .social-button {
    font-size: 0.8rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-link {
  color: var(--light);
  font-size: 1.5rem;
  transition: color 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid;
  border-radius: 50%;
}

.insta {
  border-color: var(--pink);
}

.insta:hover {
  color: var(--pink);
}

.twitter {
  border-color: var(--blue);
}

.twitter:hover {
  color: var(--blue);
}

.facebook {
  border-color: var(--purple);
}

.facebook:hover {
  color: var(--purple);
}
