:root {
  --primary: #00f0ff;
  --bg: #0a0a0a;
  --glass: rgba(255,255,255,0.06);
  --text: #fff;
  --font-main: 'Orbitron', sans-serif;
  --font-sec: 'Exo 2', sans-serif;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sec);
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(15px);
  background: rgba(0, 0, 0, 0.5);
}

.nav-logo {
  font-family: var(--font-main);
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: bold;
}

.nav-left {
  display: flex;
  align-items: center;
}

.burger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

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

.nav-links li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .burger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 220px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding-top: 80px;
    padding-left: 20px;
    gap: 20px;
    transition: 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links.show {
    left: 0;
  }

  .nav-links li {
    margin-bottom: 10px;
  }
}

/* Hero */
.hero {
  height: 100vh;
  background: url('../assets/bg.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  z-index: 2;
  position: relative;
  animation: fadeIn 2s ease;
}

.hero-title {
  font-family: var(--font-main);
  font-size: 3rem;
}

.hero-subtitle {
  font-size: 1.2rem;
}

.logo {
  width: 90px;
  margin-bottom: 15px;
}

.btn, .glow-btn {
  padding: 12px 24px;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  color: black;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  transition: transform 0.3s;
}

.btn:hover, .glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px var(--primary);
}

.glow {
  box-shadow: 0 0 20px var(--primary);
}

.section {
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  width: 280px;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s;
}

.card:hover {
  transform: scale(1.03);
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 10px rgba(0,255,255,0.1);
}

footer {
  text-align: center;
  padding: 30px;
  background: #000;
  color: #aaa;
}

.socials a {
  color: var(--primary);
  text-decoration: none;
  margin: 0 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2rem; }
  .grid { flex-direction: column; align-items: center; }
}

.bio-container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

.bio-img {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.bio-text {
  max-width: 600px;
  font-size: 1rem;
  text-align: left;
  line-height: 1.6;
}