/* ========================================
   SEB PORTFOLIO - REORGANIZED CSS
   ========================================
   
   ORGANIZATION STRUCTURE:
   - ALL SIZES (Global styles)
   - DESKTOP (1920px)
   - DESKTOP (1528px)
   - TABLET (max-width: 900px)
   - MOBILE (max-width: 768px)
   - SMALL MOBILE (max-width: 480px)
   
   SECTIONS:
   - Typography & Fonts
   - Layout & Structure
   - Hero Section
   - Navigation
   - Projects Intro
   - About Me
   - Figma Section
   - photoshop Section
   - Interactive Elements
   ======================================== */

/* ========================================
   ALL SIZES - GLOBAL STYLES
   ======================================== */

/* Typography & Fonts */
@font-face {
  font-family: 'SF Pro';
  src: url(SFPro.ttf);
}

@font-face {
  font-family: 'SFThin';
  src: url('SFTHIN.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'SFRegular';
  src: url('SFREGULAR.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Loading Screen - Mobile & Tablet Only */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffa600;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  overflow: hidden;
}

body.loading {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.loading-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-text {
  font-size: 24px;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
  align-self: center;
  font-family: 'SFPro', Arial, sans-serif;
  font-weight: 600;
}

.loader-bar {
  width: 30%;
  height: 10px;
  border-radius: 5px;
  background-color: rgb(0, 0, 0);
  animation: loader-bar-animation 2s ease-in-out infinite;
}

@keyframes loader-bar-animation {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Hide loading screen on desktop */
@media (min-width: 1000px) {
  .loading-screen {
    display: none !important;
  }
  
  .burger {
    display: none !important;
  }
}

/* ========================================
   ALL SIZES - GLOBAL STYLES
   ======================================== */

/* Typography & Fonts */
@font-face {
  font-family: 'SF Pro';
  src: url(SFPro.ttf);
}

/* Base Layout & Structure */
html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro", "Segoe UI", Roboto, Arial, sans-serif, "Edge";
  background-size: cover;
  background: #ffa600;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* ========================================
   DESKTOP - DEFAULT STYLES (1200px+)
   ======================================== */

/* SECTION TITLES - DESKTOP */
.hero-title {
  font-size: 10vw;
  color: #ffa600;
  font-weight: 500;
  text-align: center;
  padding-top: 9.5%;
  padding-bottom: 1%;
  line-height: 1;
  position: relative;
}

.photoshop-title {
  font-size: 5.5vw;
  font-weight: 600;
  color: #000;
}

.feat-title {
  font-size: 7.5vw;
  font-weight: 500;
  color: #000;
  text-align: left;
  margin-bottom: 1%;
}

/* HERO SECTION - DESKTOP */
.hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-image: url(neww.png);
  background-attachment: fixed;
  display: flex;
  background-repeat: no-repeat;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 3vw;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.hero-content {
  margin-top: 40px;
}

.hero-handle {
  font-size: 2.5vw;
  color: #fff;
  font-weight: 100;
  position: absolute;
  top: 58%;
  left: 62%;
  transform: translate(-50%, -50%);
  margin: 0;
  white-space: nowrap;
}

.hero-bottom-left {
  position: absolute;
  left: 3vw;
  bottom: 8vh;
}

.hero-bottom-left h2 {
  font-size: 2.5vw;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.hero-bottom-right {
  position: absolute;
  right: 3vw;
  bottom: 8vh;
  color: #bdbdbd;
  font-size: 1.2vw;
  text-align: right;
}

/* NAVIGATION - DESKTOP 1528px*/
.hero-nav {
  position: fixed;
  top: 50px;
  left: 5vw;
  right: 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  z-index: 2000;
}

@media (min-width: 1000px) and (max-width: 1899px) {
  .works-nav { position: fixed; top: 50px; left: 5vw; right: 5vw; z-index: 3000; }
  .hero-nav .nav-left { justify-self: start; }
  .hero-nav .nav-center { justify-self: center; }
  .hero-nav .nav-right { justify-self: end; display: flex; gap: 16px; align-items: center; }
  .nav-home {
    color: #ffffff;
    text-decoration: none;
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 1.5rem;
  }
}

.btn {
  font-family: inherit;
  font-size: 1.2rem;
  border: none;
  border-radius: 2em;
  padding: 0.7em 2em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: transparent;
  color: #fff;
  font-weight: 500;
  border: 2px solid #fff;
  box-shadow: none;
}

.btn-primary:hover {
  background: rgb(255, 255, 255);
  color: #ffa600;
}

.btn-menu {
  color: #000;
  display: flex;
  align-items: center;
  gap: 0.7em;
  position: relative;
}

.btn-menu .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-left: 8px;
}

.btn-menu .hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}


.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  font-family: 'SFThin', Arial, sans-serif;
  background: #111;
  border-radius: 1em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  min-width: 160px;
  z-index: 10;
}


.btn-secondary {
  background: #000;
  color: #fff;
  font-size: 1rem;
  border-top-left-radius: 100px;
  align-self: center;
  border-bottom-left-radius: 100px;
  padding: .7em 2.5em;
  font-weight: 400;
  margin-top: 1vw;
}

.btn-view {
  background: #000;
  color: #fff;
  font-size: 1rem;
  border-top-left-radius: 10px;
  align-self: center;
  border-top-right-radius: 10px;  
  padding: .7em 2.5em;
  font-weight: 400;
}

.dropdown-menu a {
  color: #fff;
  text-decoration: none;
  padding: 1em 1.5em;
  font-size: 1.1em;
  border-bottom: 1px solid #222;
  transition: background 0.2s;
  display: block;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #222;
}

/* Navigation: show links inline on desktop sizes only (1528–1899px and 1900px+) */
@media (min-width: 1000px) and (max-width: 1899px) {
  .hero-nav { grid-template-columns: 1fr auto 1fr; }
  .hero-nav .btn-menu, .hero-nav .burger {
    display: none !important;
  }
  .nav-right .btn-primary { display: inline-flex; }
  .nav-right .simple-nav-menu { display: none !important; }

  .hero-nav .dropdown-menu {
    display: flex !important;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: unset;
    gap: 72px;
    padding: 0;
  }

  .hero-nav .dropdown-menu a {
    padding: 0.35em 1.2em;
    border: 0;
    font-family: 'SFThin', Arial, sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    border-radius: 9999px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .hero-nav .dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
  }
}

/* Desktop fallback (1200px–1527px) to ensure center links show on mid-wide screens */
@media (min-width: 1000px) and (max-width: 1899px) {
  .hero-nav { grid-template-columns: 1fr auto 1fr; }
  .hero-nav .btn-menu,
  .hero-nav .burger { display: none !important; }
  .nav-right .btn-primary { display: inline-flex; }
  .hero-nav .dropdown-menu {
    display: flex !important;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: unset;
    gap: 56px;
    padding: 0;
  }
  .hero-nav .dropdown-menu a {
    padding: 0.3em 1.1em;
    border: 0;
    color: #ffffff;
    font-size: 1.35rem;
    border-radius: 9999px;
    font-family: 'SFThin', Arial, sans-serif;
    border: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .hero-nav .dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border: 2px solid #ffffff;
  }
}



/* PROJECTS INTRO - DESKTOP */
.projects-intro {
  background: none;
  color: #000;
  padding: 6vw 3vw 4vw 3vw;
  position: relative;
}

.projects-intro-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.projects-intro-content h2 {
  font-size: 4vw;
  font-weight: 500;
  margin: 0 0 2vw 0;
  max-width: 60vw;
}

.projects-intro-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 5vw;
  gap: 2vw;
}

.projects-intro-bottom p {
  font-family: 'SFThin', Arial, sans-serif;
  font-size: 1.7rem;
  color: #ffffff;
  font-weight: normal;
  max-width: 48vw;
}


/* ========================================
   TABLET - RESPONSIVE STYLES (max-width: 900px)
   ======================================== */

@media (max-width: 999px) {
  /* Disable zooming for tablet */
  html, body {
    -webkit-text-size-adjust: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
  }
  /* SECTION TITLES - TABLET */
  .hero-title { 
    font-size: 12vw; 
    top: -5%;
  }
  
  .nav-home {
    display: none;
    } 

  .hero-handle { 
    font-size: 10vw; 
    top: 50%;
    left: 44%;
    transform: translate(-50%, -50%);
  }
  
  .hero-bottom-left h2, .hero-bottom-right { 
    font-size: 3.5vw; 
  }
  
  .projects-intro-content h2 { 
    font-size: 6vw; 
  }
  
  .projects-intro-bottom p { 
    font-size: 2.5vw; 
  }


  /* photoshop SECTION - TABLET */
  .photoshop-section {
    padding: 50px 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: #ffa600;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .photoshop-title {
    font-size: 3.5rem;
    margin: 35px 0 0 20px;
  }
  
  .masonry { 
    column-count: 3; 
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  
    .masonry-item {
    break-inside: avoid;
    margin-bottom: .2em;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* FIGMA SECTION - TABLET */
  .figma-section {
    background-image: url(neww.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 3vw 0vw 3vw 4vw;
    border-radius: 0% 100% 100% 50% / 0% 0% 0% 100%;
    position: relative;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .figma-title {
    font-family: 'SF Pro', Arial, sans-serif;
    font-size: 3rem;
    text-align: right;
    font-weight: 500;
    color: #fff;
    margin: 0 100px 30px 0px;
    letter-spacing: 1px;
  }
  
  .figma-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .figma-gallery-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4vw;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0vw 2vw 0vw 0vw;
    z-index: 1000;
    cursor: grab;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .figma-gallery-row.dragging {
    cursor: grabbing;
    user-select: none;
  }
  
  .figma-gallery-card {
    flex: 0 0 auto;
    height: 260px;
    min-width: 200px;
    max-width: 320px;
    display: inline-block;
    background: none;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .figma-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .figma-gallery-card:hover {
    color: #ffa600;
  }

  .figma-gallery-row .figma-gallery-card:last-child {
    margin-right: 8vw !important;
  }

  /* Hide scrollbar for webkit browsers */
  .figma-gallery-row::-webkit-scrollbar {
    height: 8px;
    background: #222;
  }

  .figma-gallery-row::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

  .figma-gallery-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Ensure Figma section doesn't have extra spacing */
  .figma-section * {
    box-sizing: border-box;
  }

  /* NAVIGATION - TABLET */
  .simple-nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 0 16px 0;
    margin: 0 0 16px 0;
    gap: 10px;
    padding-left: 0;
    margin-left: 0;
  }
  
  .simple-nav-home, .simple-nav-menu {
    width: auto;
    min-width: 80px;
    max-width: 140px;
    margin: 0 5px;
    font-size: 1rem;
    padding: 10px 18px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Hide old menu button on tablet */
  .btn-menu {
    display: none !important;
  }

  /* Disable card hover overlay for tablet and below */
  .card-hover-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
    display: none !important;
  }
  .card-hover-container:hover .card-hover-overlay,
  .card-hover-container:focus .card-hover-overlay {
    opacity: 0 !important;
    pointer-events: none !important;
    display: none !important;
  }

  /* FOOTER - TABLET */
  .footer {
    background: #000;
    color: #fff;
    padding: 30px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
  }

  .footer-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-copyright {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
    text-align: center;
  }
}

/* ========================================
   MOBILE - RESPONSIVE STYLES (max-width: 768px)
   ======================================== */

@media (max-width: 999px) {
  /* GLOBAL MOBILE SETTINGS */
  html, body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  
  /* Disable scrolling when loading screen is active on mobile */
  body.loading {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    -webkit-overflow-scrolling: auto !important;
  }

  /* HERO SECTION - MOBILE */
  .hero {
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  /* SECTION TITLES - MOBILE */
  .hero-title {
    font-size: 8.5rem;
    color: #ffa600;
    font-weight: 500;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 1.1;
    position: relative;
    width: 100%;
    word-wrap: break-word;
  }

  .hero-handle {
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    position: absolute;
    bottom: -1.5rem;
    right: 0;
    transform: none;
    margin: 0;
    white-space: nowrap;
  }

  /* Hide desktop hero elements */
  .hero-bottom-left,
  .hero-bottom-right {
    display: none;
  }

  .btn-primary {
    display: none; /* stays hidden on mobile */
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
  }

  .btn-menu {
    background: none;
    border: none;
    color: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }

  .btn-menu span:first-child {
    display: none;
  }

  .btn-menu .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
  }

  .btn-menu .hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
  }

  .dropdown-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    min-width: 140px;
    z-index: 10;
    margin-top: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
  }

  .dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 16px 20px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.2s;
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  .dropdown-menu a:hover,
  .dropdown-menu a:active {
    background: rgba(255,255,255,0.1);
  }

  /* PROJECTS INTRO - MOBILE */
  .projects-intro {
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .projects-intro-content {
    flex-direction: column;
    gap: 20px;
    width: 80%;
    box-sizing: border-box;
  }

  .projects-intro-content h2 {
    font-size: 3.8rem;
    max-width: 100%;
    margin-left: 10px;
    word-wrap: break-word;
  }

  .projects-intro-bottom {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    margin-left: 10px;
    box-sizing: border-box;
  }

  .projects-intro-bottom p {
    font-size: 1rem;
    max-width: 100%;
    margin-left: 10px;
    word-wrap: break-word;
  }


  /* photoshop SECTION - MOBILE */
  .photoshop-section {
    padding: 40px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background: #ffa600;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .photoshop-title {
    font-size: 3rem;
    margin: 5px 0 5px 0;
    text-align: left;
    width: 100%;
    color: #000;
    font-weight: 600;
  }

  .masonry {
    column-count: 3;
    column-gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .masonry-item {
    border-radius: 8px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  /* FIGMA SECTION - MOBILE */
  .figma-section {
    background-image: url(neww.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 3vw 0vw 4vw 3vw;
    border-radius: 0;
    position: relative;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .figma-title {
    font-family: 'SF Pro', Arial, sans-serif;
    font-size: 3rem;
    text-align: right;
    font-weight: 500;
    color: #fff;
    margin: 30px 40px 20px 0px;
    letter-spacing: 1px;
  }

  .figma-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .figma-gallery-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 25px;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 50px 20px 0;
    z-index: 1000;
    cursor: grab;
    border-radius: 0;
    margin-left: 30px;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .figma-gallery-row.dragging {
    cursor: grabbing;
    user-select: none;
  }

  .figma-gallery-card {
    flex: 0 0 auto;
    height: 200px;
    width: 500px;
    min-width: 250px;
    max-width: 320px;
    display: inline-block;
    background: none;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: none;
  }

  .figma-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .figma-gallery-card:hover {
    color: #ffa600;
  }

  .figma-gallery-row .figma-gallery-card:last-child {
    margin-right: 8vw !important;
  }

  /* Hide scrollbar for webkit browsers */
  .figma-gallery-row::-webkit-scrollbar {
    height: 6px;
    background: #222;
  }

  .figma-gallery-row::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }

  .figma-gallery-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Ensure Figma section doesn't have extra spacing */
  .figma-section * {
    box-sizing: border-box;
  }

  /* FOOTER - MOBILE */
  .footer {
    background: #000;
    color: #fff;
    padding: 25px 15px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
  }

  .footer-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-copyright {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 0.85rem;
    color: #fff;
    margin: 0;
    text-align: center;
  }
} 

/* ========================================
   SMALL MOBILE - RESPONSIVE STYLES (max-width: 480px)
   ======================================== */

@media (max-width: 800px) {
  /* Disable scrolling when loading screen is active on small mobile */
  body.loading {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    -webkit-overflow-scrolling: auto !important;
  }
  /* SECTION TITLES - SMALL MOBILE */
  .hero-title {
    font-size: 5rem;
    color: #ffa600;
    font-weight: 500;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 1.1;
    position: relative;
    width: 100%;
    word-wrap: break-word;
  }
  

  .hero-handle {
    font-size: 1.3rem;
    left: 50%;
    top: 49%;
  }

  .hero {
    padding: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
  }

  .hero-content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .btn-secondary {
    background: #000;
    color: #fff;
    font-size: 1.2rem;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    padding: .7em 2.5em;
    font-weight: 400;
    margin-top: 1vw;
  }

  /* PROJECTS INTRO - SMALL MOBILE */
  .projects-intro-content h2 {
    font-size: 2rem;
    max-width: 90%;
    margin-left: 0px;
    word-wrap: break-word;
  }

  .projects-intro-bottom p {
    font-size: .93rem;
    max-width: 100%;
    margin-left: -10px;
    margin-right: 0px;
    margin-top: 30px;
    word-wrap: break-word;
  }

    /* photoshop SECTION - SMALL MOBILE */
    .masonry {
      column-count: 2;
      column-gap: .5em;
      margin: 0;
      padding-left: 0;
      padding-right: 5px;
    }

    .photoshop-title {
      font-size: 2rem;
      margin: 5px 0 5px 0;
      text-align: left;
      width: 100%;
      color: #000;
      font-weight: 600;
  }
}
    
    .masonry-item {
      break-inside: avoid;
      background: #000;
      overflow: hidden;
    }
    
    .masonry-item img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .photoshop-section {
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
      overflow: hidden;
      background: #ffa600;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
  }

  /* FIGMA SECTION - SMALL MOBILE */
  .figma-section {
    background-image: url(neww.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 330px;
    border-radius: 0;
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .figma-title {
    font-family: 'SF Pro', Arial, sans-serif;
    font-size: 2.5rem;
    text-align: left;
    font-weight: 500;
    color: #fff;
    margin: 25px 40px 25px 15px;
    letter-spacing: 1px;
  }

  .figma-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .figma-gallery-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 15px 0;
    z-index: 1000;
    cursor: grab;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 15px;
  }

  .figma-gallery-row.dragging {
    cursor: grabbing;
    user-select: none;
  }

  .figma-gallery-card {
    flex: 0 0 auto;
    height: 150px;
    min-width: 180px;
    max-width: 280px;
    display: inline-block;
    background: none;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: none;
  }

  .figma-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .figma-gallery-card:hover {
    color: #ffa600;
  }

  .figma-gallery-row .figma-gallery-card:last-child {
    margin-right: 6vw !important;
  }

  /* Hide scrollbar for webkit browsers */
  .figma-gallery-row::-webkit-scrollbar {
    height: 4px;
    background: #222;
  }

  .figma-gallery-row::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2px;
  }

  .figma-gallery-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Ensure Figma section doesn't have extra spacing */
  .figma-section * {
    box-sizing: border-box;
  }

  /* FOOTER - SMALL MOBILE */
  .footer {
    background: #000;
    color: #fff;
    padding: 20px 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
  }

  .footer-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-copyright {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 0.8rem;
    color: #fff;
    margin: 0;
    text-align: center;
  }


/* ========================================
   ABOUT ME SECTION STYLES (ALL SIZES)
   ======================================== */
.about-section {
  background: #ffa600;
  color: #fff;
  padding: 64px 0 48px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
    justify-content: center;
  padding-left: 8vw;
}
.about-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1100px;
}
.about-content {
  max-width: 600px;
  width: 90vw;
  text-align: left;
  margin-left: -75px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #e0e0e0;
}
.about-title {
  font-size: 4rem;
  color: #000000;
  font-weight: 500;
  max-width: 100%;
  text-align: left;
  width: 100%;
}
.about-image-frame {
  margin-left: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  border-radius: 18px;
  padding: 12px;
  border: 5px solid #ffa600;
  max-width: 100%;
  max-height: 100%;
}
.about-image {
  width: 250px;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}


/* ========================================
   ABOUT ME SECTION - DESKTOP (min-width: 901px)
   ======================================== */
   /* Import SFTHIN.otf for About Me heading */
@font-face {
  font-family: 'SFThin';
  src: url('SFTHIN.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Import SFREGULAR.otf for About Me paragraph */
@font-face {
  font-family: 'SFRegular';
  src: url('SFREGULAR.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ========================================
   ABOUT ME SECTION - 1528px SCREEN SIZE
   ======================================== */
@media (min-width: 1528px) and (max-width: 1800px) {
  .about-section {
    background: #ffa600;
    color: #fff;
    padding: 20px 0 48px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    min-height: 100vh;
  }
  
  .about-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    gap: 40px;
    box-sizing: border-box;
    padding: 0 80px;
  }
  
  .about-image-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    border-radius: 32px;
    padding: 0;
    border: 12px solid #000;
    box-shadow: none;
    max-width: 500px;
    max-height: 500px;
    margin: 0;
    overflow: hidden;
    order: 1;
  }
  
  .about-image {
    width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  
  .about-content {
    flex: 1 1 0;
    width: 100%;
    max-width: 800px;
    text-align: left;
    margin-left: 40px;
    font-size: 1.8rem;
    line-height: 1.3;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    order: 2;
  }
  
  .about-title {
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 8rem;
    font-weight: 500;
    color: #000;
    text-align: right;
    margin: 0 0 30px 0;
    letter-spacing: -2px;
    line-height: 1;
    position: relative;
    top: -15px;
    right: 0;
  }
  
  .about-title .about-me-span {
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 6rem;
    color: #000;
    font-weight: normal;
    margin-left: 16px;
  }
  
  .about-content p {
    color: #fff;
    font-size: 1.25rem;
    text-align: right;
    margin: 0;
    line-height: 1.5;
    font-family: 'SFThin', Arial, sans-serif;
  }
}


@media (min-width: 1000px) and (max-width: 1899px) {
  .about-section {
    background: #ffa600;
    color: #fff;
    padding: 20px 0 48px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    min-height: 100vh;
  }
  
  .about-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    gap: 40px;
    box-sizing: border-box;
    padding: 0 80px;
  }
  
  .about-image-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    border-radius: 32px;
    padding: 0;
    border: 12px solid #000;
    box-shadow: none;
    max-width: 600px;
    max-height: 600px;
    margin: 0;
    overflow: hidden;
    order: 1;
  }
  
  .about-image {
    width: 600px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  
  .photoshop-title {
    font-size: 5.5vw;
    font-weight: 600;
    color: #000;
    margin-bottom: -70px;
    margin-top: 100px;
}

  .about-content {
    flex: 1 1 0;
    width: 100%;
    max-width: 900px;
    text-align: left;
    margin-left: 40px;
    font-size: 2rem;
    line-height: 1.3;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    order: 2;
    padding-right: 0;
  }
  
  .about-content .about-title {
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 9rem;
    font-weight: 500;
    color: #000;
    text-align: right !important;
    margin: 0 0 30px 0;
    letter-spacing: -2px;
    line-height: 1;
    position: relative;
    top: 0;
    right: 0;
    max-width: 100%;
    overflow: hidden;
  }
  
  .about-title .about-me-span {
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 8rem;
    color: #000;
    font-weight: normal;
    margin-left: 16px;
  }
  
  .about-content p {
    color: #fff;
    font-size: 1.6rem;
    text-align: right;
    margin: 0;
    line-height: 1.5;
    font-family: 'SFRegular', Arial, sans-serif;
  }

  /* SKILLS SECTION - DESKTOP */
  .skills-section {
    background-size: cover;
    background-image: url(neww.png);
    background-attachment: fixed;
    display: flex;
    background-repeat: no-repeat;
    padding: 60px 0 100px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .skills-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 50px;
  }

  .skills-content {
    display: flex;
    gap: 80px;
    justify-content: space-between;
  }

  .technical-skills,
  .soft-skills {
    flex: 1;
  }

  .skills-subtitle {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 50px 0;
    text-align: center;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .skill-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
  }

  .skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-2px);
  }

  .skill-item h4 {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffa600;
    margin: 0 0 10px 0;
  }

  .skill-item p {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
  }

  /* photoshop SECTION - DESKTOP */
.photoshop-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  background: #ffa600;
  padding-bottom: 150px;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  overflow-x: hidden;
  box-sizing: border-box;
}



.photoshop-view-more {
  position: absolute;
  top: 95px;
  right: 60px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.3rem;
  color: #111;
  text-decoration: none;
  font-weight: 400;
} 

.masonry {
  column-count: 5;
  column-gap: .5em;
  width: calc(100% - 70px);
  max-width: calc(100% - 70px);
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 80px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: .2em;
  background: #000;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* INTERACTIVE ELEMENTS - DESKTOP */
.card-hover-container {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-hover-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0 1em 1em 1em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.card-hover-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-hover-container:hover .card-hover-overlay,
.card-hover-container:focus .card-hover-overlay {
  opacity: 1;
  pointer-events: auto;
}

.card-title {
  font-size: 1.1em;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-view-btn {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 2em;
  padding: 0.5em 1.3em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
}

.card-view-more-btn {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 2em;
  padding: 0.5em 1.3em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
}

.card-view-btn:hover {
  background: #ffa600;
  color: #fff;
}

/* UTILITY CLASSES - DESKTOP */
.simple-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 30px 60px 30px 60px;
  box-shadow: none;
  position: relative;
}

.simple-nav-home {
  background: none;
  color: #000;
  box-shadow: none;
  border: 2px solid #fff;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.simple-nav-home:focus,
.simple-nav-menu:focus {
  outline: 2px solid #000;
}

.simple-nav-home:hover,
.simple-nav-menu:hover {
  color: #ffa600;
  background: #fff;
}

.simple-nav-menu .hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: .5px 0;
  transition: background 0.2s, width 0.1s;
}

.simple-nav-menu:hover .hamburger span {
  background: #ffa600;
  width: 28px;
}

.btn-menu,
.simple-nav-menu {
  border: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  background: none;
  color: #fff;
  box-shadow: none;
  border: 2px solid #fff;
}

.btn-disabled,
.btn-secondary.btn-disabled {
  cursor: default !important;
  pointer-events: none !important;
}

  /* FIGMA SECTION - DESKTOP */
  .figma-section {
    height: 650px;
    padding: 3.5vw 0vw 6vw 5vw;
    background-image: url(neww.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 500px 28px 28px 28px;
    -webkit-border-radius: 500px 28px 28px 28px;
    -moz-border-radius: 500px 28px 28px 28px;
    position: relative;
    margin-left: 100px;
    width: 100%;
    margin-top: -40px;
    margin-bottom: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .figma-title {
    font-family: 'SF Pro', Arial, sans-serif;
    font-size: 5rem;
    text-align: right;
    font-weight: 500;
    color: #fff;
    margin: 0 250px 40px 0px;
    letter-spacing: 1px;
  }

  .figma-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .figma-gallery-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto !important;
    overflow-y: hidden;
    width: 1292px;
    height: 355px; 
    border-radius: 200px 0 0 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0vw 2.7vw 2vw 0vw;
    z-index: 1000;
    cursor: grab;
    margin-left: 100px;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 80.5%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .figma-gallery-row.dragging {
    cursor: grabbing;
    user-select: none;
  }

  .figma-gallery-card {
    flex: 0 0 auto;
    min-width: 250px;
    max-width: 600px;
    display: inline-block;
    height: 350px;
    background: none;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .figma-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .figma-gallery-card:hover {
    color: #ffa600;
  }

  .figma-gallery-row .figma-gallery-card:last-child {
    margin-right: 0vw !important;
  }

  /* Hide scrollbar for webkit browsers */
  .figma-gallery-row::-webkit-scrollbar {
    height: 12px;
    background: #222;
  }

  .figma-gallery-row::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 6px;
  }

  .figma-gallery-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Ensure Figma section doesn't have extra spacing */
  .figma-section * {
    box-sizing: border-box;
  }

  /* FIGMA CARD HOVER STYLES - DESKTOP */
  .figma-gallery-card .card-hover-overlay {
    position: absolute;
    left: 0; right: 0px; top: 0; bottom: 0;
    height: 100%;
    background: rgba(0,0,0,0.65);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 2em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    border-radius: 4px;
  }

  .figma-gallery-card .card-hover-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 35px;
  }

  .figma-gallery-card .card-title {
    font-size: 2em;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    order: 1;
  }

  .figma-gallery-card .card-view-btn {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 2em;
    padding: 0.7em 1.6em;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    order: 2;
  }

  .figma-gallery-card .card-view-btn:hover {
    background: #ffa600;
    color: #fff;
  }

  .figma-gallery-card:hover .card-hover-overlay,
  .figma-gallery-card:focus .card-hover-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ========================================
   WORKS - 1920px SCREEN SIZE
   ======================================== */
@media (min-width: 1900px) {

    .hero-nav { grid-template-columns: 1fr auto 1fr; }
    .hero-nav .btn-menu,
    .hero-nav .burger {
      display: none !important;
    }
    .nav-right .btn-primary { display: inline-flex; }
    .nav-right .simple-nav-menu { display: none !important; }
  
    .hero-nav .dropdown-menu {
      display: flex !important;
      position: static;
      background: transparent;
      border: 0;
      box-shadow: none;
      min-width: unset;
      gap: 88px;
      padding: 0;
    }
  
    .hero-nav .dropdown-menu a {
      padding: 0.35em 1.4em;
      border: 0;
      color: #ffffff;
      font-size: 1.5rem;
      border-radius: 9999px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }
  
    .hero-nav .dropdown-menu a:hover {
      background: rgba(255,255,255,0.1);
      color: #ffffff;
      border: 2px solid #ffffff;
    }

    
  .works-nav { position: fixed; top: 50px; left: 5vw; right: 5vw; z-index: 3000; }
  .hero-nav .nav-left { justify-self: start; }
  .hero-nav .nav-center { justify-self: center; }
  .hero-nav .nav-right { justify-self: end; display: flex; gap: 16px; align-items: center; }
  .nav-home {
    color: #ffffff;
    text-decoration: none;
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 1.5rem;
  }


  .about-section {
    background: #ffa600;
    color: #fff;
    padding: 20px 0 48px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 0;
    padding-top: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    min-height: 100vh;
  }
  
  .about-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 100vw;
    gap: 40px;
    box-sizing: border-box;
    padding: 0 80px;
  }
  
  .about-image-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #181818;
    border-radius: 32px;
    padding: 0;
    border: 12px solid #000;
    box-shadow: none;
    max-width: 600px;
    max-height: 600px;
    margin: 0;
    overflow: hidden;
    order: 1;
  }
  
  .about-image {
    width: 600px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }
  
  .about-content {
    flex: 1 1 0;
    width: 100%;
    max-width: 900px;
    text-align: left;
    margin-left: 40px;
    font-size: 2rem;
    line-height: 1.3;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    order: 2;
    padding-right: 0;
  }
  
  .about-content .about-title {
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 9rem;
    font-weight: 500;
    color: #000;
    text-align: right !important;
    margin: 0 0 30px 0;
    letter-spacing: -2px;
    line-height: 1;
    position: relative;
    top: 0;
    right: 0;
    max-width: 100%;
    overflow: hidden;
  }
  
  .about-title .about-me-span {
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 8rem;
    color: #000;
    font-weight: normal;
    margin-left: 16px;
  }
  
  .about-content p {
    color: #fff;
    font-size: 1.6rem;
    text-align: right;
    margin: 0;
    line-height: 1.5;
    font-family: 'SFRegular', Arial, sans-serif;
  }

  /* SKILLS SECTION - DESKTOP */
  .skills-section {
    background-size: cover;
    background-image: url(neww.png);
    background-attachment: fixed;
    display: flex;
    background-repeat: no-repeat;
    padding: 60px 0 100px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .skills-inner {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 50px;
  }

  .skills-content {
    display: flex;
    gap: 80px;
    justify-content: space-between;
  }

  .technical-skills,
  .soft-skills {
    flex: 1;
  }

  .skills-subtitle {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 50px 0;
    text-align: center;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .skill-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
  }

  .skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-2px);
  }

  .skill-item h4 {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffa600;
    margin: 0 0 10px 0;
  }

  .skill-item p {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
  }

  /* photoshop SECTION - DESKTOP */
.photoshop-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #ffa600;
    padding-bottom: 150px;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    overflow-x: hidden;
    box-sizing: border-box;
}

.photoshop-title {
  font-size: 5.5vw;
  font-weight: 600;
  color: #000;
  margin-bottom: -70px;
  margin-top: 100px;
}


.photoshop-view-more {
  position: absolute;
  top: 95px;
  right: 60px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.3rem;
  color: #111;
  text-decoration: none;
  font-weight: 400;
} 

.masonry {
  column-count: 5;
  column-gap: .5em;
  width: calc(100% - 70px);
  max-width: calc(100% - 70px);
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 80px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: .2em;
  background: #000;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* INTERACTIVE ELEMENTS - DESKTOP */
.card-hover-container {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.card-hover-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0 1em 1em 1em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.card-hover-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-hover-container:hover .card-hover-overlay,
.card-hover-container:focus .card-hover-overlay {
  opacity: 1;
  pointer-events: auto;
}

.card-title {
  font-size: 1.1em;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-view-btn {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 2em;
  padding: 0.5em 1.3em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
}

.card-view-btn:hover {
  background: #ffa600;
  color: #fff;
}

/* UTILITY CLASSES - DESKTOP */
.simple-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 30px 60px 30px 60px;
  box-shadow: none;
  position: relative;
}

.simple-nav-home {
  background: none;
  color: #000;
  box-shadow: none;
  border: 2px solid #fff;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.simple-nav-home:focus,
.simple-nav-menu:focus {
  outline: 2px solid #000;
}

.simple-nav-home:hover,
.simple-nav-menu:hover {
  color: #ffa600;
  background: #fff;
}

.simple-nav-menu .hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  margin: .5px 0;
  transition: background 0.2s, width 0.1s;
}

.simple-nav-menu:hover .hamburger span {
  background: #ffa600;
  width: 28px;
}

.btn-menu,
.simple-nav-menu {
  border: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  background: none;
  color: #fff;
  box-shadow: none;
  border: 2px solid #fff;
}

.btn-disabled,
.btn-secondary.btn-disabled {
  cursor: default !important;
  pointer-events: none !important;
}

  /* FIGMA SECTION - DESKTOP */
  .figma-section {
    height: 700px;
    padding: 5vw 0vw 6vw 5vw;
    background-image: url(neww.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 500px 28px 28px 28px;
    -webkit-border-radius: 500px 28px 28px 28px;
    -moz-border-radius: 500px 28px 28px 28px;
    margin-left: 100px;
    position: relative;
    width: 100%;
    margin-top: -40px;
    margin-bottom: 10px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .figma-title {
    font-family: 'SF Pro', Arial, sans-serif;
    font-size: 5rem;
    text-align: right;
    font-weight: 500;
    color: #fff;
    margin: 0 300px 40px 0px;
    letter-spacing: 1px;
  }

  .figma-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .figma-gallery-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto !important;
    overflow-y: hidden;
    width: 1292px;
    height: 355px; 
    border-radius: 200px 0 0 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0vw 2.7vw 2vw 0vw;
    z-index: 1000;
    cursor: grab;
    margin-left: 100px;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 80.5%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .figma-gallery-row.dragging {
    cursor: grabbing;
    user-select: none;
  }

  .figma-gallery-card {
    flex: 0 0 auto;
    min-width: 250px;
    max-width: 600px;
    display: inline-block;
    height: 350px;
    background: none;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: none;
    scroll-snap-align: start;
  }

  .figma-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .figma-gallery-card:hover {
    color: #ffa600;
  }

  .figma-gallery-row .figma-gallery-card:last-child {
    margin-right: 0vw !important;
  }

  /* Hide scrollbar for webkit browsers */
  .figma-gallery-row::-webkit-scrollbar {
    height: 12px;
    background: #222;
  }

  .figma-gallery-row::-webkit-scrollbar-thumb {
    background: none;
    border-radius: 6px;
  }

  .figma-gallery-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Ensure Figma section doesn't have extra spacing */
  .figma-section * {
    box-sizing: border-box;
  }

  /* FIGMA CARD HOVER STYLES - DESKTOP */
  .figma-gallery-card .card-hover-overlay {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    height: 100%;
    background: rgba(0,0,0,0.65);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 2em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    border-radius: 4px;
  }

  .figma-gallery-card .card-hover-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    gap: 35px;
  }

  .figma-gallery-card .card-title {
    font-size: 2em;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: right;
    order: 1;
  }

  .figma-gallery-card .card-view-btn {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 2em;
    padding: 0.7em 1.6em;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    order: 2;
  }

  .figma-gallery-card .card-view-btn:hover {
    background: #ffa600;
    color: #fff;
  }

  .figma-gallery-card:hover .card-hover-overlay,
  .figma-gallery-card:focus .card-hover-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ========================================
   ABOUT ME SECTION - TABLET (max-width: 900px)
   ======================================== */
@media (min-width: 801px) and (max-width: 999px) {
  .about-section {
    padding: 48px 0 32px 0;
    padding-left: 4vw;
  }

  .nav-home {
    display: none;
    } 

  .about-inner {
    flex-direction: row;
    align-items: flex-start;
  }
  .about-title {
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    text-align: left;
    color: #000;
    margin-left: -10px;
    margin-bottom: 20px;
    margin-top: 0;
  }
  .about-content {
    max-width: 80vw;
    margin-left: 25px;
    margin-right: px;
  }
  .about-content p {
    color: #fff;
    font-size: .95rem;
    text-align: left;
    bottom: 50px;
    margin-left: -10px;
    line-height: 1.5;
    font-family: 'SFRegular', Arial, sans-serif;
  }
  .about-image-frame {
    margin-left: 0px;
    width: 300px;
    height: 400px;
    align-items: center;
    justify-content: center;
    padding: 9px;
    margin-right: 25px;
    margin-bottom: 0px;
    display: flex;
  }
  .about-image {
    width: 100%;
    height: 100%;
    margin-left: 0px;
    border-radius: 10px;
    object-position: center;
    object-fit: cover;
  }

  .feat-title {
    font-size: 8.5vw;
    font-weight: 500;
    color: #000;
    text-align: left;
    margin-bottom: 1%;
}

  .btn-view {
    background: #000;
    color: #fff;
    font-size: .7rem;
    border-top-left-radius: 10px;
    align-self: center;
    border-top-right-radius: 10px;
    padding: .7em 2.5em;
    font-weight: 400;
}

  .photoshop-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #ffa600;
    padding-bottom: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    overflow-x: hidden;
    box-sizing: border-box;
}

  /* SKILLS SECTION - TABLET */
  .skills-section {
    background: url(neww.png);
    padding: 60px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .skills-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
  }

  .skills-title {
    font-family: 'SFThin', Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 300;
    color: #fff;
    text-align: center;
    margin: 0 0 50px 0;
    letter-spacing: 1px;
  }

  .skills-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .technical-skills,
  .soft-skills {
    width: 100%;
  }

  .skills-subtitle {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffa600;
    margin: 0 0 25px 0;
    text-align: center;
  }

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

  .skill-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
  }

  .skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-2px);
  }

  .skill-item h4 {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffa600;
    margin: 0 0 8px 0;
  }

  .skill-item p {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
  }
}

/* ========================================
   ABOUT ME SECTION - MOBILE (max-width: 600px)
   ======================================== */
@media (max-width: 800px) {
  .about-section {
    padding: 30px 0 24px 0;
    padding-left: 2vw;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .nav-home {
    display: none;
    } 


  .about-inner {
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .about-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    margin-left: 0;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }
  .about-content {
    font-size: 1rem;
    text-align: left;
    width: 90vw;
    font-family: 'SFRegular', Arial, sans-serif;
    padding-left: 20px;
    padding-right: 2px;
    max-width: 100vw;
    margin-left: 0;
    box-sizing: border-box;
  }
  .about-image-frame {
    margin-left: -15px;
    margin-top: -20px;
    align-self: center;
    max-width: 390px;
    max-height: 300px;
    padding: 6px;
    box-sizing: border-box;
  }
  .about-image {
    width: 330px;
    height: 150px;
    border-radius: 8px;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* SKILLS SECTION - MOBILE */
  .skills-section {
    background: #ffa600;
    padding: 20px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .feat-title {
    font-size: 9.5vw;
    font-weight: 500;
    color: #000;
    text-align: left;
    margin-bottom: 10px;
}

  .btn-view {
    background: #000;
    color: #fff;
    font-size: .7rem;
    align-self: center;
    font-weight: 400;
}

  .photoshop-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    background: #ffa600;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .skills-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }


  .skills-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .technical-skills,
  .soft-skills {
    width: 100%;
  }

  .skills-subtitle {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: right;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .skill-item {
    background: rgb(0, 0, 0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 18px;
    transition: all 0.3s ease;
  }

  .skill-item h4 {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffa600;
    margin: 0 0 6px 0;
  }

  .skill-item p {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ccc;
    margin: 0;
  }
}

/* ========================================
   CARD MODAL POPUP STYLES (ALL SIZES)
   ======================================== */
.card-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.card-modal.open {
  display: flex;
}
.card-modal-content {
  background: #181818;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 0 24px 0;
}
.card-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.card-modal-close:hover {
  color: #ffa600;
}
.card-modal-content img {
  width: 100%;
  object-fit: contain;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #262626;
}
.card-modal-info {
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}
.card-modal-info h3 {
  margin: 0 0 8px 0;
  color: #ffa600;
  font-size: 1.3rem;
  font-weight: 600;
}
.card-modal-info p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}



/* ========================================
   CARD MODAL POPUP - DESKTOP (min-width: 901px)
   ======================================== */
@media (min-width: 801px) {
  .about-section {
    padding-top: 0;
  }
  .card-modal-content {
    width: 80vw;
    max-width: 80vw;
    max-height: 556px;
    padding: 0;
    display: flex;
    margin-top: 6.5%;
    flex-direction: row;
    background: #151414;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  }
  .card-modal-content img {
    width: 50%;
    height: 556px;
    object-fit: contain;
    border-radius: 0;
  }
  .card-modal-info {
    width: 50%;
    padding: 40px;
    background: #151414;
    color: #fff;
    display: block;
    position: relative;
    height: 450px;
  }
  .card-modal-info h3 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    color: #ffa600;
    font-weight: 600;
    position: absolute;
    top: 40px;
    left: 40px;
  }
  .card-modal-info p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    padding-right: 50px;
    position: absolute;
    top: 100px;
    left: 40px;
  }
  .card-modal-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* FOOTER - DESKTOP ONLY */
  .footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 20px;
  }

  .footer-content {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .footer-copyright {
    font-family: 'SFRegular', Arial, sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    text-align: center;
  }
}


@media (max-width: 800px) {
  .card-modal-content {
    width: 98vw;
    max-width: 98vw;
    max-height: 95vh;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .card-modal-content img {
    max-height: 350px;
    width: 100%;
    object-fit: contain;
    background-color: #000000;
  }
  .card-modal-info {
    padding: 25px 25px 50px 25px;
    flex: 1;
  }
  .card-modal-close {
    top: 10px;
    right: 22px;
    font-size: 2.3rem;
  }
  .card-modal-info h3 {
    font-size: 2rem;
    text-align: left;
    margin: 0 0 20px 0;
    color: #ffa600;
  }
  .card-modal-info p {
    font-size: .9rem;
    text-align: left;
    line-height: 1.4;
    color: #c5c5c5;
    margin: 0;
  }

  .figma-section {
    background-image: url(neww.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 380px;
    padding: 3vw 0vw 4vw 3vw;
    border-radius: 0;
    position: relative;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .figma-title {
    font-family: 'SF Pro', Arial, sans-serif;
    font-size: 3rem;
    text-align: left;
    font-weight: 500;
    color: #fff;
    margin: 30px 0px 20px 25px;
    letter-spacing: 1px;
  }

  .figma-gallery {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .figma-gallery-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 50px 20px 0;
    z-index: 1000;
    cursor: grab;
    border-radius: 0;
    margin-left: 25px;
    scroll-behavior: smooth;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .figma-gallery-row.dragging {
    cursor: grabbing;
    user-select: none;
  }

  .figma-gallery-card {
    flex: 0 0 auto;
    height: 200px;
    width: 500px;
    min-width: 250px;
    max-width: 320px;
    display: inline-block;
    background: none;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: none;
  }

  .figma-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .figma-gallery-card:hover {
    color: #ffa600;
  }

  .figma-gallery-row .figma-gallery-card:last-child {
    margin-right: 8vw !important;
  }

  /* Hide scrollbar for webkit browsers */
  .figma-gallery-row::-webkit-scrollbar {
    height: 6px;
    background: #222;
  }

  .figma-gallery-row::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
  }

  .figma-gallery-row {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  /* Ensure Figma section doesn't have extra spacing */
  .figma-section * {
    box-sizing: border-box;
  }
}



