* {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f1c9d2;
    color: #363535;
  }
  
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 10em 1em 0; /* top | sides | bottom */
  }  
  
  .first-name,
  .last-name {
    font-family: 'Kumbh Sans', sans-serif;
    letter-spacing: 10px;
    margin: 0;
    line-height: 0.5;
  }

  .first-name {
    font-size: 13vw;
  }
  
  .last-name {
    font-size: 12vw;
  }  

  .arrow {
    font-size: 2rem;
    margin-top: 2rem;
    cursor: pointer;
  }  
  
  .accordion-container {
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 3em;
    padding-left: 1em;
    padding-right: 1em;
  }  
  
  .accordion {
    background: none;
    border: none;
    font-size: 3.5rem; /* make it bigger */
    font-family: 'Kumbh Sans', sans-serif;
    margin: 1em 0;
    letter-spacing: 8px;
    cursor: pointer;
  }  
  
  .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 600px;
  }
  
  .socials {
    margin-top: 2em;
  }
  
  .socials a img {
    width: 48px;
    height: 48px;
    margin: 0 12px;
  }  

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }
  
  .arrow {
    font-size: 4rem;
    margin: rem 0;
    cursor: pointer;
    animation: bounce 1.5s infinite;
  }
  
  .marquee-wrapper {
    background-color: #363535;
    color: #f1c9d2;
    border-radius: 9999px;
    padding: 1em 2em;
    overflow: hidden;
    max-width: 900px;
    width: 90%;
    margin: 1.5em auto;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 4.5rem; /* control vertical height */
    position: relative;
  }
  
  .marquee {
    display: flex;
    white-space: nowrap;
    animation: marqueeText 30s linear infinite;
  }
  
  .marquee span {
    display: inline-block;
    padding-right: 3rem;
  }
  @keyframes marqueeText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .socials a {
    text-decoration: none;
    outline: none;
  }
  
  .about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .about-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%; /* circle image */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about-text {
    max-width: 500px;
    text-align: center;
  }
  
  .about-text h2 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-family: 'Kumbh Sans', sans-serif;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .accordion {
    position: relative;
    overflow: hidden;
  }
  
  .accordion::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: #363535;
    bottom: 0;
    left: -100%;
    transition: left 0.3s ease;
  }
  
  .accordion:hover::after {
    left: 0;
  }
  
  .work-scroll-wrapper {
    overflow-x: auto;
    padding: 1rem 0;
  }
  
  .work-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 1rem;
    transition: transform 0.6s ease;
    scroll-behavior: smooth;
  }
  
  .work-card {
    flex: 0 0 250px; /* fixed width, no wrapping */
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  }
  
  .work-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.3s ease;
  }
  
  .work-card:hover img {
    filter: grayscale(0%);
  }
  
  
  .work-card h3 {
    margin: 0;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center;
    color: #363535;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Optional — hide scrollbar (still scrolls) */
  .work-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
  .work-scroll-wrapper {
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none;    /* Firefox */
  }

  .resume-link {
    display: inline-block;
    background-color: #363535;
    color: #f1c9d2;
    padding: 0.6rem 1rem;
    margin: 1rem 0;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .resume-link:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }  
  