body {
  margin: 0;
  background-color: #1a0b0b;
  color: white;
  font-family: 'Exo', sans-serif;
  overflow-x: hidden;
}



#navbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  background-color: #940810;
  padding: 10px 0;
  z-index: 10;
}

#navbar button {
  background: none;
  border: none;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
}

#navbar button:hover,
#navbar button.active {
  background: #c79406;
  color: white;
}


/* HERO */
.hero {
  height: 80vh;
  background: linear-gradient(180deg, #660000 0%, #1a0b0b 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  animation: fadeIn 2s ease-out;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
}

.hero h2 {
  font-style: italic;
  font-weight: 400;
  margin-top: 10px;
}

.scroll-indicator {
  margin-top: 40px;
  animation: bounce 1.5s infinite;
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: white;
}

/* ROCKET SECTIONS */
.rocket {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  gap: 50px;
  flex-wrap: wrap;
}

.rocket:nth-child(even) {
  flex-direction: row-reverse;
  background-color: #220202;
}

.rocket-img {
 
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rocket-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

#herculesrocket {
  background-image: url('HERCULES.png');
}

#dedalusrocket {
  background-image: url('DEDALUSROCKET.png');
   /* Correct rotation */
   

    transform: rotate(269deg);
     background-size: cover; /* Ensures the image fits well */
    background-position: center;
    
   
    
}

#icarusrocket {
  background-image: url('ICARUSROCKET.png');
}

.rocket-text {
  max-width: 600px;
}

.rocket-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
}

.rocket-text h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ffcccc;
  margin-top: 30px;
}

.rocket-text table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.rocket-text th {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #fff;
  width: 40%;
}

.rocket-text td {
  padding: 8px;
  border-bottom: 1px solid #fff;
}


.footer-icons {
  margin-bottom: 10px;
}

.footer-icons a {
  color:#c79406 ;
  margin: 0 10px;
}

.footer-icons a:hover {
    opacity: 0.7;
}



footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #940810;  /* Dark red */
    color: white;
    padding: 20px;
    text-align: center;
}

#slogan {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: "Orbitron";
}

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Fade-in on scroll */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

#privacy-policy {
    color: #FFD700; /* Gold for better contrast */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Exo', sans-serif;
}

#privacy-policy:hover {
    font-family: 'Exo', sans-serif;
    color: #ffffff; /* White on hover */
}

#CopyRight {
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Exo", sans-serif;
}