/* Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lexend', sans-serif;
}

body {
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Stars Background */
.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 2s infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.001; }
  to { opacity: 1; }
}
   /* Navbar */
    nav {
      background: #080b6c;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    nav h1 {
      font-family: 'Bruno Ace SC';
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px; /* space between rocket and text */
    }

    .logo img {
      width: 50px;   /* smaller rocket */
      height: auto;
    }

    nav ul {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    nav ul li a {
      font-family: 'Bruno Ace SC', sans-serif;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
      padding: 20px;
    }
    nav ul li a.active,
    nav ul li a:hover {
      color: #FC3D21;
    }

    nav ul {
      display: flex;
      gap: 2rem;
      list-style: none;
    }
    nav ul li a {
      font-family: 'Bruno Ace SC', sans-serif;
      color: #fff;
      text-decoration: none;
      transition: color 0.3s;
      padding: 20px;
    }
    nav ul li a:hover {
      color: #FC3D21;
    }

    nav h1 img {
      width: 70px; 
      height: auto; 
      padding-right: 20px;
    }

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem;
}
.hero h2 {
  font-size: 3rem;
  font-family: 'Bruno Ace SC', sans-serif;
  animation: float 4s ease-in-out infinite;
}
.hero h2 span {
  color: #FC3D21;
  font-family: 'Bruno Ace SC', sans-serif;
}
.hero p {
  margin-top: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #ccc;
  font-size: 1.2rem;
  animation: fadeIn 2s ease forwards;
}

/* Project Section */
#projects {
  padding: 4rem 2rem;
  text-align: center;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10rem;
  justify-content: center;
}

.project-card {
  background: #111;
  width: 600px;   
  height: 600px;  
  border-radius: 50%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 25px rgba(255,255,255,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 0 40px rgba(252,61,33,0.7);
}

.project-card h3 {
  font-family: 'Bruno Ace SC', sans-serif;
  color: #0229bf;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;   /* scales with bigger circle */
}

.project-card p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 0.8rem;
  max-width: 85%;      /* keeps text tidy inside circle */
  margin-left: auto;
  margin-right: auto;
}


/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #080b6c;
  margin-top: 3rem;
  font-family: 'Bruno Ace SC', sans-serif;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
