
h1{

  font-family: 'Orbitron', sans-serif;
  
}


#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;
}




body {
  margin: 0;
  font-family: 'Exo', sans-serif;
  background: radial-gradient(circle at center, #0a0a0a 50%, #190000 100%);
  color: white;
  overflow-x: hidden;
}

#connect-hero {
  text-align: center;
  padding: 60px 20px;
}

#orbit-section {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
  animation: rotateOrbit 80s linear infinite;
}

#earth {
  position: absolute;
  width: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateEarth 30s linear infinite;
}

.orbit-member {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid #fff;
}

.orbit-member:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(255,255,255,0.9);
}

/* Earth rotates */
@keyframes rotateEarth {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Orbit rotates slowly */
@keyframes rotateOrbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

#profile-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: #330000;
  padding: 30px;
  margin: 40px auto;
  width: 70%;
  border-radius: 12px;
  transition: all 0.5s ease;
  text-align: left;
}

#profile-card.hidden {
  display: none;
}

#profile-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid white;
}

#profile-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
}

#message-btn {
  background: #c79406;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  transition: 0.3s;
}

#message-btn:hover {
  background: #940810;
}

#contact-section {
  background: #660000;
  padding: 60px 20px;
  text-align: center;
}

#contact-section h2 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 20px;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 2px solid white;
  background: #1a0b0b;
  color: white;
}

#submit {
  background: white;
  color: #660000;
  border: none;
  padding: 10px 20px;
  font-family: 'Orbitron', sans-serif;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

footer {
  background: #660000;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}


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

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

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

#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;
}

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";
}