/* Responsiveness */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .about {
    flex-direction: column;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--color-black-graphite);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section {
    padding: 4rem 5%;
  }

  .masonry-grid {
    column-count: 2;
  }

  .cta h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .masonry-grid {
    column-count: 1;
  }
  
  .cta h2 {
    font-size: 2rem;
  }
  
  .nav-links {
    width: 100%;
  }
}