:root {
    --scrollbar-width: 0px;
    --black: #121212;
    --white: #F1F1F1;
    --yellow: #C9FE6E;
    --color-focus: limegreen;
    --grey: #4e4e4e;
    --greylight: #868686;
    --font-main: "Kanit", monospace, serif;
    --font-focus: "Source Code Pro", monospace, serif;
}

::-webkit-scrollbar {
display: none;
}

html {
scrollbar-width: none;
}

.highlight {
    color: var(--color-focus);
}
.shadow {
    text-shadow: 0px 0px 1px var(--black);
}

::selection {
    background-color: var(--color-focus);
    color: var(--black);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    background-color: var(--white);
    color: var(--black);
}
    
.logo-box {
    top: 20px;
    left: 100%;
    position: fixed;
    height: 80px;
    width: 80px;
    background-color: var(--black);
    animation: logo-box 3s ease;
    animation-delay: 2s;
}

.logo {
    position: fixed;
    top: 30px;
    right: 20px;
    height: 50px;
    opacity: 0;
    animation: logo 3s ease;
    animation-delay: 2s;
}

@keyframes logo-box {
    0%, 10%,90%,100% {
        transform: scaleX(0);
    }
    5%,95% {
        transform: scaleX(4);
    }
}

@keyframes logo {
    0%,5%,96%,100% {
        opacity: 0;
    }
    6%,95% {
        opacity: 1;
    }
}

main {
    padding: 1px;
}

.black-wave-svg {
    position: absolute;
    /* width: 104vw; */
    /* transform: translateX(-2vw); */
}

.l1 {
    font-weight: normal;
    font-size: 10vh;
    margin: 10rem 5rem;
    line-height: 1.1;
}

.l1 > span {
    text-wrap: nowrap;
}

.product-container-grandparent {
    width: 100%;
    margin: 100vh 0 50vh;
}

.black-box {
    background-color: var(--black);
    width: 80%;
    height: 60vh;
    border-radius: 10px;
    position: absolute;
    top: 95vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-transform: uppercase;
}

.black-box h3 {
    letter-spacing: 1rem;
    font-size: 25vh;
    line-height: 0.9;
    transform: translateX(-1.2vh) translateY(-1vh);
}

.scroll-hint {
    text-transform: uppercase;
    font-size: 1rem;
    position: absolute;
    top: 90vh;
    right: 15%;
    color: var(--black);
    font-family: var(--font-focus);
}

.product-container-parent {
    margin: 50vh 0 -400vh;
    color: var(--white);
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    transform-origin: center center;
}

.product {
    height: 100vh;
    text-align: center;
    display: flex;
    margin-top: -100vh;
}

.p1 {
    margin-top: 0;
}

.product-image-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    /* height: 20vw; */
    /* width: 20vw; */
    /* background-color: var(--white); */
    border-radius: 10px;
    /* color: rgb(192, 192, 192); */
    height: 50vh;
    overflow: hidden;
}

.product-image img {
    height: 100%;
}

.reset-button {
    position: absolute;
    background-color: transparent;
    border: none;
    color: var(--color-focus);
    transform: translateY(-200%) translateX(18vw);
    cursor: pointer;
    font-family: inherit;
    font-size: .8rem;
    letter-spacing: 1px;
    padding: 5px 10px;
}

.reset-button:hover {
    text-decoration: underline;
}

.model-container {
    height: 100%;
    width: 50%;
}

.model {
    height: 100%;
    width: 100%;
    overflow: visible;
}

.about-standee-container {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5%;
}

.about-standee-container p {
    max-width: 50%;
}

@media (max-width: 768px) {
    .product {
        flex-direction: column;
    }

    .product * {
        width: 100%;
    }

    .about-standee-container p {
        max-width: 80%;
    }

    .product-heading {
        position: relative;
    }
}

.contact-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-heading {
    font-size: 2.5rem;
    position: absolute;
    top: -2vh;
    left: 0;
    z-index: 1;
}

.contact-form {
    position: absolute;
    top: 90%;
}

.contact label {
    font-size: 1rem;
}

.contact input {
    border: none;
    background-color: transparent;
    border-bottom: 1px solid gray;
    width: 220px;
    font-family: inherit;
    padding: 0 .5rem;
    font-size: 1em;
}

.contact input:focus {
    outline: none;
}

.send-btn {
    background: transparent;
    border: none;
    overflow: visible;
    transition: all 0.2s;
    cursor: pointer;
    color: var(--black);
    margin: 0 1em;
}

.send-btn span {
    transition: all 0.3s ease-in-out;
}

.send-btn svg {
    transition: transform 0.3s ease-in-out;
}

.send-btn:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.send-btn:hover svg {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

.social-media {
    display: flex;
    gap: 1rem;
    margin: 20px;
    position: absolute;
    bottom: 0;
    font-family: var(--font-focus);
    z-index: 1;
    text-wrap: nowrap;
}

a {
    color: var(--black);
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.watermark {
    margin: 20px;
    position: absolute;
    right: -130px;
    font-family: var(--font-focus);
    z-index: 1;
    text-wrap: nowrap;
    color: #a9a9a9;
    transform: rotate(-90deg);
    font-size: 14px;
}

.watermark a {
    color: inherit;
    text-decoration: underline;
}

.watermark a:hover {
    color: var(--black);
}

#scrollButton {
    border: none;
    cursor: pointer;
}

#topButton {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-family: "Source Code Pro", monospace, serif;
    font-size: 16px;
    background: none;
    border: none;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

#topButton:hover {
    text-decoration: underline;
}

#graphic-pen {
    position: absolute;
    height: 100vh;
    width: 50%;
    right: -8%;
    z-index: -2;
}

.invisible-box {
    background-color: transparent;
    height: 100%;
    width: 75%;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

.scroll-container {
    position: fixed;
    top: 50%;
    left: 10px;
    width: 6px;
    height: 100px;
    background-color: #636363;
    border-radius: 3px;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 9999;
    transform: translateY(-50%);
  }
  
  .scroll-progress {
    width: 100%;
    height: 0;
    background-color: #ededed;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    transition: height 0.2s ease;
  }
  
  .scroll-container.visible {
    opacity: 1;
  }
  
  .scroll-container.visible .scroll-progress {
    opacity: 1;
  }
  