body {
  background-image: url(Starbox.png);
  background-color: #2e2e2e;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0; 
  
  overflow: hidden;
}
  
.text-container {
  position: relative;
  display: inline-block;
  text-align: left;
  padding-top: 100px; /* space for the navbar */
  margin-left: 50px;
}
.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.5s ease;
  position: relative;
}

.nav-menu a:hover {
  color: red;
}
  
#p2 {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 105px;
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 8px black;
  color: white; /* default color */
  transition: color 0.8s ease-out, transform 0.8s ease-out;
  cursor: pointer; /* optional: to show it's interactive */
}

#p2:hover {
  color: red;
  transform: scale(1.1) translateY(-5px);

}

  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  #line {
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 4px;
    width: 0;
    background-color: red;
    transition: width 1.5s ease-out;
    pointer-events: none;
  }
  .logo {
    margin-top: 70px;
    top: 80px;
    left: 50px;
    width: 170px;       
    height: auto;       
  
    z-index: 10;
  }
  .site-header {
   font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 32px;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 40px;
    z-index: 1000;
  }
  

  .header-inner {
    display: flex;
    align-items: center;
    gap: 600px; 
  }
  .nav-menu {
    display: flex;
    gap: 240px; /* 👈 controls space between nav links */
  }
  #p1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
   font-size: 55px;
   color: white;
    
  }
  #p3{
    
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 40px;
    color: white;
    margin-left: 50px
  }
  @keyframes floatUpDown {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-30px); } /* move up by 30px */
    100% { transform: translateY(0); }
  }
  
  .astronaut {
    position: absolute;
    top: 320px;
    left: 1100px;
    width: 600px;
    z-index: 1;
    animation: floatUpDown 4.5s ease-in-out infinite;
  }
  .sky {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }
  
  .star {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: twinkle 2s infinite ease-in-out;
  }
  
  @keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
  
  .comet {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(to right, white, transparent);
    transform: rotate(45deg);
    animation: fly 5s linear forwards;
    opacity: 0.6;
    z-index: 0;
  }
  
  @keyframes fly {
    0% {
      transform: translate(-200px, -200px) rotate(45deg);
      opacity: 0;
    }
    10% {
      opacity: 1;
    }
    100% {
      transform: translate(100vw, 100vh) rotate(45deg);
      opacity: 0;
    }
  }
  .cta-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    justify-content: center;
    z-index: 999;
  }
  
  .cta-button {
    font-size: 28px;
    color: white;
    background: linear-gradient(135deg, #6e00ff, #009fff);
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(110, 0, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(110, 0, 255, 0.7);
  }
  .socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 80px 0 40px;
    position: relative;
    z-index: 2;
  }
  
  .socials a img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 8px #00ffff) brightness(1.2);
  }
  
  .socials a:hover img {
    transform: scale(1.2);
    filter:
      drop-shadow(0 0 10px #00ffff)
      drop-shadow(0 0 20px #00ffff)
      drop-shadow(0 0 30px #009fff);
  }
  