@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0d0d0d;
  color: #eaeaea;
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  flex-direction: column;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;    
  -ms-user-select: none;   
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
  z-index: 1;
  pointer-events: none;
}

.container {
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 2s ease forwards;
}

.logo h1 {
  font-size: 6rem;
  color: #00ffee;
  letter-spacing: 0.2em;
  text-shadow:
    0 0 2px #00ffee,
    0 0 4px #00ffee;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.status {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.subtext {
  font-size: 1rem;
  color: #999;
  opacity: 0.8;
}

footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
  color: #555;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Floating animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-btn {
  position: fixed;
  top: 20px;
  right: 30px;
  background: transparent;
  border: 2px solid #00ffee;
  color: #00ffee;
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 10;
  user-select: none;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #00ffee;
  color: #0d0d0d;
  cursor: pointer;
}

.back-btn {
  top: 20px;
  left: 30px;
  right: auto;
  position: fixed;
  background: #003f3f;
  border: 2px solid #00ffee;
  color: #00ffee;
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 10;
  user-select: none;
  cursor: pointer;
}

.back-btn:hover {
  background-color: #00ffee;
  color: #0d0d0d;
  cursor: pointer;
}

.contact-container {
  max-width: 500px;
  padding: 3rem 1rem;
  text-align: center;
  color: #eaeaea;
  margin: 0 auto;
}

.contact-container h1 {
  color: #00ffee;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item h2 {
  color: #00ffee;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-item a {
  color: #00ffee;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #80fff7;
  text-decoration: underline;
}

/* New navbar buttons: About Us and What We Do */
.nav-btn {
  position: fixed;
  top: 20px;
  background: transparent;
  border: 2px solid #00ffee;
  color: #00ffee;
  padding: 10px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 10;
  user-select: none;
  cursor: pointer;
}

/* Position About Us and What We Do on the right next to Contact */
.nav-btn:nth-of-type(1) {
  right: 170px;
}

.nav-btn:nth-of-type(2) {
  right: 320px;
}

.nav-btn:hover {
  background-color: #00ffee;
  color: #0d0d0d;
}

.container {
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 2s ease forwards;
}


/* Responsive for mobile devices */
@media (max-width: 600px) {
  body {
    padding: 0 1rem;
  }

  .container,
  .contact-container {
    max-width: 100%;
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 3.5rem !important; /* landing page title */
  }

  .contact-btn,
  .back-btn,
  .nav-btn {
    top: 15px;
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  /* On contact page, back button on left */
  .back-btn {
    left: 15px;
    right: auto;
  }

  /* Adjust positions on mobile */
  .nav-btn:nth-of-type(1) {
    right: 110px;
  }

  .nav-btn:nth-of-type(2) {
    right: 190px;
  }

  .contact-btn {
    right: 15px;
  }

  .contact-options {
    gap: 1.5rem;
  }

  .contact-item h2 {
    font-size: 1.2rem;
  }

  .contact-item a {
    font-size: 1rem;
  }

  /* Contact form inputs - if used */
  input,
  textarea {
    font-size: 1rem;
  }
}
