
/* ----- SOCIAL ICONS ----- */

.social-row {
  display: flex;
  gap: 14px;
  margin: 16px 0 24px 0;
}

.social-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--primary);       
  border-radius: 50%;

  transition: transform 0.15s ease, opacity 0.15s ease;
}

.social-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--bg);       

}

.social-icon:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}


/* ----- FORM STYLING ----- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;

  max-width: 800px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  margin-top: 6px;
  padding: 10px 14px;

  background: var(--primary);  
  color: #fff;

  border: none;
  border-radius: 6px;

  font-size: 15px;
  cursor: pointer;

  transition: opacity 0.15s ease;
}

.contact-form button:hover {
  opacity: 0.85;
}


/* ----- MOBILE ----- */

@media (max-width: 600px) {
  .social-row {
    gap: 10px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }
}
