/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#030303;
  color:#fff;
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
}

/* SCANLINES */

.scanlines{
  position:fixed;
  width:100%;
  height:100%;
  background:
    linear-gradient(
      rgba(255,255,255,0.02) 50%,
      transparent 50%
    );
  background-size:100% 4px;
  pointer-events:none;
  z-index:999;
  opacity:.2;
}

/* NAVBAR */

.navbar{
  position:fixed;
  width:100%;
  top:0;
  z-index:100;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,.45);
  border-bottom:1px solid rgba(0,255,100,.15);
}

.nav-container{
  max-width:1300px;
  margin:auto;
  padding:18px 30px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo-area img{
  width:120px;
}

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

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-family:'Orbitron',sans-serif;
  font-size:14px;
  transition:.3s;
}

.nav-links a:hover{
  color:#74ff84;
  text-shadow:0 0 12px #74ff84;
}

/* HERO */

.hero{
  min-height:100vh;
  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
}

.hero-banner{
  position:absolute;
  width:100%;
  height:100%;
  background:url('banner.png') center/cover no-repeat;
  opacity:.25;
  filter:brightness(1.2);
}

.hero::after{
  content:'';
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at center,
    rgba(0,255,120,.08),
    rgba(0,0,0,.95));
}

.hero-content{
  position:relative;
  z-index:5;
  text-align:center;
  max-width:900px;
  padding:20px;
}

.hero-logo{
  width:300px;
  margin-bottom:20px;

  filter:
    drop-shadow(0 0 20px #67ff80)
    drop-shadow(0 0 50px #67ff80);
}

.hero h1{
  font-size:68px;
  font-family:'Orbitron',sans-serif;
  margin-bottom:20px;

  color:#b5ffbb;

  text-shadow:
    0 0 10px #59ff73,
    0 0 30px #59ff73;
}

.hero p{
  font-size:20px;
  color:#ccc;
  line-height:1.8;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  padding:16px 34px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.primary{
  background:#6aff7f;
  color:#000;

  box-shadow:
    0 0 15px #6aff7f,
    0 0 50px rgba(106,255,127,.4);
}

.primary:hover{
  transform:translateY(-4px);
}

.secondary{
  border:1px solid #6aff7f;
  color:#6aff7f;
}

.secondary:hover{
  background:#6aff7f;
  color:#000;
}

/* FEATURES */

.features{
  max-width:1300px;
  margin:auto;
  padding:120px 30px;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.feature-card{
  background:#0c0c0c;
  border:1px solid rgba(0,255,100,.15);

  padding:40px;
  border-radius:20px;

  transition:.4s;
}

.feature-card:hover{
  transform:translateY(-10px);

  border-color:#6aff7f;

  box-shadow:
    0 0 20px rgba(106,255,127,.2);
}

.feature-card h3{
  font-family:'Orbitron',sans-serif;
  margin-bottom:20px;
  color:#9fffac;
}

/* SECTIONS */

.section{
  padding:120px 30px;
}

.dark{
  background:#070707;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#6aff7f;
  font-family:'Orbitron',sans-serif;
  letter-spacing:3px;
}

.section-title h2{
  font-size:48px;
  margin-top:15px;
}

/* VIDEOS */

.video-grid{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.video-card{
  background:#0d0d0d;
  border-radius:20px;
  overflow:hidden;

  border:1px solid rgba(0,255,100,.12);
}

.video-card iframe{
  width:100%;
  height:220px;
  border:none;
}

.video-info{
  padding:25px;
}

.video-info h3{
  margin-bottom:10px;
  color:#b8ffc0;
}

/* PROJECTS */

.project-grid{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.project-card{
  min-height:280px;

  border-radius:24px;

  position:relative;
  overflow:hidden;

  background:
    linear-gradient(
      145deg,
      #0a0a0a,
      #111
    );

  border:1px solid rgba(0,255,100,.15);

  padding:30px;
}

.project-link{
  text-decoration:none;
  transition:transform .3s, border-color .3s, box-shadow .3s;
}

.project-link:hover{
  transform:translateY(-6px);
  border-color:rgba(106,255,127,.45);
  box-shadow:0 0 24px rgba(106,255,127,.16);
}

.project-content{
  position:relative;
  z-index:2;
  width:100%;

  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:14px;
}

.project-thumb{
  width:100%;
  height:150px;
  object-fit:contain;
  border-radius:16px;
  border:1px solid rgba(106,255,127,.18);
  background:#050505;
  padding:10px;
}

.project-label{
  background:rgba(4,18,8,1);
  border:1px solid rgba(106,255,127,.28);
  border-radius:14px;
  padding:14px 16px;
  box-shadow:0 0 18px rgba(0,0,0,.28);
}

.project-card h3{
  font-family:'Orbitron',sans-serif;
  color:#d8ffdd;
  font-size:20px;
  line-height:1.3;
  text-shadow:none;
}

.project-overlay{
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at top,
    rgba(0,255,100,.18),
    rgba(0,0,0,.12) 45%,
    rgba(0,0,0,.32));

  opacity:.8;
}

/* ABOUT */

.about-container{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-text span{
  color:#6aff7f;
  font-family:'Orbitron',sans-serif;
}

.about-text h2{
  font-size:48px;
  margin:20px 0;
}

.about-text p{
  line-height:1.8;
  color:#ccc;
  margin-bottom:20px;
}

.about-image img{
  width:100%;
  border-radius:24px;

  border:1px solid rgba(0,255,100,.15);

  box-shadow:
    0 0 40px rgba(0,255,100,.15);
}

/* SOCIAL */

.social-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
}

.social-links a{
  text-decoration:none;
  color:#6aff7f;

  border:1px solid #6aff7f;

  padding:14px 28px;
  border-radius:12px;

  transition:.3s;
}

.social-links a:hover{
  background:#6aff7f;
  color:#000;
}

/* FOOTER */

.footer{
  padding:60px 20px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer img{
  width:120px;
  margin-bottom:20px;
}

/* TOP BUTTON */

#topBtn{
  position:fixed;
  bottom:30px;
  right:30px;

  width:50px;
  height:50px;

  border:none;
  border-radius:50%;

  background:#6aff7f;
  color:#000;

  font-size:22px;
  cursor:pointer;

  display:none;

  box-shadow:
    0 0 15px #6aff7f;
}

/* RESPONSIVE */

@media(max-width:900px){

  .hero h1{
    font-size:42px;
  }

  .about-container{
    grid-template-columns:1fr;
  }

  .nav-links{
    gap:16px;
  }

}
