    body {
      font-family: 'neue-haas-grotesk-text', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      min-height: 100vh;
      background-color: #ffffff;
    }

    h1{
      font-family: 'neue-haas-grotesk-display';
    }
    h2{
      font-family: 'neue-haas-grotesk-display';
    }
    h3{
      font-family: 'neue-haas-grotesk-display';
    }
    h4{
      font-family: 'neue-haas-grotesk-display';
    }

     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

@scope(.firstsection){
   

    /* Header Styles */
    
    .header {
      background-color: #090909;
      padding: 12px 60px;
    border-bottom: 0.5px solid #545454; 
    }

    .header-nav {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0px;
    }

    .header-left,
    .header-right {
      display: flex;
      gap: 24px;
    }

    .header-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      transition: color 0.2s ease;
    }

    .header-link:hover {
      color: #cccccc;
    }

    /* Navigation Styles */
    .navigation {
      background-color: #090909;
      border-bottom: 0.5px solid #484848;
      /* border-top: 1px solid #4e4e4e; */
      padding: 28px 60px;
      z-index: 110;
      transition: background-color 0.5s;
    }

    #main-nav.sticky {
  position: fixed;
  top: 0;
  width:100%;
  background-color:#ffffff;

}


.navbarOffsetMargin {
  padding-top: 110px;
}


