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

#bgvideo{
   opacity: 0.5;
   position:fixed;
   z-index: -1;
   object-fit: cover;
   width: 100%;
   height: 100%;
}

.red-text{
    color: red;
}
/* Navbar (matches index & members) */
.navbar {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-bottom: 5px;
  padding-top: 5px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
    display: flex;
    width: 60px;
    height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ff0000;
}

.hero {
    position:fixed;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.landpage {
    position: relative;
    z-index: 1;
    width:100%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6f7ff;
    margin-bottom: 1.5rem;
}

.buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #ddd;
}

.btn.outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn.outline:hover {
    background: #fff;
    color: #000;
}

.join-link {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #aaa;
    text-decoration: none;
}

.join-link:hover {
    color: #00bcd4;
}

.typing {
    border-right: 2px solid red;
    animation: typing 6s steps(30) forwards, blink 0.7s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

@keyframes typing {
      from { width:0}
      to { width: 24rem }
}

@keyframes blink {
      50% { border-color: transparent }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        font-size: 0.5rem;
        gap: 0.1rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }
    
    .hero h2{
        font-size: 1.2rem;
    }
    
    @keyframes typing {
      from { width:0}
      to { width: 19rem }
    }

}
html {
    scroll-behavior: smooth;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
