* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url('background.jpg');
  background-size: cover; 
  background-repeat: no-repeat; 
  background-position: center center;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
}


header {
  background-color: #1a1a1a;
  padding: 20px;
  text-align: center;
  border-bottom: 3px solid #e60000;
  box-shadow: 0 4px 10px rgba(230, 0, 0, 0.5);
}

header h1 {
  font-size: 3em;
  letter-spacing: 5px;
  color: #e60000;
  text-shadow: 0 0 10px #e60000;
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px;
  background-color: #111;
  border-top: 1px solid #e60000;
  border-bottom: 1px solid #e60000;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #e60000;
}

.hero {
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.hero h2, .hero p {
  z-index: 1;
  position: relative;
}

.hero h2 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 15px;
}

section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  background-color: #1a1a1a;
  margin: 10px 0;
  padding: 15px;
  border-left: 5px solid #e60000;
  box-shadow: 0 2px 8px rgba(230, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.features li:hover {
  background-color: #2a2a2a;
}

.training, .events {
  background-color: #111;
  border: 2px solid #e60000;
  margin-top: 30px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.4);
}

.training h2, .events h2, .features h2 {
  color: #e60000;
  text-shadow: 0 0 5px #e60000;
  margin-bottom: 20px;
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  background: #1a1a1a;
  border-top: 2px solid #e60000;
  box-shadow: 0 -4px 10px rgba(230, 0, 0, 0.5);
}

.partners, .hall-of-fame {
  background-color: #111;
  border: 2px solid #e60000;
  margin-top: 30px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(230, 0, 0, 0.4);
}

.partners h2, .hall-of-fame h2 {
  color: #e60000;
  text-shadow: 0 0 5px #e60000;
  margin-bottom: 20px;
  text-align: center;
}
