/* Reset + Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }


  body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(-45deg, #0f0c29, #302b63, #ff0080, #00ffff);
    background-size: 500% 500%;
    animation: cyberpunkGradient 20s ease infinite;
    color: #f4f4f4;
    line-height: 1.7;
    min-height: 100vh;
    padding: 0 2rem;
  }
  
  @keyframes cyberpunkGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
  /* Typography & Links */
  h2 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px #ff00cc;
  }
  
  a {
    color: #00ffff;
    text-shadow: 0 0 4px #00ffff;
    text-decoration: none;
  }
  
  footer {
    text-align: center;
    margin: 4rem 0;
    color: #aaa;
    font-size: 0.8rem;
  }
  
  /* Header */
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1.5rem 6vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
  }
  
  .logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff00cc;
    text-shadow: 0 0 10px #ff00cc;
  }
  
  .logo:hover {
    opacity: 0.7;
  }
  
  .menu-toggle {
    background: none;
    border: none;
    color: #00ffff;
    font-size: 1.8rem;
    cursor: pointer;
    margin-top: 0.5rem;
  }
  
  /* Nav (Slide-In Right Menu) */
  .nav-links {
    position: fixed;
    top: 6.5rem;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 4px;
    padding: 1.5rem 6vw;
    box-shadow: 0 0 12px #00ffff66, 0 0 24px #00ffff33;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(20px);
    z-index: 998;
  }
  
  
  
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
    
  }
  
  
  

  .nav-links a {
    font-size: 1rem;
    color: #00ffff;
    text-shadow: 0 0 6px #00ffff88;
    width: 100%;
    
    
    
  } 

  
  /* Hero Section */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    text-align: center;
    padding-top: 17rem;
  }
  
  .hero h1 {
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0 0 20px #ff00cc;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
  }
  
  /* Main Content */
  .content {
    max-width: 800px;
    margin: 4rem auto;
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
  
  section {
    margin-top: 6rem;
    scroll-margin-top: 8rem;
  }
  
  .section-panel {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.2),
                0 0 20px rgba(255, 0, 128, 0.1);
  }
  
  /* Section Glows */
  .about-glow {
    border-left: 4px solid #00ffff;
    box-shadow: 0 0 12px #00ffff66, 0 0 24px #00ffff33;
  }

  .codewars-glow {
    border-left: 4px solid #ff00cc;
    box-shadow: 0 0 12px #ff00cc66, 0 0 24px #ff00cc33;
  }
  
  .projects-glow {
    border-left: 4px solid #9b5de5;
    box-shadow: 0 0 12px #9b5de566, 0 0 24px #9b5de533;
  }
  
  .contact-glow {
    border-left: 4px solid #00ffff;
    box-shadow: 0 0 12px #00ffff66, 0 0 24px #00ffff33;
  }
  
  /* About Section */
  .about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  
  .about-photo {
    width: 180px;
    border-radius: 8px;
    box-shadow: 0 0 12px #00ffff, 0 0 24px #ff00cc;
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  
  .about-photo:hover {
    transform: scale(1.05);
  }
  
  .about-text {
    flex: 1;
    min-width: 250px;
  }
  
  /* GitHub Icon */
  .github-link {
    margin-left: 0.5rem;
    color: #00ffff;
    text-shadow: 0 0 6px #00ffff;
    transition: transform 0.2s ease;
  }
  
  .github-link:hover {
    transform: scale(1.1);
    color: #ffffff;
  }
  
  .github-icon {
    vertical-align: middle;
  }

  .email-link {
    margin-left: 0.5rem;
    color: #00ffff;
    text-shadow: 0 0 6px #00ffff;
    transition: transform 0.2s ease;
  }
  
  .linkedin-link {
    margin-left: 0.5rem;
    color: #00ffff;
    text-shadow: 0 0 6px #00ffff;
    transition: transform 0.2s ease;
  }
  
  /* Responsive: Mobile-First */
  @media (max-width: 600px) {
    .site-header {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }

    .hero {
        padding-top: 8rem; /* Or even 6rem if you want it tighter */
      }
  
    .hero h1 {
      font-size: 1.8rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .about-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .about-photo {
      margin-bottom: 1rem;
    }
  
    .about-text {
      text-align: center;
    }
  
    .section-panel {
      padding: 1.5rem;
    }
  
    h2 {
      font-size: 1.4rem;
    }
  
    .logo {
      font-size: 1rem;
    }
    .codewars-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    
      .codewars-badge {
        margin-bottom: 1rem;
      }
  }

  .codewars-badge {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }


  @font-face {
    font-family: 'Cyberpunk';
    src: url('./fonts/SDCyberPunkCityDemo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

  .cyberpunk-font {
    font-family: 'Cyberpunk', sans-serif;
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff88;
    display: inline-block;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
  }
  
  .cyberpunk-font:hover {
    opacity: 0.9;
  }
  
