body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #0b0b0b;
  color: #fff;
  scroll-behavior: smooth;
}

/* NAVIGATION */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6%;
}
.nav-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #00aaff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav a {
  color: #ddd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.nav a:hover { color: #00aaff; }

/* HERO */
.hero {
  height: 100vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  color: white;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(3px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}
.glow-text {
  font-size: 3rem;
  color: #00aaff;
  text-shadow: 0 0 15px #00aaff;
}
.cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  background: #00aaff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.cta:hover {
  background: #0095e0;
  transform: scale(1.05);
}

/* SECTIONS */
section {
  padding: 6rem 8%;
}
section h2 {
  font-size: 2rem;
  color: #00aaff;
  text-align: center;
  margin-bottom: 3rem;
}

/* VISION */
.vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.vision-text p {
  color: #ccc;
  line-height: 1.7;
}
.vision-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(0,170,255,0.3);
}

/* EVENTS */
.events {
  background: #111;
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.event-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.event-card:hover { transform: translateY(-8px); }
.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.event-info {
  padding: 1.5rem;
}

/* TEAM */
.team {
  background: #0e0e0e;
}
.team-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.team-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 1.5rem;
  width: 260px;
  text-align: center;
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-5px); }
.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* KONTAKT */
.kontakt {
  background: #111;
}
.kontakt-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}
.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: none;
  margin-bottom: 1rem;
}
.kontakt-form button {
  background: #00aaff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: transform 0.3s;
}
.kontakt-form button:hover {
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  background: #000;
  text-align: center;
  padding: 2rem;
  color: #777;
}
.footer a { color: #00aaff; text-decoration: none; }