/* contactinfo.css */

/* ============================================
   LAYOUT
   ============================================ */
.contact-page {
  padding-top: 70px;
  min-height: 100vh;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

/* ============================================
   HERO
   ============================================ */
.contact-hero {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.25px;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: #999;
  line-height: 1.75;
}

/* ============================================
   SECTIONS
   ============================================ */
.contact-section {
  margin-bottom: 3rem;
}

.contact-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
}

/* ============================================
   CONTACT CARDS
   Used for both tickets and email rows.
   ============================================ */

/* Email contacts list */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(180, 22, 22, 0.08);
  border: 1px solid rgba(180, 22, 22, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b41616;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: rgba(180, 22, 22, 0.12);
  border-color: rgba(180, 22, 22, 0.25);
}

.contact-card-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.contact-card-address {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b41616;
  margin-bottom: 0.5rem;
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
}

.contact-card-body p {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   COMMUNITY LINK CARDS
   ============================================ */
.contact-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease,
              transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-link-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-link-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact-link-card--discord .contact-link-icon {
  background: rgba(88, 101, 242, 0.08);
  border-color: rgba(88, 101, 242, 0.15);
  color: #5865f2;
}

.contact-link-card--discord:hover .contact-link-icon {
  background: rgba(88, 101, 242, 0.12);
  border-color: rgba(88, 101, 242, 0.25);
}

.contact-link-card:not(.contact-link-card--discord):hover .contact-link-icon {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.contact-link-body {
  flex: 1;
  min-width: 0;
}

.contact-link-body h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.contact-link-body p {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
  line-height: 1.5;
}

.contact-link-arrow {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.contact-link-card:hover .contact-link-arrow {
  color: rgba(255, 255, 255, 0.5);
  transform: translateX(3px);
}

/* ============================================
   NOTICE
   ============================================ */
.contact-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}

.contact-notice svg {
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-notice p {
  font-size: 0.825rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.contact-notice a {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.15);
  transition: color 0.2s ease;
}

.contact-notice a:hover {
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .contact-container {
    padding: 2.5rem 1.5rem 4rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 1.75rem;
  }
}
