@import url('https://fonts.googleapis.com/css?family=Exo:400,700');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Exo', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.logo {
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

nav a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #fff;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh; /* full viewport height */
  overflow: hidden;
}

/* Background Gradient + Circles */
.area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #101010, #0c0c0c);
  z-index: 1;
  overflow: hidden;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.circles li:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.circles li:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.circles li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.circles li:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.circles li:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.circles li:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.circles li:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.circles li:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.circles li:nth-child(10){ left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

@keyframes animate {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 0; }
  100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}

/* HERO CONTENT */
.hero-wrapper {
  position: absolute;
  top: 50%;
  left: 8%; /* same as padding for hero content */
  right: 8%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertical align for left/right */
  gap: 80px;
  z-index: 2;
}
/* LEFT SIDE */
.hero-left {
  flex: 1;
  max-width: 500px;
}

.hero-left .tag {
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.9rem;
  margin-bottom: 25px;
  color: #eee;
}

.hero-left h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-left p {
  color: #aaa;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-right {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 400px;
}

.team-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.member {
  flex-shrink: 0;
  text-align: center;
  min-width: 240px;
  padding: 40px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, opacity 0.5s ease;
}

.member:hover {
  transform: scale(1.05);
}

.member h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: #fff;
}

.member p {
  color: #aaa;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 60px;
    align-items: center;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .member {
    min-width: 180px;
  }
}
