/***********************************************************************************/
/******************************** General Vars *************************************/
/***********************************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Tourney:ital,wght@0,100..900;1,100..900&family=Wallpoet&display=swap');


:root {
    
    --section-1-primary: #23a6d5;
    --section-1-accent: #ff004d;
    --section-1-text: #14192b;
    --section-1-highlight: #7e2553;
    --section-1-background: #304684;
    --section-1-font: "Anton SC", serif;

    /* Professional & Creative Space Theme */
    --section-2-primary: #0a1628;
    --section-2-accent: #00ffff;
    --section-2-text: #e6f7ff;
    --section-2-highlight: #7f00ff;
    --section-2-background: radial-gradient(circle at center, #1a1a4f, #0a0a2a);
    --section-2-font: "Wallpoet", sans-serif;

    /* DOS-inspired Space Theme */
    --section-3-primary: #000420;
    --section-3-accent: #00ff9f;
    --section-3-text: #40ff40;
    --section-3-highlight: #00ccff;
    --section-3-background: linear-gradient(180deg, #001933, #000420);
    --section-3-font: 'VT323', monospace;

    /* Connection/Network Space Theme */
    --section-4-primary: #1a0033;
    --section-4-accent: #ff66ff;
    --section-4-text: #f0f0ff;
    --section-4-highlight: #00ffff;
    --section-4-background: radial-gradient(circle at center, #2a0066, #1a0033);
    --section-4-font: 'Montserrat', sans-serif;

    --mobile-breakpoint: 768px;
}


/***********************************************************************************/
/*********************************** General ***************************************/
/***********************************************************************************/

.portal-container {
    position: relative;

    min-height: 100vh;
    width: 100%;
}

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

body, html {
    width: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
    scroll-behavior: smooth;
}

html {
    scrollbar-width: none;
}

body {
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/***********************************************************************************/
/************************************* Nav *****************************************/
/***********************************************************************************/

.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    padding: 30px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-end;
    z-index: 999!important;
    text-decoration: none;
}

.nav{
    margin: 0 0 100px 30px;
    padding: 0;
    list-style: none;
}

.nav-counter {
    font-size: 24px;
    transition: all .15s ease-out;
}

.nav-title {
    font-size: 32px;
    font-weight: 300;
    margin: 0 0 0.25em;
    width: 300px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.3s ease-out, opacity 0.2s ease-out;

    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1px;
    border-radius: 4px;
  }

  .nav-body {
    font-weight: 100;
    font-size: 18px;
    font-size: 18px;
    width: 300px;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.3s ease-out, opacity 0.2s ease-out;
  }

  .nav li {
    position: relative;
    transition: all 0.3s ease-out;
    margin-bottom: 5vw;
    list-style-type: none;
}
  .nav li:after {
    content: "";
    display: block;
    border-left: 6px solid #e9019a;
    border-top: 6px solid #e9019a;
    height: 100vh;
    width: 20px;
    position: absolute;
    left: -30px;
    top: 15px;
  }
  .nav li a {
    display: block;
    padding: 0;
    color: #fff;
    transition: all 0.15s ease-out;
    font-weight: 100;
    text-decoration: none;

    
  }
  .nav li a:hover {
    background-color: transparent;
    padding-left: 1em;
  }
  .nav li a:focus {
    background-color: transparent;
  }
  .nav li.active {
    pointer-events: none;
    padding-left: 1em;
  }
  .nav li.active:after {
    width: 35px;
    height: 400px;
    top: 35px;
  }
  .nav li.active .nav-counter {
    font-size: 48px;
  }
  .nav li.active .nav-title {
    height: 40px;
    opacity: 1;
    overflow: visible;
  }
  .nav li.active .nav-body {
    height: 100px;
    opacity: 1;
    overflow: visible;
  }
