/* ============================================
   CONTACT PAGE - PAGE-SPECIFIC STYLESHEET
   ============================================
   Common styles (fonts, nav, footer) in common.css
   This file contains only contact page-specific styles
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero-contact {
  min-height: 35vh;
  margin-top: 0;
  padding: 72px 0 0 0; /* Account for fixed nav height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: white;
}

.hero-contact .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-contact h1 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-contact .hero-tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 80px 5vw;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 50px 40px;
  background: var(--color-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  min-width: 260px;
  flex: 1;
  max-width: 320px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 20, 40, 0.12);
  text-decoration: none;
  border-color: var(--color-brand-light);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: var(--color-brand);
}

.contact-card:hover .contact-card-icon svg {
  color: white;
  stroke: white;
  fill: white;
}

.contact-card-icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-brand);
  transition: all 0.3s ease;
}

.contact-card h2 {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.4em;
  margin-bottom: 8px;
  color: var(--color-text-darker);
}

.contact-card p {
  font-size: 1.1em;
  color: var(--color-muted);
  margin: 0;
}

/* Static card (no hover link effect) */
.contact-card-static {
  cursor: default;
}

.contact-card-static:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}

/* Email link */
.email-link {
  font-size: 1.1em;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  user-select: text;
}

.email-link:hover {
  color: var(--color-brand);
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .hero-contact {
    min-height: 30vh;
  }

  .contact-section {
    padding: 60px 4vw;
  }

  .contact-cards {
    gap: 24px;
  }

  .contact-card {
    padding: 40px 30px;
    min-width: 240px;
  }

  .contact-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .contact-card-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .hero-contact {
    min-height: 28vh;
  }

  .hero-contact h1 {
    font-size: 32px;
  }

  .contact-section {
    padding: 50px 3.5vw;
  }

  .contact-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 300px;
    padding: 36px 24px;
  }
}
