/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-color);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
  }

  .nav-links a {
    padding: 1rem;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
} 