@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Share+Tech+Mono&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: "Share Tech Mono", monospace;
}

/* HEADER — Liquid Glass iOS 26 Style */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  background: rgba(255, 255, 255, 0.05); /* transparent glass layer */
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 25px rgba(155, 0, 255, 0.2);
  border-radius: 0 0 20px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* === LIQUID GLASS HEADER === */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 50px;
  position: sticky;
  top: 0;
  z-index: 100;

  /* Glass effect */
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.03) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0 0 25px 25px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6),
              inset 0 0 20px rgba(155, 0, 255, 0.3),
              inset 0 0 20px rgba(0, 191, 255, 0.3);
}

/* === LOGO === */
.logo {
  height: 95px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(155, 0, 255, 0.7))
          drop-shadow(0 0 5px rgba(0, 191, 255, 0.7));
  transition: all 0.4s ease;
}

.logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 20px rgba(155, 0, 255, 1))
          drop-shadow(0 0 10px rgba(0, 191, 255, 1));
}

/* === NAV LINKS === */
.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
  position: relative;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #9b00ff, #00bfff);
  transition: width 0.3s ease;
  border-radius: 5px;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: #00bfff;
  text-shadow: 0 0 10px #00bfff;
}



/* SECTION LAYOUT — Tight spacing */
.section {
  padding: 60px 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.subtitle {
  color: #aaa;
  margin-top: 10px;
  font-size: 1rem;
}

/* HALF-PURPLE HALF-BLUE HEADING */
.split-text {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  background: linear-gradient(90deg, #9b00ff 0%, #00bfff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(155, 0, 255, 0.4),
               0 0 15px rgba(0, 191, 255, 0.4);
  margin-bottom: 25px;
}

/* PROJECT CARD */
.project-card {
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid #00bfff;
  border-radius: 12px;
  padding: 25px 30px;
  margin-top: 15px;
  box-shadow: 0 0 10px #9b00ff;
  transition: 0.3s;
}

.project-card:hover {
  box-shadow: 0 0 20px #00bfff;
  transform: translateY(-4px);
}

.btn-glow {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, #9b00ff, #00bfff);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-glow:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #00bfff;
}

/* TEAM */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.team-member img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00bfff;
  transition: 0.3s;
}

.team-member img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px #9b00ff;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 15px;
  color: #888;
  border-top: 1px solid #00bfff;
  background: #000;
}
