/*
============================================
=            Contact Page                  =
============================================
*/
.contact-container {
  max-width: 896px;
  padding: 4rem 2rem;
  margin: 0 auto;
}

/*
============================================
=               Header                     =
============================================
*/
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--togichu-magenta);
  margin-bottom: 1rem;
  font-weight: 800;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #32b8c6;
}

/*
============================================
=       Business Email Section             =
============================================
*/
.email-section {
  background: rgba(255, 20, 147, 0.05);
  border: 2px solid var(--togichu-magenta);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
  transition: all 0.3s ease;
}

.email-section:hover {
  background: rgba(223, 64, 120, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(223, 64, 120, 0.3);
}

.email-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--togichu-pink);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.business-email {
  display: block;
  font-family: var(--font-grotesk);
  font-size: clamp(1rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--togichu-peach);
  text-decoration: none;
  transition: color 0.3s ease;
}

.business-email:hover {
  color: var(--togichu-magenta);
}

/*
============================================
=        Social Media Section              =
============================================
*/
.contact-socials {
  margin-top: 4rem;
}

.contact-socials-title {
  text-align: center;
  font-size: 2rem;
  color: var(--togichu-peach);
  margin-bottom: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.social-grid.animate-on-load {
  opacity: 0;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: rgba(223, 64, 120, 0.05);
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.social-name {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--togichu-peach);
  transition: color 0.3s ease;
  font-weight: 600;
}

.social-card:hover {
  background: rgba(223, 64, 120, 0.1);
  border-color: var(--togichu-magenta);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(223, 64, 120, 0.3);
}

.social-card:hover .social-icon img {
  filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(290deg);
  transform: scale(1.1) rotate(5deg);
}

.social-card:hover .social-name {
  color: var(--togichu-magenta);
}

@media (max-width: 768px) {
  .contact-page {
    padding: 2rem 1rem;
  }

  .email-section {
    padding: 2rem 1.5rem;
  }

  .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .social-card {
    padding: 1.5rem 1rem;
  }

  .social-icon,
  .social-icon img {
    width: 40px;
    height: 40px;
  }
}
