* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide the default cursor for all elements */
  }
  
  body {
    background-color: white;
    overflow-x: hidden;
    font-family: halyard-display, sans-serif;
    font-weight: 400;
    font-style: normal;    position: relative;
    z-index: 1;
    cursor: none; /* Hide the default cursor */
    user-select: none; /* Prevent text selection */
    min-height: 100vh;
  }
  
  
  header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 64px;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 400;
    z-index: 1000;
    padding-left: 24px;
    will-change: transform;
  }

  .header-left {
    font-size: 12px;
    font-weight: 400;
  }
  
  .header-doc {
    font-size: 12px;
    font-weight: 400;
    position: absolute;
    left: 25%;
    transform: translateX(-50%);
  }
  
  .header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .header-right {
    font-size: 12px;
    font-weight: 400;
    padding-right: 24px;
  }

  .scroll-container {
    display: flex;
    position: relative;
    padding-top: 64px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 1;
    content-visibility: auto;
    contain-intrinsic-size: 0 100vh;
  }
  
  .column {
    width: 33.33vw;
    display: flex;
    flex-direction: column;
    gap: 8vh;
    padding: 2vh;
    position: relative;
    z-index: 1;
    content-visibility: auto;
    contain-intrinsic-size: 0 100vh;
  }
  
  .left-column, .right-column {
    display: flex;
    flex-direction: column;
    gap: 8vh;
    padding: 2vh;
    position: relative;
    z-index: 1;
    content-visibility: auto;
    contain-intrinsic-size: 0 100vh;
  }
  
  img {
    width: 100%;
    height: auto;
    object-fit: contain;
    user-select: none;
    content-visibility: auto;
    contain-intrinsic-size: 0 300px;
  }
  
  a {
    color: black; /* Default link color */
    text-decoration: none; /* Optional: remove underline */
  }
  
  a:hover {
    color: rgb(230, 0, 126); /* Change this to your desired hover color */
  }

  
  #custom-cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    background-color: rgb(230, 0, 126);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
  }
  
  /* Echo Trail Effect */
  .cursor-trail {
    position: fixed;
    width: 16px;
    height: 16px;
    background-color: rgba(230, 0, 126, 0.4); /* Slightly transparent */
    border-radius: 75%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    animation: fadeOut 0.8s ease-out forwards;
  }
  
  @keyframes fadeOut {
    from {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    to {
      opacity: 0;
      transform: translate(-50%, -50%) scale(2);
    }
  }
/* hide page scrollbar */
html { scrollbar-width: none; } /* Firefox */
body { -ms-overflow-style: none; } /* IE and Edge */
body::-webkit-scrollbar, body::-webkit-scrollbar-button { display: none; } /* Chrome */
/* end hide page scrollbar */

/* Overlay Text Styles */
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
    color: black;
    line-height: 2.75;
    font-size: 14px;
    font-family: halyard-display, sans-serif;
    font-weight: 300;
    font-style: normal;    
    max-width: 85ch;
    padding: 0 20px;
}

/* Responsive Design Rules */
@media screen and (max-width: 1024px) {
    .column {
        width: 33.33vw;
        gap: 4vh;
        padding: 1.5vh;
    }
    
    .left-column, .right-column {
        gap: 4vh;
        padding: 1.5vh;
    }

    .overlay-text {
        font-size: 13px;
        line-height: 2.5;
        max-width: 75ch;
    }
}

@media screen and (max-width: 768px) {
    header.main-header {
        height: 48px;
        padding-left: 16px;
    }
    
    .header-left, .header-right, .header-center, .header-doc {
        font-size: 11px;
    }
    
    .header-right {
        padding-right: 16px;
    }
    
    .scroll-container {
        padding-top: 48px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .column {
        width: 33.33vw;
        gap: 3vh;
        padding: 1vh;
    }
    
    .left-column, .right-column {
        gap: 3vh;
        padding: 1vh;
    }

    .overlay-text {
        font-size: 12px;
        line-height: 2.25;
        max-width: 65ch;
        padding: 0 16px;
    }
    
    img {
        max-height: 60vh;
        object-fit: contain;
    }
}

@media screen and (max-width: 480px) {
    header.main-header {
        height: 40px;
        padding-left: 12px;
    }
    
    .header-left, .header-right, .header-center, .header-doc {
        font-size: 10px;
    }
    
    .header-right {
        padding-right: 12px;
    }
    
    .scroll-container {
        padding-top: 40px;
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .column {
        width: 33.33vw;
        gap: 2vh;
        padding: 0.5vh;
    }
    
    .left-column, .right-column {
        gap: 2vh;
        padding: 0.5vh;
    }

    .overlay-text {
        font-size: 11px;
        line-height: 2;
        max-width: 55ch;
        padding: 0 12px;
    }
    
    /* Show default cursor on mobile */
    * {
        cursor: auto;
    }
    
    #custom-cursor, .cursor-trail {
        display: none;
    }
    
    img {
        max-height: 50vh;
    }
}