/* ===============================
   GLOBAL RESPONSIVE FIXES
================================= */

@media (max-width: 1200px) {
  .framer-1pefgc8 {
    padding: 0 20px;
  }
}

/* ===============================
   TABLET (<= 992px)
================================= */

@media (max-width: 992px) {

  /* NAVIGATION */
  .framer-1pefgc8 {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .framer-15vqci1 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .framer-qqdj14-container img {
    width: 180px;
  }

  /* HERO TEXT */
  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-sub p {
    font-size: 1rem;
    text-align: center;
  }

  /* FOOTER */
  .footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer p {
    text-align: center;
  }
}

/* ===============================
   MOBILE (<= 768px)
================================= */

@media (max-width: 768px) {

  /* NAVBAR STACK */
  .framer-1pefgc8 {
    flex-direction: column;
    padding: 10px;
  }

  .framer-15vqci1 {
    flex-direction: column;
    gap: 10px;
  }

  .framer-text a {
    font-size: 14px;
  }

  /* LOGO */
  .framer-qqdj14-container img {
    width: 150px;
  }

  /* HERO SECTION */
  .hero {
    height: 100vh;
    padding: 20px;
  }

  .hero-inner {
    text-align: center;
    padding: 0 10px;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.3;
  }

  .hero-sub {
    justify-content: center;
  }

  .hero-sub p {
    font-size: 0.9rem;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  /* SLIDER IMAGE */
  .hero-bg img {
    object-fit: cover;
  }

  /* REMOVE SIDE ELEMENTS */
  .plus-grid {
    display: none;
  }

  /* FOOTER */
  .footer {
    padding: 10px;
    font-size: 0.8rem;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }
}

/* ===============================
   SMALL MOBILE (<= 480px)
================================= */

@media (max-width: 480px) {

  .hero-title {
    font-size: 1.6rem !important;
  }

  .hero-sub p {
    font-size: 0.8rem !important;
  }

  .framer-text a {
    font-size: 13px !important;
  }

  .framer-qqdj14-container img {
    width: 130px !important;
  }

  .footer {
    font-size: 0.7rem;
  }
}
/* ===============================
   HAMBURGER ICON
================================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

/* ===============================
   MOBILE NAV
================================= */

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;

    background: rgba(0, 20, 40, 0.95);
    backdrop-filter: blur(12px);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;

    transition: 0.4s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 18px;
    color: #fff;
  }
}

/* ===============================
   ANIMATION (X ICON)
================================= */

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {

  /* FORCE OVERRIDE */
  #navMenu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 75% !important;
    height: 100vh !important;

    background: rgba(0, 20, 40, 0.98) !important;
    backdrop-filter: blur(12px);

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;

    gap: 25px !important;

    transition: 0.4s ease !important;
    z-index: 9999 !important;
  }

  #navMenu.active {
    right: 0 !important;
  }

}
/*#navMenu {
  background: red !important;
}*/
