/* =============== RESPONSIVE STYLES =============== */

/* Medium devices - Tablets */
@media screen and (min-width: 768px) {
  .services-grid,
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
  }
}

/* Large devices - Desktops */
@media screen and (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
  .desktop-nav {
    display: block;
  }

  .desktop-nav .nav-list {
    display: flex;
    gap: 35px;
  }

  .services-grid,
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-img {
    height: 280px;
  }
}

/* Extra Large */
@media screen and (min-width: 1200px) {
  .portfolio-grid {
    max-width: 1300px;
  }
}

/* Mobile Navigation */
.mobile-nav-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.mobile-nav-modal.active {
  display: flex;
}

/* Hero Responsive */
@media screen and (min-width: 768px) {
  .hero {
    padding: 90px 40px;
  }
}

@media screen and (min-width: 992px) {
  .hero {
    gap: 90px;
  }
}
