/* =========================
READ THIS FIRST
This is your FULL upgraded system.
You will split into files exactly as labelled.
========================= */

/* =========================
/assets/style.css
========================= */
body {
  margin:0;
  font-family:'Trebuchet MS',sans-serif;
  background:#020d0a;
  color:white;
  overflow-x:hidden;
}

/* NEON GLOW BASE */
h1,h2,h3 {
  text-shadow:0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

/* NAV */
nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 30px;
  background:rgba(0,0,0,0.8);
  backdrop-filter:blur(10px);
  border-bottom:2px solid #00ffcc;
}

.logo {height:55px;}

.nav-links {
  display:flex;
  gap:25px;
  list-style:none;
}

.nav-links a {
  color:#00ffcc;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.nav-links a:hover {
  color:#ff0077;
  text-shadow:0 0 10px #ff0077;
}

/* MOBILE */
.menu-toggle {display:none;font-size:26px;color:#00ffcc;}

.mobile-menu {
  position:fixed;
  top:0;
  left:-100%;
  width:70%;
  height:100%;
  background:#021a14;
  padding-top:80px;
  transition:0.4s;
}

.mobile-menu.active {left:0;}

.mobile-menu a {
  display:block;
  padding:20px;
  color:#00ffcc;
}

@media(max-width:768px){
  .nav-links{display:none}
  .menu-toggle{display:block}
}

/* HERO */
header img {
  width:100%;
  height:70vh;
  object-fit:cover;
  filter:brightness(0.5);
}

/* YELLOW BRICK ROAD */
.road {
  width:100%;
  height:120px;
  background: repeating-linear-gradient(
    45deg,
    #FFD700,
    #FFD700 20px,
    #e6c200 20px,
    #e6c200 40px
  );
  animation: roadMove 10s linear infinite;
}

@keyframes roadMove {
  from {background-position:0 0}
  to {background-position:200px 0}
}

/* EVENTS */
.events {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding:40px;
}

.event-card {
  background:rgba(0,0,0,0.6);
  border:2px solid #00ffcc;
  border-radius:20px;
  padding:15px;
  box-shadow:0 0 15px #00ffcc;
  transition:0.3s;
}

.event-card:hover {
  transform:scale(1.05);
  box-shadow:0 0 25px #ff0077;
}

button {
  background:#ff0077;
  color:white;
  border:none;
  padding:10px 20px;
  border-radius:20px;
  cursor:pointer;
}

/* TEAM */
.team-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:40px;
}

@media(max-width:900px){
  .team-grid{grid-template-columns:1fr}
}

.team-card {
  background:#021a14;
  border:2px solid #00ffcc;
  border-radius:20px;
  padding:20px;
  text-align:center;
}

.team-card img {
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:20px;
}

/* POPUP */
.popup {
  position:fixed;
  top:0;left:0;width:100%;height:100%;
  background:rgba(0,0,0,0.8);
  display:none;
  justify-content:center;
  align-items:center;
}

.popup-content {
  background:#021a14;
  padding:30px;
  border-radius:20px;
  border:2px solid #00ffcc;
  box-shadow:0 0 25px #00ffcc;
  max-width:400px;
}

/* CONTACT */
form {
  background:#021a14;
  padding:20px;
  border-radius:20px;
  border:2px solid #00ffcc;
}

input, textarea {
  width:100%;
  padding:10px;
  margin:10px 0;
  border:none;
  border-radius:10px;
}

/* FOOTER */
footer {
  text-align:center;
  padding:20px;
  background:black;
  border-top:2px solid #00ffcc;
}
