/* Reset default margin and font */
body {
  margin: 0;
  padding-top: 3rem; /* adjust this value as needed */
  font-family: 'Courier New', monospace;
  background-color: #0d0d0d;
  color: #39ff14;
  text-align: center;
  line-height: 1.6;
}

/* Hero Section */
.hero h1 {
  font-size: 3rem;
  color: #ff00cc; /* neon pink */
  text-shadow: 0 0 5px #ff00cc, 0 0 10px #ff00cc, 0 0 20px #ff00cc;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14, 0 0 10px #39ff14;
}

/* Optional flicker animation */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
  75% { opacity: 0.9; }
}

.hero {
  animation: flicker 1.5s infinite;
}

.about {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #1a1a1a;
  border: 2px solid #39ff14;
  border-radius: 10px;
  box-shadow: 0 0 15px #39ff14;
}

.about h2 {
  color: #ff00cc;
  text-shadow: 0 0 5px #ff00cc;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
  text-shadow: 0 0 3px #39ff14;
}

.project img {
  width: 50%;
  border: 2px solid #ff00cc;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px #ff00cc, 0 0 20px #ff00cc;
}

.project img:hover {
  transform: scale(1.03);
  transition: 0.3s ease-in-out;
}

.project-page {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  color: #ccc;
  text-shadow: 0 0 3px #39ff14;
}

.project-page h1 {
  color: #ff00cc;
  text-shadow: 0 0 5px #ff00cc;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.project-page ul {
  list-style: square;
  padding-left: 1.5rem;
}

.project-page a {
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
  text-decoration: none;
}

.project-page a:hover {
  text-decoration: underline;
}

.project-page img {
  width: 100%;
  border: 2px solid #ff00cc;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 0 10px #ff00cc;
}

html {
  scroll-behavior: smooth;
}

.nav {
  background-color: #111;
  padding: 0rem 2rem;
  border-bottom: 2px solid #39ff14;
  box-shadow: 0 0 10px #39ff14;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}


.hamburger {
  font-size: 1.8rem;
  color: #ff00cc;
  display: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1.5rem; /* 👈 controls space between nav links */
  
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ff00cc;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 4px #ff00cc;
  transition: color 0.3s ease, filter 0.3s ease;
  vertical-align: middle;
  line-height: 1;
  
  font-size: 20px;
}

.video-banner {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fills screen without distortion */
  display: block;
}

.banner-mobile {
  display: none;
}

/* ========== MOBILE-ONLY STYLES ========== */
@media (max-width: 768px) {
  .nav-container {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .about {
    margin: 2rem 1rem;
    padding: 1.5rem;
    font-size: 0.95rem;
    box-shadow: 0 0 10px #39ff14;
  }

  .about h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .about p {
    line-height: 1.6;
    text-align: center;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    color: #00ffe1;
    cursor: pointer;
    z-index: 1001;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #0d0d0d;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid #111;
    z-index: 1000;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.1rem;
    padding: 10px 0;
    color: #00ffe1;
    border-bottom: 1px solid #1a1a1a;
  }

  .nav-links a:hover {
    color: #fff;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-icon {
    width: 20px;
    margin-right: 10px;
  }

  .video-banner {
    display: none;
  }

  .banner-mobile {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
  }

  .banner-mobile video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}


.nav a {
  position: relative;
  transition: color 0.3s ease, filter 0.3s ease;
}

.nav a:hover {
  color: #39ff14;
  filter: drop-shadow(0 0 6px #39ff14);
}


.nav-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
  filter: drop-shadow(0 0 3px #ff00cc);
}


.logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain; 
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 4px #39ff14);
  transition: transform 0.3s ease, filter 0.3s ease;
}


.logo a {
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 6px #ff00cc);
}

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

.project-card {
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 12px #00ffe1;
  padding: 20px;
  width: 400px;
  max-width: 90%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px #00ffe1;
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 12px;
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #00ffe1;
}

.project-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.project-card a {
  display: inline-block;
  color: #00ffe1;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.project-card a:hover {
  color: #fff;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.section-header img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px #39ff14);
  transition: transform 0.3s ease;
}

.section-header img:hover {
  transform: rotate(10deg) scale(1.1);
}

.section-header h2 {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 0 8px #ff00cc;
  margin: 0;
}

.projects {
  margin-top: 3rem; /* or adjust to taste */
  padding: 1rem;
}

.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem auto 2rem;
}

.filter-btn {
  background-color: #111;
  border: 1px solid #39ff14;
  color: #39ff14;
  padding: 0.5rem 1.2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #39ff14;
  color: #000;
}







