/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Inter',sans-serif;
  background: #000;
  color: #fff;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;

  display: flex;
  align-items: center;

  background: rgba(0, 0, 0, 0.6);   /* glass effect */
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 30px;
}

.logo {
  color: #facc15;
  font-weight: 600;
  font-size: 18px;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
   flex-wrap: wrap;
}

.nav-menu a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;

}

.nav-menu a:hover {
 color: #facc15;
 border-bottom: 2px solid #facc15;
}

/* HERO */
.hero {
  height: 100vh;
  width: 100%;
  background: #000;  
  position: relative;  
  display: flex; 
  align-items: center;
  justify-content: center;
  text-align: center;
  /* GRID LINES */
  background-image: 
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

  background-size: 40px 40px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;     /* push to bottom */
  left: 50%;
  transform: translateX(-50%);
  font-size: 22px;
  color: #aaa;
}

.hero-content {
   margin-top: 60px;
}

//* SMALL TEXT */
.tag {
  color: #facc15;   /* yellow */
  letter-spacing: 4px;
  font-size: 12px;
  margin-bottom: 20px;
}

/* MAIN HEADING */
.hero h1 {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;   /* white */
  margin-bottom: 20px;
}

.hero h1 span {
  color: #facc15;   /* yellow */
}

.role {
  font-size: 1.4rem;
  color: #e5e5e5;
  margin: 20px 0;   /* space above + below */
}

/* DESCRIPTION */
.desc {
  color: #9ca3af;
  margin-top: 15px;   /* extra separation */
  line-height: 1.6;
}

/* BUTTON */
.btn {
  padding: 10px 20px;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 6px;
  text-decoration: none;
  color: white;
}

.resume-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: #fafaf7;
  color: #000;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.resume-btn:hover {
  background: #eab308;
}

/* SECTIONS */
section {
  padding: 100px 20px;
  max-width: 1100px;
  margin: auto;
}
/*ABOUT*/
/* ABOUT SECTION */
#about {
  padding: 120px 20px;   /* top-bottom space */
}

#about h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;   /* space below heading */
  color: #facc15 ;
}

.about-content p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.8;     /* spacing inside each line */
  margin-bottom: 10px;  /* spacing between the two lines */
  max-width: 800px;
}

/* Skills inside About */
.about-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;      /* space above skills */
}

.about-content li {
  background: rgba(255,255,255,0.08);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* SKILLS */
#skills{
 color: #facc15 ; 
}
.skills span {
  background: rgba(255,255,255,0.1);
  color: white  ;        /* make skills yellow */
  padding: 8px 15px;
  margin: 8px 10px;
  display: inline-block;
  border-radius: 5px;
}

.skills .familiar {
  margin-top: 15px;
  color: white;         /* keep this white */
}

#projects{
 color: #facc15 ; 
}
/* PROJECT */
.project-card {
  background: rgba(255,255,255,0.05);
  color: white;
  padding: 20px;
  border-radius: 10px;
}

/* CONTACT SECTION */
.contact {
  padding: 120px 20px;
  max-width: 1100px;
  margin: auto;
}

.contact h2 {
  color: #facc15;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-subtext {
  color: #9ca3af;
  margin-bottom: 40px;
}

/* LAYOUT */
.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

/* FORM */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 12px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

/* BUTTON */
.contact-form button {
  background: #facc15;
  color: black;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 500;
}

.contact-form button:hover {
  background: #eab308;
}

#form-status {
  color: #22c55e;
  margin-top: 10px;
}

/* RIGHT SIDE INFO */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

/* EACH ITEM */
.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #d1d5db;
}

.info-item span {
  background: #1a1a1a;
  padding: 10px;
  border-radius: 10px;
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.fade-up.delay-1 {
  animation-delay: 0.3s;
}

.fade-up.delay-2 {
  animation-delay: 0.6s;
}

.fade-up.delay-3 {
  animation-delay: 0.9s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.4rem;
  }

  .desc {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .nav-menu {
    gap: 10px;
    font-size: 0.9rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-info {
    margin-top: 20px;
  }

  input, textarea {
    width: 100%;
  }
}