/* ===== MAIN CONTENT ===== */
.main-content {
  padding-top: 70px; /* Account for fixed navigation */
  min-height: 100vh;
  background: var(--background-primary);
  animation: fadeInUp 1s ease-out;
}

/* ===== CONTACT HEADER ===== */
.contact-header {
  margin-bottom: var(--spacing-3xl);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: var(--spacing-3xl) 0;
}

.title {
  font-size: var(--font-size-4xl);
  font-weight: 300;
  color: var(--text-primary);
  margin: 0;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* ===== SOCIAL LINKS ===== */
.social-links {
  margin-bottom: var(--spacing-3xl);
  animation: fadeInUp 1s ease-out 0.9s both;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-2xl);
  padding: var(--spacing-2xl) 0;
}

/* ===== SOCIAL ICONS ===== */
.social-icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all var(--transition-normal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.8s ease-out both;
}

.social-icon:nth-child(1) {
  animation-delay: 0.2s;
}

.social-icon:nth-child(2) {
  animation-delay: 0.4s;
}

.social-icon:nth-child(3) {
  animation-delay: 0.6s;
}

.social-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.social-icon circle {
  stroke-dasharray: 150;
  transition: all var(--transition-normal);
}

.social-icon i {
  color: var(--text-primary);
  font-size: var(--font-size-2xl);
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

/* ===== INSTAGRAM ===== */
.social-icon.instagram:hover {
  background-color: #e60073;
  box-shadow: 0 0 20px rgba(230, 0, 115, 0.5);
  transform: translateY(-4px);
}

.social-icon.instagram:hover circle {
  stroke-dasharray: 220;
  stroke: #e60073;
}

.social-icon.instagram:hover i {
  color: var(--text-primary);
}

/* ===== EMAIL ===== */
.social-icon.email:hover {
  background-color: #01882a;
  box-shadow: 0 0 20px rgba(1, 136, 42, 0.5);
  transform: translateY(-4px);
}

.social-icon.email:hover circle {
  stroke-dasharray: 220;
  stroke: #01882a;
}

.social-icon.email:hover i {
  color: var(--text-primary);
}

/* ===== LINKEDIN ===== */
.social-icon.linkedin:hover {
  background-color: #3a1af1;
  box-shadow: 0 0 20px rgba(58, 26, 241, 0.5);
  transform: translateY(-4px);
}

.social-icon.linkedin:hover circle {
  stroke-dasharray: 220;
  stroke: #3a1af1;
}

.social-icon.linkedin:hover i {
  color: var(--text-primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--background-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--spacing-xl) 0;
  text-align: center;
  margin-top: var(--spacing-3xl);
}

.footer p {
  color: var(--text-muted);
  font-size: var(--font-size-sm);
  margin: 0;
}

/* ===== UTILITY CLASSES ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .title {
    font-size: var(--font-size-3xl);
  }
  
  .social-icons {
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) 0;
  }
  
  .social-icon {
    width: 70px;
    height: 70px;
  }
  
  .social-icon i {
    font-size: var(--font-size-xl);
  }
}

@media (max-width: 480px) {
  .title {
    font-size: var(--font-size-2xl);
  }
  
  .social-icons {
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
  }
  
  .social-icon {
    width: 60px;
    height: 60px;
  }
  
  .social-icon i {
    font-size: var(--font-size-lg);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .main-content,
  .contact-header,
  .title,
  .social-links,
  .social-icon {
    animation: none;
  }
  
  .social-icon:hover {
    transform: none;
  }
}

/* ===== FOCUS STYLES ===== */
.social-icon:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .nav-container {
    display: none;
  }
  
  .main-content {
    padding-top: 0;
  }
  
  .title {
    color: #000;
  }
  
  .social-icon {
    border: 1px solid #000;
    background: #fff;
  }
  
  .social-icon i {
    color: #000;
  }
} 