@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Quicksand:wght@400;600&display=swap');

html {
    scroll-behavior: smooth;
}

#header {
  background: linear-gradient(90deg, #301934, #1f1147);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px #00000066;
}

#header-img {
  height: 60px;
  border-radius: 8px;
}

#nav-bar {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff91e0;
}

@media (max-width: 768px) {
  #nav-bar {
    flex-direction: column;
    align-items: center;
  }

  iframe {
    width: 100%;
  }
}

body {
  background-color: #0c0b20; 
  color: #ffffffcc;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  color: #ffd700;
}

section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #ffffff22;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 0 20px #ffd70022;
}

input[type="email"] {
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
  width: 60%;
  max-width: 300px;
  margin-right: 1rem;
}

input[type="submit"] {
  background-color: #ff4f81;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #d94d7a;
}