body {
    background-color: #1B1833;
    color: #333;
}
/* Nav & headings use Press Start 2P */
.nav-logo h1,
.nav-list a,
h1, h2, h3 {
  font-family: 'Press Start 2P', cursive;
}

/* Body text uses Orbitron */
body, p, ul, li {
  font-family: 'Orbitron', sans-serif;
}

#nav {
    top: 0;
    width: 100%;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between; /* logo left, links right */
    align-items: center;
    z-index: 1000;
    font-family: 'Press Start 2P', cursive;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-sizing: border-box;
}

.nav-logo h1 {
    font-size: 18px;
    font-weight: normal;
    margin: 0;
    cursor: default;
    letter-spacing: 3px;
}

/* Burger hidden by default */
.nav-toggle {
  display: none;
}

/* Show burger and hide nav list on mobile */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .burger {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
  }

  .nav-list.show {
    display: flex;
  }
}


.logo-link {
  text-decoration: none;
  color: #ffffff;
  display: inline-block;
  transition: all 0.3s ease;
}

.logo-link h1 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 3px;
}

.logo-link:hover {
  color: #ffffff;
  text-shadow: 0 0 10px #00ffff, 0 0 20px #00e0ff;
  transform: scale(1.05);
  cursor: pointer;
}


.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

/* Mobile First: Hide by default on small screens */
@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 999;
  }

  .nav-list.show {
    display: flex;
  }


}
.nav-list li {
    margin: 0; /* remove margin, gap is used */
}

.nav-list a {
    text-decoration: none;
    color: white;
    font-weight: normal;
    font-size: 12px;
    transition: color 0.3s ease;
    letter-spacing: 2px;
    line-height: 1; /* reduce extra space */
}

.nav-list a:hover {
    color: #00ffea;
    text-shadow: 0 0 6px #00ffea;
}

.hire-me-button {
  background: linear-gradient(45deg, #007bff, #00e0ff);
  color: white;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: 0 0 10px #00e0ff, 0 0 20px #007bff;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  line-height: 1;
  display: inline-flex; /* flex for vertical centering */
  align-items: center;
  justify-content: center;
}

.hire-me-button:hover {
  background: linear-gradient(45deg, #00e0ff, #007bff);
  box-shadow: 0 0 20px #00e0ff, 0 0 30px #007bff;
  transform: scale(1.05);
  text-decoration: none;
}


/* Hero Section */
#hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    padding: 60px 50px;
    color: white;
    gap: 40px;
    flex-wrap: wrap; /* Responsive wrapping */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 12px;
    color: #a0a0bb;
    letter-spacing: 1.1px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 10px;
    color: #61dafb;
    font-weight: 700;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #ccc;
    font-weight: 600;
    font-style: italic;
}

/* CTA Button */
.cta-button {
    background-color: #61dafb;
    color: #121212;
    padding: 14px 32px;
    border-radius: 1px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(97, 218, 251, 0.6);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #21a1f1;
    box-shadow: 0 10px 20px rgba(33, 161, 241, 0.7);
    color: white;
    transform: translateY(-3px);
}

.social-links {
  margin-top: 25px;
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #61dafb;  /* bright accent color */
  font-size: 28px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #00e0ff;
  transform: scale(1.2);
}


/* Hero Image */
.hero-right img {
    max-width: 500px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(97, 218, 251, 0.4);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-right img:hover {
    transform: scale(1.05);
}

/* About Section */
#about {
    max-width: 900px;
    margin: 80px auto 100px auto;
    padding: 50px 40px;
    background-color: #1e1e2f;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    color: #f0f0f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

#about h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #61dafb;
    letter-spacing: 2px;
    font-weight: 700;
}

#about p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 22px;
    color: #dcdde1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Highlight class */
.highlight {
    color: #61dafb;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-right img {
        max-width: 260px;
        margin-top: 30px;
    }

    #about {
        padding: 40px 20px;
        margin: 60px 20px 80px;
    }

    #about h2 {
        font-size: 32px;
    }

    #about p {
        font-size: 18px;
    }
    
    .cta-button {
        align-self: center;
    }
}

/* Skills and Experience Section */
#skills-experience {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 40px 20px;
  background-color: #1e1e2f;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #f0f0f5;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

#skills-experience h2 {
  font-size: 36px;
  margin-bottom: 35px;
  color: #61dafb;
  letter-spacing: 1.2px;
}

.skills, .experience {
  margin-bottom: 50px;
  text-align: left;
}

.skills h3, .experience h3 {
  font-size: 28px;
  color: #80c0ff;
  margin-bottom: 25px;
  border-bottom: 2px solid #61dafb;
  padding-bottom: 8px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.skill-tile {
  background: #2a2a47;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #cfd8f7;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.skill-tile i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #61dafb;
}

.skill-tile span {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.skill-tile:hover {
  background-color: #3a3a6f;
  box-shadow: 0 8px 20px rgba(97, 218, 251, 0.6);
}

.experience ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #dcdde1;
  font-size: 18px;
  line-height: 1.6;
}

.experience ul li {
  margin-bottom: 15px;
}

.experience strong {
  color: #61dafb;
}

/* Responsive */
@media (max-width: 768px) {
  #skills-experience h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

#resume-download {
  max-width: 600px;
  margin: 60px auto 100px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 123, 255, 0.6);
  color: white;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
}

#resume-download h2 {
  font-family: 'Press Start 2P', cursive;
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

#resume-download p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  background: #121212;
  color: #61dafb;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(97, 218, 251, 0.4);
  transition: background-color 0.3s ease, transform 0.25s ease;
  cursor: pointer;
}

.download-btn:hover {
  background: #0d0d0d;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(97, 218, 251, 0.7);
}

.download-icon {
  width: 24px;
  height: 24px;
  margin-left: 12px;
  stroke: #61dafb;
  transition: stroke 0.3s ease;
}

.download-btn:hover .download-icon {
  stroke: #ffffff;
}

#footer {
  background-color: #121212;
  color: #888;
  text-align: center;
  padding: 20px 10px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  user-select: none;
}

#footer p {
  margin: 5px 0;
}


