/* 
   Styling based on a dark background, 
   larger text, and Poppins font for a crisp, modern look.
*/

html, body {
    margin: 0;
    padding: 0;
    background-color: #18181b;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
  }
  
  /* Main container narrower for approximate screenshot look */
  .main-container {
    width: 70%;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  
  /* PROFILE HEADER */
  .profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }
  
  .profile-left {
    display: flex;
    align-items: center;
  }
  
  .profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.2rem;
  }
  
  .profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .profile-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
  }
  
  .profile-title {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    color: #AAAAAA;
    margin: 0;
  }
  
  /* Resume button with Font Awesome icon */
  .resume-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: transparent;
    border: 1px solid #888888;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .resume-btn:hover {
    background-color: #1F1F1F;
  }
  
  /* SECTION TITLES */
  .section-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
  }
  
  /* Arrow icon near "See what I built" */
  .arrow-icon {
    margin-left: 0.5rem;
    font-size: 1.1rem;
    color: #AAAAAA;
  }
  
  /* ABOUT SECTION */
  .about-section {
    margin-bottom: 2rem;
  }
  
  .about-text {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 1rem;
  }
  
  .about-link {
    color: #AAAAAA;
    text-decoration: none;
    border-bottom: 1px dashed #555555;
    transition: color 0.2s ease;
  }
  .about-link:hover {
    color: #fff290;
  }
  
  /* PROJECTS SECTION */
  .projects-section {
    margin-top: 3rem;
  }
  
  .project-item {
    margin-bottom: 2rem;
  }
  
  .project-title {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 0.3rem;
    color: #FFFFFF;
  }
  
  .project-desc {
    font-size: 0.95rem;
    color: #CCCCCC;
    margin: 0 0 0.6rem;
  }
  
  .project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 0.75rem;
    text-decoration: none;
    font-size: 0.9rem;
    color: #FFFFFF;
    background-color: #1F1F1F;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #333333;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .project-link:hover {
    background-color: #333333;
  }
  