/* =============================================
   MEDIA QUERIES — JOSEPH NGIGI KIARIE
   ============================================= */
 
/* TABLET */
@media (max-width: 1024px) {
  #desktop-nav { padding: 0 2.5rem; }
 
  #profile { padding: 80px 2.5rem 4rem; gap: 2.5rem; }
  .hero-title { font-size: clamp(2.8rem, 6vw, 4.5rem); }
  .profile-frame { width: 280px; height: 320px; }
  .tag-1, .tag-2, .tag-3 { display: none; }
 
  #about, #experience, #projects, #contact { padding: 6rem 2.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrap { display: none; }
 
  .skills-grid { grid-template-columns: 1fr 1fr; }
 
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; }
  .project-card.featured .project-card-inner { flex-direction: column; }
  .project-card.featured .project-img-wrap { width: 100%; }
 
  .contact-cards { grid-template-columns: 1fr; }
 
  footer { padding: 2rem 2.5rem; }
}
 
/* MOBILE */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
 
  #desktop-nav { display: none; }
  #hamburger-nav { display: flex; }
 
  #profile {
    flex-direction: column;
    padding: 90px 1.5rem 4rem;
    text-align: center;
    min-height: unset;
    padding-bottom: 4rem;
  }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); align-items: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-links { justify-content: center; }
  .hero-tag { font-size: 0.7rem; }
 
  .profile-frame { width: 200px; height: 220px; }
 
  #about, #experience, #projects, #contact { padding: 5rem 1.5rem; }
 
  .section-title { font-size: 2.2rem; }
 
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
 
  .skills-grid { grid-template-columns: 1fr; }
 
  .projects-grid { grid-template-columns: 1fr; }
 
  .contact-cards { grid-template-columns: 1fr; }
 
  footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 1.25rem; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
}
 
/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-links { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .about-stats { justify-content: center; }
  .project-actions { flex-direction: column; }
  .project-btn { text-align: center; }
}
 