.navbarOffsetMargin_mobile {
  margin-top: 90.5px;
}

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 0px;
    }

    
    .logo-text {
      font-size: 34px;
      font-weight: 600;
      color: #ffffff;
      text-decoration: none;
    }

    .logo-text {
      font-size: 35px;
      font-weight: 600;
      color: #ffffff;
      text-decoration: none;
    }

    #logo_text.sticky{
      color:red;
    }

    #aboutlink.sticky{
      color:#000000;
    }

     #dyedlink.sticky{
      color:#000000;
    }

     #greigelink.sticky{
      color:#000000;
    }

     #wovenslink.sticky{
      color:#000000;
    }
     #knitslink.sticky{
      color:#000000;
    }
     #contactlink.sticky{
      color:#000000;
    }
     #resourceslink.sticky{
      color:#000000;
    }
     #careerslink.sticky{
      color:#000000;
    }
     #supportlink.sticky{
      color:#000000;
    }
     #insightslink.sticky{
      color:#000000;
    }

     #searchlink.sticky{
      color:#000000;
    }
    
    .nav-logo {
      flex-shrink: 0;
      background: url('logo.svg')no-repeat; 
      background-size: contain;
      height: 50px;
      width: 200px;
        
     
    }

    @media(max-width: 468px){
       .nav-logo {
      flex-shrink: 0;
      background: url('logo.svg')no-repeat; 
      background-size: contain;
      height: 41px;
      width: 200px;
        
     
    }
    }

    .drift{
      background: url('logo.svg')no-repeat; 
      background-size: contain;
    }




    .nav-menu {
      display: flex;
      gap: 32px;
      margin-right: 40px;
      margin-left: auto;
      align-items: center;
    }

    .nav-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 15px;
      font-weight: 400;
      transition: color 0.2s ease;
    }

    .nav-link:hover {
      color: #e60026;
    }

    .nav-search {
      color: #ffffff;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .nav-search:hover {
      color: #e60026;
    }

    /* Mobile Navigation Styles */
    .hamburger-button {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
      position: relative;
    }

    .hamburger {
      width: 24px;
      height: 18px;
      position: relative;
      transform: rotate(0deg);
      transition: 0.3s ease-in-out;
    }

    .hamburger span {
      display: block;
      position: absolute;
      height: 2px;
      width: 100%;
      background: #333;
      border-radius: 1px;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: 0.25s ease-in-out;
    }

    .hamburger span:nth-child(1) {
      top: 0px;
    }

    .hamburger span:nth-child(2) {
      top: 8px;
    }

    .hamburger span:nth-child(3) {
      top: 16px;
    }

    .hamburger.open span:nth-child(1) {
      top: 8px;
      transform: rotate(135deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      left: -60px;
    }

    .hamburger.open span:nth-child(3) {
      top: 8px;
      transform: rotate(-135deg);
    }

    .mobile-nav-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-nav-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-nav-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100vw;
      height: 100vh;
      background: white;
      z-index: 1000;
      transition: right 0.3s ease;
      overflow-y: auto;
    }

    .mobile-nav-drawer.open {
      right: 0;
    }

    .mobile-nav-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid #eee;
      background: #f8f9fa;
    }

    .mobile-logo {
      font-size: 18px;
      font-weight: bold;
      color: #e60026;
    }

    .close-button {
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: #666;
    }

    .close-button:hover {
      color: #333;
    }

    .mobile-nav-content {
      padding: 20px;
    }

    .mobile-nav-section {
      margin-bottom: 30px;
    }

    .mobile-nav-section-title {
      font-size: 14px;
      font-weight: 600;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 15px;
      padding-bottom: 8px;
      border-bottom: 1px solid #eee;
    }

    .mobile-nav-link {
      display: block;
      padding: 12px 0;
      color: #333;
      text-decoration: none;
      font-size: 16px;
      border-bottom: 1px solid #f5f5f5;
      transition: color 0.2s ease;
    }

    .mobile-nav-link:hover {
      color: #e60026;
    }

    .mobile-nav-link:last-child {
      border-bottom: none;
    }

    /* Hero Section Styles */
    .hero {
      position: relative;
      height: calc(100vh - 150px);
      min-height: 400px;
      overflow: hidden;
    }

    .hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      /* transform: scaleX(-1); */
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-content {
      position: relative;
      max-width: 1240px;
      margin: auto; 
      z-index: 2;
      height: 100%;
      /* background: linear-gradient(to right, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%); */
      display: flex;
      align-items: center;
      justify-content: flex-end;
      /* margin-left: 160px; */
    }

    .hero-text {
      max-width: 55%;
    
    }

    .hero-title {
      font-size: 80px;
      letter-spacing: 0.25px;
      font-weight: 300;
      color: #ffffff;
      line-height: 1.1;
      margin-bottom: 32px;
      max-width: 800px;
    }

    .hero-description {
      font-size: 18px;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 40px;
      max-width: 600px;
      opacity: 0.9;
    }

    .hero-button {
      background: transparent;
      border: 2px solid #ffffff;
      color: #ffffff;
      padding: 18px 36px;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 1px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
    }

    .hero-button:hover {
      background-color: #ffffff;
      color: #000000;
    }

    @media(max-width:1470px) and (min-width:768px) {
      

      .hero-title{
        font-size: 75px;
      }
    }

     @media(max-width:1350px) and (min-width:768px){
      
      .hero-title{
        font-size: 70px;
      }
    }


    /* Mobile Styles */
    @media (max-width: 768px) {
      .header {
        display: none;
      }

      .hero-image{

      }

      .nav-container {
        max-width: 768px;
        padding: 0 16px;
      }

      .nav-menu {
        display: none;
      }

      .nav-search {
        display: none;
      }

      .logo-text {
        font-size: 20px;
      }

      .navigation{
        background: white;

      }

      .navigation {
        padding: 20px 16px;
      }

      .hamburger-button {
        display: block;
      }

      .hero {
        min-height: 500px;
      }

      .hero-text {
        padding: 0 16px;
        margin-right: auto;
        max-width:100%;
    padding: 0 20px;
      }

      .hero-text {
        max-width:100%;
    padding: 0 20px;
      }



      p {
        padding: 0 20px;
      }

      h1 {
        padding:0 20px;
      }

      .hero-button{
        margin: 0 20px;
      }


      .hero-title {
        font-size: 2.75rem;
        margin-bottom: 24px;
      }

      .hero-title {
        text-align: center;
      }



      .hero-content{
    align-items: flex-end;
    padding-bottom: 80px;
  }

  .hero {
    height: 80vh;
  }

      .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
      }

      .hero-description {
        text-align: center;
      }

      .hero-button {
        padding: 14px 28px;
        font-size: 13px;
      }

       .hero-button {
        margin:auto;
        display:block;
      }
    }

    @media (max-width: 1024px) and (min-width: 769px) {
      .nav-menu {
        gap: 20px;
      }

      .nav-link {
        font-size: 15px;
      }

      .hero-title {
        font-size: 48px;
      }

      .hero-description {
        font-size: 17px;
      }
    }

    /* Prevent body scroll when menu is open */
    body.mobile-nav-open {
      overflow: hidden;
    }
  }
  