/* MEDIA QUERIES */

@media screen and (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 6rem;
    gap: 2.5rem;
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-stats {
    flex-direction: row;
    gap: 1rem;
  }

  .stat-card { flex: 1; }

  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-card:nth-child(even) {
    direction: ltr;
  }

  .project-info {
    padding: 1.5rem;
  }

  .project-info p {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .about-stats {
    flex-direction: column;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

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

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