/* 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%;
  background: transparent;
  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;
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: float 4s ease-in-out infinite;
  font-family: 'Bruno Ace SC', sans-serif;
}
.contact h2 span {
  color: #FC3D21;
  font-family: 'Bruno Ace SC', sans-serif;
}
.contact .intro {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  color: #ccc;
  font-family: 'Lexend', sans-serif;
}

/* Contact Container */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Contact Form */
.contact-form {
  background: #111;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 400px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.contact-form label {
  text-align: left;
  font-size: 0.9rem;
  color: #ccc;
  font-family: 'Lexend', sans-serif;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: none;
  border-radius: 6px;
  background: #222;
  color: #fff;
  font-size: 1rem;
  font-family: 'Lexend', sans-serif;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #FC3D21;
}
.contact-form button {
  background: red;
  border: none;
  padding: 0.8rem;
  border-radius: 6px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Bruno Ace SC', sans-serif;
}
.contact-form button:hover {
  background: #d32b16;
}

/* Contact Info */
.contact-info {
  background: #111;
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 350px;
  flex: 1;
  box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.contact-info h3 {
  margin-bottom: 1rem;
  color: #0229bf;
  font-family: 'Lexend', sans-serif;
}
.contact-info ul {
  list-style: none;
  margin-bottom: 1rem;
}
.contact-info ul li {
  margin: 0.5rem 0;
}
.contact-info ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
  font-family: 'Lexend', sans-serif;
}
.contact-info ul li a:hover {
  color: #FC3D21;
}
.contact-info p {
  color: #ccc;
  font-family: 'Lexend', sans-serif;
}

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

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
