@font-face {
  font-family: 'Eonex';
  src: url('/assets/font/Eonex-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #000;
  color: #fff;
}

header {
  background-color: #111;
  padding: 1px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.eonexfont {
     font-family: 'Eonex', sans-serif;
    text-transform: uppercase;
}
a .eonexfont {
    color: white;
    text-decoration: none;
}

header img.logo {
  height: 40px;
  border-radius: 50px ;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

nav a:hover {
  color: #6211FF;
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: -1;
  filter: brightness(0.25);
  
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-button {
  background: #6211FF;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #580FE5;
}

.content {
  padding: 1.5rem;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.6;
}

section.content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

form input, form select, form textarea {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 6px;
  border: none;
  box-sizing: border-box;
}

form button {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  background: #6211FF;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 1rem;
}

form button:hover {
  background: #580FE5;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .cta-button {
    font-size: 1.2rem;
  }

  .content {
    max-width: 800px;
  }
}
