/* Reset & base styles */
@import url("https://use.typekit.net/thu3xjo.css");


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "freight-display-pro", serif; */
    /* font-weight: 300; */
    font-family: "freight-macro-pro", serif;
    font-weight: 300;
    text-shadow: 0px 0px 10px #576e9b51;
    font-size: 18px;
  }
  html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  /* Layout */
  .container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
.blue{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 102, 185, 0.32);
    mix-blend-mode: multiply;
    z-index: 1000;
    pointer-events: none;
}
.title {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: top center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    pointer-events: all;
    cursor: pointer;
    transition: transform 1.5s ease;
  }  
  
.title.shrink {
    transform: translate(-50%, -49vh) scale(0.18);
    cursor: pointer;
    pointer-events: all;
}
  
.title img {
    width: 100vw;
    height: auto;
}  

.info-text {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 40vw;
    max-width: 500px;
    line-height: 25px;
    text-align: left;
    color: rgb(255, 255, 255);
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1500;
    pointer-events: none;
}
  
  .info-text.show {
    opacity: 1;
  }

  canvas {
    z-index: -1 !important;
    position: fixed !important;
  }

  model-viewer {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    display: block;
    object-fit: contain;
    z-index: 10;
  }
  
  /* NEWSLETTER */
  .newsletter-form {
    margin: 2rem auto 0;
    max-width: 700px;
    width: 100%;
    display: block; 
    text-align: left; 
    pointer-events: all;
  }
  
  
  .input-row {
    display: flex;
    align-items: left;
    border-bottom: 1px solid white;
    padding-bottom: 6px;
  }
  
  .input-row input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-family: inherit;
    outline: none;
    padding: 0;
    margin-right: 12px;
  }
  
  .input-row input::placeholder {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .input-row button {
    background: none;
    border: none;
    color: white;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    margin: 0;
  }

  .icon{
    position: fixed;
    bottom: 10px;
    right: 30px;
    display: flex;
    justify-content: right;
    margin-top: 20px;
    gap: 10px;
    pointer-events: all;
    z-index: 1500;
    opacity: 0;
  }
  .icon.show{
    opacity: 1;
  }
  .icon img{
    width: 36px;
  }
  
  
  /* Responsive for small screens */
  @media (max-width: 480px) {
    *{
        font-size: 18px;
    }
    model-viewer {
        display: none;
        top: -10vh;
    }

    .title.shrink {
        transform: translate(-50%, -40vh) scale(0.5);
        cursor: pointer;
        pointer-events: all;
    } 
    .newsletter-form {
        margin: 1rem auto 0;
        width: 100%;
        display: block; 
        text-align: left; 
        pointer-events: all;
    }
    .info-text{
        bottom: 100px;
        line-height: 19px;
        text-align: justify;
        width: 85vw;
    }
    .icon{
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
    }
  }
  