/* ======================================================
   CONTACT.CSS – CONTACT PAGE ONLY
====================================================== */

.contact-page {
  max-width: 720px;
}

/* Card */
.contact-card {
  background-color: var(--bg-surface);
  padding: 40px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

/* Subtitle */
.subtitle {
  margin-top: 6px;
  color: var(--text-muted);
}

/* Contact list */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 20px;
}

/* Links */
.contact-list a {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 600;
  color: var(--primary);
}

/* Hover */
.contact-list a:hover {
  border-color: var(--primary);
  text-decoration: underline;
}

/* Platform hint colors (subtle) */
a[href*="youtube"]:hover { color: #ff0000; }
a[href*="whatsapp"]:hover,
a[href*="wa.me"]:hover { color: #25d366; }
a[href*="t.me"]:hover { color: #0088cc; }
a[href*="instagram"]:hover { color: #e1306c; }

/* Groups */
.group-section {
  margin-top: 36px;
  padding: 24px;
  background-color: var(--bg-page);
  border-left: 5px solid #25d366;
  border-radius: 14px;
}

.group-section a {
  margin-top: 10px;
  display: inline-block;
}

/* Email */
.email-section {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.email-link {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-card {
    padding: 24px;
  }
}
