/* ================================
   Responsive Styles
   ================================ */

/* Mobile First (Default) */
body {
  font-size: 16px;
  line-height: 1.6;
}

/* Navigation (mobile toggle menu) */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: #000;
  padding: 15px;
  position: absolute;
  top: 60px;
  right: 20px;
  border-radius: 10px;
}

.navbar.active ul {
  display: flex;
}

/* Tablet */
@media (min-width: 768px) {
  .navbar ul {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    gap: 20px;
  }

  .navbar-toggle {
    display: none;
  }

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

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .hero {
    height: 100vh;
    background-attachment: fixed;
  }

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

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

  .about {
    display: flex;
    align-items: center;
    gap: 40px;
  }
}
