.contact-section {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background: transparent;
  will-change: backdrop-filter;

}

.contact-container {
  max-width: 600px;
  width: 100%;
  color: white;
  text-align: center;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-container p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background-color: #1a1a2e;
  color: white;
  font-size: 1rem;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #cccccc;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;      /* centers the items horizontally */
  align-items: center;          /* vertically center (optional) */
  gap: 1.2rem;                   /* space between <p> elements */
  margin-top: 2rem;
  text-align: center;
  width: 100%;                  /* make sure it's not wider than needed */
}


.contact-info p {
  margin: 0;
  font-size: 1rem;
  max-width: 100%;
  word-wrap: break-word; 
  white-space: normal; /* optional: prevents breaking inside the line */
}
@media (max-width: 600px) {
  .contact-info {
    flex-direction: column;
    align-items: center;       /* was flex-start */
    text-align: center;
    padding: 0 1rem;           /* add some horizontal breathing room */
  }
}




.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;         /* space between icons */
  margin-top: 2.5rem;
  flex-wrap: wrap;   /* allow wrapping when no more space */
}
.social-icons a {
  transition: transform 0.3s ease, filter 0.3s ease;
  margin-right: 20px;
}

.social-icons a:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px #b388ff) drop-shadow(0 0 12px #b388ff);
}

.social-icons img {
  width: 48px;
  height: 48px;
}
