/* up to tablets and larger phones */
@media (max-width: 768px) {
  .hero-title,
  .hero-title1 {
    font-size: 3rem;
  }
  .hero__bg-video {
    height: 50rem;
    margin-top: -100px;
  }
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image {
    order: -1;
  }

  /* mobile nav/menu */
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    flex-direction: column;
    background: rgba(26, 42, 58, 0.95);
    backdrop-filter: blur(10px);
    width: 70%;
    height: calc(100vh - 80px);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }
  .nav-menu.active {
    right: 0;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-content {

    margin-top: 60px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .btn-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .btn-secondary {
    margin-left: 0;
  }
}
