/* Контейнер двух колонок */
.contact-container {
  display: flex;
  max-width: 1100px;
  margin: 50px auto;
  gap: 50px;
  padding: 0 20px;
  color: #eee;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Левая колонка - фиксированная ширина, вертикальный стек */
.left-column {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Аватар */
.avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00bcd4;
  box-shadow: 0 0 20px #00bcd4aa;
}

/* Обертка для контактов, соцсетей, портфолио */
.contacts-social-portfolio {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Заголовки разделов */
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #00bcd4;
  margin-bottom: 20px;
  text-align: center;
  user-select: none;
}

/* Контактные данные */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(0, 188, 212, 0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: inset 0 0 10px #00bcd4aa;
}

.contact-item-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #00bcd4;
}

.contact-link {
  color: #66eaff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Социальные ссылки */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(0, 188, 212, 0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: inset 0 0 10px #00bcd4aa;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #66eaff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  user-select: none;
  transition: color 0.2s;
}

.social-link:hover {
  color: #00bcd4;
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Правая колонка - занимает оставшееся пространство */
.right-column {
  flex: 1;
  background: rgba(0, 188, 212, 0.1);
  padding: 36px 48px;
  border-radius: 16px;
  box-shadow: inset 0 0 20px #00bcd4cc;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Форма обратной связи */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Поля формы */
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255 255 255 / 0.1);
  color: #eee;
  resize: vertical;
  box-shadow: inset 0 0 8px #00bcd4aa;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: rgba(0, 188, 212, 0.15);
  box-shadow: 0 0 14px #00bcd4;
}

/* Кнопка отправить */
.form-submit-button {
  background: #00bcd4;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s;
}

.form-submit-button:hover {
  background: #0097a7;
}

/* Инфо поддержки */
.support-info-section p {
  color: #bbb;
  font-size: 0.95rem;
  line-height: 1.4;
  user-select: none;
}

.support-email-link {
  color: #66eaff;
  text-decoration: none;
}

.support-email-link:hover {
  text-decoration: underline;
}
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0; /* ниже всего */
  pointer-events: none; /* клики проходят сквозь */
}

#particles-js canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
/* Адаптив для мобильных */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    padding: 20px;
  }
  .left-column {
    flex: none;
    width: 100%;
    align-items: center;
  }
  .contacts-social-portfolio {
    width: 100%;
  }
  .right-column {
    width: 100%;
    padding: 28px 20px;
  }
}

