/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
  }
  
  /* Menu Toggle Button */
  .menu-toggle {
    position: fixed;
    top: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    z-index: 1000;
    width: clamp(30px, 5vw, 40px);
    height: clamp(24px, 4vw, 32px);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
  
  .menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .menu-toggle.open .bar:nth-child(1) {
    transform: translateY(calc(clamp(24px, 4vw, 32px) / 2 - 1.5px)) rotate(45deg);
  }
  
  .menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .menu-toggle.open .bar:nth-child(3) {
    transform: translateY(calc(-1 * (clamp(24px, 4vw, 32px) / 2 - 1.5px))) rotate(-45deg);
  }
  
  /* Fullscreen Menu */
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fe6d11;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }
  
  .menu.open {
    transform: translateY(0);
  }
  
  .menu-list {
    list-style: none;
    text-align: center;
  }
  
  .menu-list li {
    margin: clamp(0.5rem, 2vw, 1rem) 0;
  }
  
  .menu-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 10vw, 6rem);
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    display: inline-block;
  }
  
  .menu-link:hover,
  .menu-link.active {
    color: #fff;
  }
  
  /* Main Content */
  .main-content {
    min-height: 100vh;
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  }
  
  /* Page Header */
  .page-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    padding-top: 2rem;
  }
  
  .page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }
  
  .page-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #fe6d11;
  }
  
  /* About Content */
  .about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
  }
  
  @media (min-width: 768px) {
    .about-content {
      grid-template-columns: 250px 1fr;
      align-items: start;
    }
  }
  
  .about-image {
    display: flex;
    justify-content: center;
  }
  
  .placeholder-avatar {
    width: clamp(150px, 30vw, 250px);
    height: clamp(150px, 30vw, 250px);
    border-radius: 50%;
    background: linear-gradient(135deg, #fe6d11 0%, #ff9a56 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    color: #000;
  }
  
  .about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.25rem;
  }
  
  .about-text .role {
    color: #fe6d11;
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1.5rem;
  }
  
  .about-text p {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.8;
  }
  
  .skills,
  .tools {
    margin-top: 2rem;
  }
  
  .skills h3,
  .tools h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #fe6d11;
    margin-bottom: 1rem;
  }
  
  .skills-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
  }
  
  .skills-list li {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #ccc;
    padding-left: 1.5rem;
    position: relative;
  }
  
  .skills-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #fe6d11;
  }
  
  .tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tool {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    padding: 0.5rem 1rem;
    background-color: #111;
    color: #fff;
    border-radius: 4px;
    border: 1px solid #333;
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .about-text {
      text-align: center;
    }
    
    .skills-list {
      grid-template-columns: 1fr;
    }
    
    .tools-grid {
      justify-content: center;
    }
  }
  