@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Jura:wght@300..700&family=Michroma&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=WDXL+Lubrifont+SC&display=swap");

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

html {
  scroll-behavior: smooth;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1;}
}


#particles-js {
  animation: fadeIn 7s ease-out forwards;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background-color: black;
  pointer-events: none; /* clicks go through it */
}

body  {
    background-color: black;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

h1 {
  font-family: "Jura", sans-serif;
}

h2 {
  font-family: "Poppins", sans-serif;
}

/*Custom Animations*/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ==== HERO SECTION ==== */
.Hero {
  animation: fadeIn 0.6s ease-out forwards;
  position: relative;
  z-index: 10;
  min-height: 100vh;
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(50px, 10vw, 200px);
  color: white;
}

.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 10vw, 25px);
  color: white;
  white-space: normal;
}

/* Glowing Down Arrow */
.scroll-down-btn {
  margin-top: 50px;
  width: 60px;
  height: 60px;
  background-color: black;
  border: 4px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 0 10px #00ffff, 0 0 30px #00ffff;
  animation: pulse-glow 2s infinite;
  z-index: 10;
  transform: scale(1.3);
}

.down-icon {
  width: 28px;
  height: 28px;
  stroke: rgb(255, 255, 255);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
  }
  50% {
    box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
  }
}

/* ==== CARD DESIGNS ==== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 500px); /* 2 columns by default */
  gap: 50px;
  padding: 40px;
  justify-items: center;
  justify-content: center;
}

/* Mobile: stack cards vertically */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .card-container {
    width: 90%;
    max-width: 350px;
  }
}

.card-container {
  width: 410px;
  height: 410px;
}

.card {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000000;
  border: 3px solid rgba(0, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.1s ease-out;
  transform-style: preserve-3d;
}

.content {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: white;
}

.glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease, left 0.1s ease, top 0.1s ease;
}

/* ==== FOOTER ==== */
.site-footer {
  border-top: 3px solid #00ffff33;
  background-color: #000000;
  color: #fff;
  padding: 50px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.highlight-status {
  margin-top: 20px;
  font-size: 50px; /* Bigger */
  font-weight: bold;
  color: rgba(0, 255, 255, 0.7); /* Make it pop */
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 0 5px #17e2ff55, 0 0 10px #17e2ff33;
  font-family: "Jura", sans-serif;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.highlight-status {
  animation: pulse 1.5s infinite ease-in-out;
}


/* ==== CUSTOM SCROLL BAR ====*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: black;
  border-radius: 31px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 31px;
  border: 2px solid #111;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}