/* ================================================
   Pulsoid Contact Page Styles
   ================================================ */

:root {
  --brand-teal: #07aba1;
  --brand-teal-light: #27bacc;
  --brand-teal-glow: rgba(7, 171, 161, 0.35);
  --background: #0a0a0e;
  --layer-1: #101015;
  --layer-2: #16161c;
  --border-1: #23232b;
  --text-primary: #ffffff;
  --text-secondary: #d4d4d8;
  --text-muted: #b0b0b8;
  --font-family: 'Roboto', sans-serif;
}

/* ================================================
   Base
   ================================================ */

.contact-page {
  background: var(--background);
  font-family: var(--font-family);
  color: var(--text-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   Section
   ================================================ */

.contact-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #0a0a0e 0%, #101015 50%, #0a0a0e 100%);
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ================================================
   Title & Subtitle
   ================================================ */

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px;
}

.contact-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 40px;
}

/* ================================================
   Email
   ================================================ */

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-teal);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.25s ease;
}

.contact-email:hover {
  color: var(--brand-teal-light);
}

.contact-email img {
  height: 40px;
}

/* ================================================
   Social Buttons
   ================================================ */

.contact-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  min-width: 200px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--text-primary);
}

.contact-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
  color: var(--text-primary);
}

.contact-button--x {
  background: #000000;
  border: 1px solid #333;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.contact-button--x:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

.contact-button--discord {
  background: #5865f2;
  box-shadow: 0 4px 16px rgba(88,101,242,0.3);
}

.contact-button--discord:hover {
  box-shadow: 0 6px 24px rgba(88,101,242,0.4);
}

.contact-button--youtube {
  background: #ff0000;
  box-shadow: 0 4px 16px rgba(255,0,0,0.3);
}

.contact-button--youtube:hover {
  box-shadow: 0 6px 24px rgba(255,0,0,0.4);
}

/* ================================================
   FAQ Link
   ================================================ */

.contact-faq-link {
  display: inline-block;
  padding: 16px 52px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, #059e95 100%);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px var(--brand-teal-glow);
}

.contact-faq-link:hover {
  background: linear-gradient(135deg, var(--brand-teal-light) 0%, var(--brand-teal) 100%);
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: 0 6px 30px var(--brand-teal-glow);
  transform: translateY(-1px);
}

/* ================================================
   Responsive: Tablet (768px+)
   ================================================ */

@media (min-width: 768px) {
  .contact-title {
    font-size: 42px;
  }

  .contact-socials {
    flex-direction: row;
    justify-content: center;
  }
}
