/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #0a0f2c;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: underline;
  font-size: 1.125rem;
  color: #0a0f2c;
  transition: color 0.3s ease;
}

.contact-btn {
  text-decoration: none;
  background-color: #2d9cdb;
  color: #ffffff;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #1992c4;
}

/* Coming Soon Center */
.coming-soon {
  height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  text-align: center;
}

.coming-soon h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #0a0f2c;
}

/* Footer CTA */
.footer-cta {
  background-color: #0a0f2c;
  color: #ffffff;
  text-align: center;
  padding: 5rem 2rem;
}

.footer-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.footer-content .cta {
  background-color: #2d9cdb;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.footer-content .cta:hover {
  background-color: #1992c4;
}

.footer-contact {
  margin-top: 2rem;
  font-size: 1rem;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .coming-soon h1 {
    font-size: 2rem;
  }

  .footer-content h2 {
    font-size: 2rem;
  }

  .footer-content .cta {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
  }

  .footer-contact {
    font-size: 0.9rem;
  }
}

/* Default: show desktop, hide mobile */
.desktop-header {
  display: block;
}

.mobile-header {
  display: none;
}

/* Mobile Header Styling */
@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: block;
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
  }

  .mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-logo {
    height: 28px;
  }

  .hamburger {
    font-size: 1.75rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #0a0f2c;
  }

  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }

  .mobile-nav a {
    color: #0a0f2c;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
  }

  .mobile-nav.show {
    display: flex;
  }
}

