/* © 2025 Toan Pham */


@font-face {
  font-family: 'PorshaRichela';
  src: url('../PorshaRichela.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0;
}

@font-face {
    font-family: 'Sinoreta';
    src: url('../Sinoreta.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0;
  }

:root {
    --_noise-texture: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' width='200' height='200'><defs><filter id='n' x='0' y='0' width='100%' height='100%' color-interpolation-filters='sRGB'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch' result='t'/><feColorMatrix type='saturate' values='0' in='t' result='g'/><feComponentTransfer in='g' result='a'><feFuncA type='linear' slope='0.6'/></feComponentTransfer></filter></defs><rect width='200' height='200' filter='url(%23n)'/></svg>");

    --_noise-size: 200px;
    --_gradient-blend-mode: normal;
    --_gradient-blur: 180px;
    --_gradient: radial-gradient(at 8.264462809917356% 36.76868239921337%, #0C1114 0px, transparent 50%), radial-gradient(at 31.86409550045914% 24.969272369714847%, #0C1114 0px, transparent 50%), radial-gradient(at 92.28650137741047% 77.86996066863323%, #0C1114 0px, transparent 50%), radial-gradient(at 72.45179063360881% 66.75884955752213%, #0C1114 0px, transparent 50%), radial-gradient(at 1.8365472910927456% 0.9771386430678467%, #EBEBD3 0px, transparent 50%), radial-gradient(at 100% 97.04400196656835%, #EBEBD3 0px, transparent 50%);

    --_color-primary: #ebe2d3;
    --_color-secondary: #0C1114;
}

a {
    text-decoration: none;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeLeft {

    0% {
        transform: translateX(-100vw);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes fadeRight {

    0% {
        transform: translateX(100vw);
    }
  
    100% {
        transform: translateX(0);
    }
}

/* .cursor {
  width: 15px;
  height: 15px;
  border: 1px solid var(--_color-primary);
  border-radius: 50%;
  position: fixed;
  top: -7.5px;
  left: -7.5px;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .5);
  backdrop-filter: blur(1.5px) contrast(100%) brightness(100%);
} */

body {
    /* cursor: none; */
  background: var(--_gradient) #0c1114;
  mix-blend-mode: var(--_gradient-blend-mode);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--_color-primary);
}

h1, h2 {
  font-family: 'PorshaRichela', serif;
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-size: 130px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 4s ease-in-out both;
  animation-delay: .3s;
  z-index: 1;
  }

h2 {
  font-size: 40px;
}




.noise {
  background-image: var(--_noise-texture);
  background-size: var(--_noise-size);
  background-position: center;
  background-repeat: repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* opacity: 0.5; */
  z-index: 3;
  filter: brightness(.3);
}

.frosted-backdrop {
  backdrop-filter: blur(var(--_gradient-blur)) contrast(100%) brightness(100%);
  -webkit-backdrop-filter: blur(var(--_gradient-blur)) contrast(100%) brightness(60%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.content {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1400px;
  height: 100vh;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: scroll;
  overflow-x: hidden;

}

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1400px;
    height: 50px;
    z-index: 4;
    /* border: 1px solid red; */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.gif {
    /* border: 1px solid red; */
    height: 32px;
    padding: 0px;
    margin: 0px;
}
.gif img {
    width: auto;
    height: 36px;
    transform: translatey(-4px);
    /* filter: blur(0.1px); */
}

.bar-container {
    /* border: 1px solid red; */
    height: auto;
    width: auto;
    min-height: 28px;
    min-width: 34px;
    transition: all 0.3s ease-in-out;
  
}

.bar-container:hover {
    cursor: pointer;
}

.bar {
    width: 34px;
    height: 4px;
    background-color: var(--_color-primary);
    border-radius: 500px;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
    position: relative;
    /* box-sizing: border-box; */
}

.bar::before, .bar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 4px;
    background-color: var(--_color-primary);
    border-radius: 500px;
    transition: all 0.3s ease-in-out;
}

.bar::before {
    width: 19px;
    transform: translateY(10px);
}

.bar::after {
    width: 26px;
    transform: translateY(-10px);
}

.bar.hover::before, .bar.hover::after {
    width: 34px;
    transition: all 0.3s ease-in-out;
}

.bar.active::before, .bar.active::after {
    width: 16px;
    height: 3px;
    background-color: var(--_color-primary);
    transition: all 0.3s ease-in-out;
}

.bar.active::before {
    transform: translate(-10px, 13px) rotate(45deg);
}

.bar.active::after {
    transform: translate(-10px, 13px) rotate(-45deg);
}

.bar.active { 
    background-color: var(--_color-primary);
    color: var(--_color-secondary);
    width: 34px;
    height: 3px;
    transform: translateY(0px);
    transition: all 0.3s ease-in-out;
    
}

.header ul {
    height: 28px;
    opacity: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 0 30px;
    transition: all 0.3s ease-in-out;
    gap: 50px;
}

.header ul li {
    width: auto;
/* margin-right: 70px; */
}

.header ul.active {
    /* border: 1px solid red; */
    /* Ihre aktiven UL-Styles hier */
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.header ul li a h2{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--_color-primary);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
    height: 28px;
    padding: 0 5px;
    font-size: 22px;
    
}

.header ul li a h2:hover {
   transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
}

/* Scrollbar ausblenden für .cv-left-bottom */
* {
    /* Webkit-Browser (Chrome, Safari, Edge) */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}


#home {
    transform: translatey(0vh);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    line-height: 1;
    transition: all 0.75s ease-in-out;
    /* border: 1px solid red; */
    
}

#home * {
    margin: 0;
    padding: 0;
}

#home p {
    border: 1px solid red;
    font-size: 30px;
}

.hero-sub {
    z-index: 2;
    padding-top: 5px;
    align-self: flex-end;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap:10px;
    animation: fadeRight 1.2s ease-in-out both;
    animation-delay: 3s;
}

.hero-sub h2, .hero h2, #home h2 {
    font-family: 'Sinoreta', serif;
    font-size: 25px;

}

#home h2 {
    border: 1px solid var(--_color-primary);
    border-radius: 500px;
    padding: 4px 40px;
    line-height: 1;

}



.hero-sub h2 {
    border: 1px solid var(--_color-primary);
    border-radius: 500px;
    padding: 4px 20px;
    line-height: 1;
    background-color: var(--_color-primary);
    color: var(--_color-secondary);

}

.hero-sub h2:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.hero-sup {
    z-index: 2;
    align-self: flex-start;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
        gap:10px;
        animation: fadeLeft 1.2s ease-in-out both;
        animation-delay: 2s;
    }

.hero-sup h2:hover {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.circle {
    width: auto;
    height: 30px; /* Gleiche Höhe wie die Schriftgröße des h2 */
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid var(--_color-primary);
    display: inline-block;
    vertical-align: middle;
    
}

.pill-glass-1 {
    position: relative;
    top: 60px;
    left: 140px;
    width: 250px;
    height: 60px;
    border-radius: 500px;
    display: inline-block;
    vertical-align: middle;
    backdrop-filter: blur(5px);
    box-shadow: 0 -1px 0.1px 0 #ebebd312, 0 1px 1px 0 #ebebd3de ,0 10px 10px 0px rgba(0, 0, 0, 0.7);

}



.pill-glass-2 {
    margin-top: -100px !important;
    position: relative;
    top: 25px;
    left: -20px;
    width: 270px;
    height: 80px;
    border-radius: 500px;
    display: inline-block;
    vertical-align: middle;
    backdrop-filter: blur(5px);
    box-shadow: 0 -1px 0.1px 0 #ebebd312, 0 1px 1px 0 #ebebd3de ,0 10px 10px 0px rgba(0, 0, 0, 0.7);

}

.pill-glass-2::before, .pill-glass-1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    
   
        background-image: var(--_noise-texture);
        background-size: var(--_noise-size);
        background-position: center;
        background-repeat: repeat;
        position: fixed;
     
        pointer-events: none;
        /* opacity: 0.5; */
        z-index: 3;
        filter: brightness(.3);
        border-radius: 500px;
      
}

.pill-glass-1::before {
    width: 250px;
    height: 60px;
}

.pill-glass-2::before {
    width: 270px;
    height: 80px;
}

#cv {
    position: fixed;
    top: 90px;
    left: 20px;
    transform: translatey(-150vh);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: calc(100% - 40px);
    max-width: 1400px;
    height: calc(100vh - 90px);
    transition: all 0.75s ease-in-out;
    /* padding: 70px 30px 0px 30px; */
    /* border: 1px solid greenyellow; */
}

.cv-left {
    width: 33%;
    height: calc(100% - 40px);
    /* border: 1px solid red; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    border-top-left-radius: 50px;

}

.cv-left-top {
    width: 100%;
    height: 60%;
    /* border: 1px solid yellow; */
    border-top-left-radius: 50px;
    background-image: url('/foto.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: sepia(100%) contrast(100%) saturate(80%); */
    /* filter: brightness(.9); */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.8);
  
}

.cv-left-top h2 {
    font-size: 30px;
    padding: 4px 20px;
    border-radius: 500px;
    color: var(--_color-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 -1px 0.1px 0 #ebebd312, 0 1px 1px 0 #ebebd35b ,0 10px 10px 0px rgba(0, 0, 0, 0.5);
}

.cv-left-top-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.cv-left-top-text span {
    /* border: 1px solid var(--_color-primary); */
    padding: 4px 10px;
    border-radius: 500px;
    color: var(--_color-primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 -1px 0.1px 0 #ebebd312, 0 1px 1px 0 #ebebd35b ,0 10px 10px 0px rgba(0, 0, 0, 0.5);
    
}

.cv-left-bottom {
    width: 100%;
    height: 40%;
    border-top-right-radius: 50px;
    background-color: var(--_color-primary);
    color: var(--_color-secondary);
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    /* border: 1px solid red; */
}

.cv-left-bottom-text {
    width: calc(100% - 40px);
    height: 100%;
    overflow-y: scroll;
    position: relative;
}

.timeline-table {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.timeline-table-left, .timeline-table-right {
    width: 50%;
    height: auto;
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    margin-bottom: 25px;
    box-sizing: border-box;
    letter-spacing: 0em;
    
    /* border: 1px solid blue; */
}

/* .timeline-table-left {
    text-align: right;
    padding-right: 20px;
} */



.cv-left-bottom-text span {
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    margin-right: 20px;
}

#cv::before, #projects::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    
   
        background-image: var(--_noise-texture);
        background-size: var(--_noise-size);
        background-position: center;
        background-repeat: repeat;
        width: 100%;
        height: 100%;
        mix-blend-mode: normal;
        pointer-events: none;
        opacity: .5;
        z-index: 30;
        filter: brightness(.2);
         
}




.scroll-indicator {
    align-self: flex-end;

    width: 20px;
    height: 90%;
    /* background-color: var(--_color-secondary); */
    /* border-radius: 500px; */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
    box-sizing: border-box;
    border-left: 1px solid var(--_color-secondary);
}   

/* .scroll-indicator-point {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    border: 1px solid var(--_color-secondary);
    transition: all 0.3s ease-in-out;
}

.scroll-indicator-point.active {
    background-color: var(--_color-secondary);
    transition: all 0.3s ease-in-out;
} */

.scroll-text {
    width: auto;
    height: auto;
    white-space: nowrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .3em;
    writing-mode: vertical-lr;
    /* border: 1px solid red; */
}

h3 {
    margin:0 0 15px 0;
    padding:0;
    font-size: 35px;
    font-family: 'PorshaRichela', serif;
    font-weight: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* border: 1px solid red; */
}





.cv-right {
    width: 66%;
    height: calc(100% - 10px);
    /* border: 1px solid blue; */
    /* gap: 10px; */
    /* box-sizing: border-box; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: var(--_color-secondary);
    gap: 10px;
}


.cv-right-top {
    width: 100%;
    height: 40%;
    /* border: 1px solid red; */
    background-color: var(--_color-primary);
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    position: relative;
    overflow-y: scroll;
}

.cv-right-top h3 {
    font-size: 80px;
    font-family: 'PorshaRichela', serif;
    font-weight: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
    line-height: 1;
    margin:0;
    padding:0;
    /* border: 1px solid red; */
}

.cv-right-top span {
    font-size: 16px;
    font-family: 'Open Sans', Arial, sans-serif;
 
}

.cv-right-bottom {
    width: 100%;
    height: calc(60% - 10px);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.cv-right-bottom-left {
    width: 50%;
    height: 100%;
    background-color: var(--_color-primary);
    padding: 20px;
    box-sizing: border-box;
    overflow-y: scroll;
    position: relative;
}

.cv-right-bottom-right {
    width: 50%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

*{
    box-sizing: border-box;
}
.cv-right-bottom-right-top {
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 40%;
    background-color: var(--_color-primary);
    overflow-y: scroll;
    position: relative;
}

.cv-right-bottom-right-bottom {
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    height: 60%;
    background-color: var(--_color-primary);
    border-bottom-right-radius: 50px;
    overflow-y: scroll;
    position: relative;
}

.pill {
    font-size: 16px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 5px 10px;
    border-radius: 500px;
    border: 1px solid var(--_color-secondary);
    width: fit-content;
    margin: 0 0 10px -4px;
}

.pill-sub {
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    width: 100%;
    hyphens: auto;
    margin-bottom: 20px;
   }

.cv-right-bottom-right-top p {
    font-size: 14px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    width: 100%;
    margin-bottom: 10px;
    
}
.cv-right-bottom-right-top p:before {
    content: "";
    margin-right: 10px;
    border: 1px solid var(--_color-secondary);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
   }

.logo-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    box-sizing: border-box;
    /* border: 1px solid red; */
}




.software-logo {
    width: 35px;
    height: auto;
    aspect-ratio: 1/1;
    filter: saturate(120%) contrast(120%);
    transition: all 0.3s ease-in-out;
}

/* Lazy Loading Styles */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
    opacity: 1;
}

.lazy-bg {
    background-image: none !important;
}

.lazy-bg.bg-loaded {
    background-image: inherit !important;
}

/* Loading Placeholder */
.software-logo.lazy {
    background-color: #f0f0f0;
    border-radius: 4px;
}


/* Instructions */


.cv-left-bottom::before, .cv-right-bottom-right-top::before, .cv-right-bottom-right-bottom::before, .cv-right-top::before, .cv-right-bottom-left::before{
    content: "Scroll ➝ ";
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    color: var(--_color-primary);
    text-transform: uppercase;
    letter-spacing: .3em;
    writing-mode: vertical-lr;
    background-color: rgba(0, 0, 0, 0.75);
    transition: all 0.3s ease-in-out;
    /* backdrop-filter: blur(2px); */
    z-index: var(--pseudo-z-index, -100); /* Standard: versteckt, JavaScript steuert */
    opacity: var(--pseudo-opacity, 0); /* Standard: transparent, JavaScript steuert */
}


/* End Instructions */

#projects {
    position: fixed;
    top: 90px;
    left: 20px;
    transform: translatey(-150vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 40px);
    max-width: 1400px;
    height: calc(100vh - 190px);
    transition: all 0.75s ease-in-out;
    color: var(--_color-secondary);

    
    /* border: 1px solid #00d0ff; */
}



.pj-top {
    padding: 0px 20px;
    width: 70%;
    height: 30%;
    background-color: var(--_color-primary);
    border-top-right-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

}

.pj-top h2 {
    margin-top: 20px;
    /* border: 1px solid red; */
    font-size: 40px;
    font-family: 'PorshaRichela', serif;
    font-weight: normal;
    font-style: normal;
    text-rendering: optimizeLegibility;
    color: var(--_color-secondary);
}



.pj-bottom {
    width: 70%;
    height: 70%;
    background-color: var(--_color-primary);
    border-bottom-left-radius: 50px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    box-sizing: border-box;
    padding: 20px;
    overflow-y: scroll;
    /* Scrollbar immer anzeigen - auch wenn nicht gescrollt werden kann */
    scrollbar-width: thin; /* Firefox */
    -ms-overflow-style: scrollbar; /* Internet Explorer */
    /* Padding rechts für Scrollbar-Platz */
    padding-right: 28px;
}

/* Webkit-Browser Scrollbar Styling */
.pj-bottom::-webkit-scrollbar {
    width: 8px;
    /* Scrollbar immer anzeigen */
    display: block !important;
}

.pj-bottom::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    /* Track immer sichtbar */
    min-height: 100%;
}

.pj-bottom::-webkit-scrollbar-thumb {
    background: var(--_color-secondary);
    border-radius: 4px;
    /* Thumb immer sichtbar - auch wenn nicht gescrollt werden kann */
    min-height: 40px;
}

.pj-bottom::-webkit-scrollbar-thumb:hover {
    background: rgba(12, 17, 20, 0.8);
}

/* Scrollbar für Firefox und IE immer sichtbar */
.pj-bottom {
    /* Scrollbar-Platz reservieren */
    scrollbar-gutter: stable;
}

.pj-bottom-left {
    box-sizing: border-box;
    width: 40%;
    height: auto;
    /* border: 1px solid red; */
}

.pj-bottom-right {
    box-sizing: border-box;
    width: 50%;
    height: auto;
    /* border: 1px solid red; */
}

#projects span {
    color: var(--_color-primary);
    font-size: 18px;
    font-family: 'Sinoreta', Arial, sans-serif;
    font-weight: 400;
    /* text-transform: uppercase; */
    letter-spacing: .1em;
    /* writing-mode: vertical-lr; */
}

#contact {
    position: fixed;
    top: 90px;
    left: 20px;
    transform: translatey(-150vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    max-width: 1400px;
    height: calc(100vh - 90px);
    transition: all 0.75s ease-in-out;
    /* border: 1px solid #2bff00; */
}

#contact a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--_color-primary);
    font-family: 'Sinoreta', Arial, sans-serif;
    transition: all 0.3s ease-in-out;
    /* letter-spacing: 0em; */
}

#contact a:hover {
    transform: scale(1.1) translateY(-5px);
    letter-spacing: 0.2em;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

#contact a svg {
    width: 20px;
    height: 20px;
}


@media (max-width: 768px) {


    .content, .header, .gif, .gif img, .bar-container, .bar-container:hover, .bar, .bar::before, .bar::after, .bar.hover::before, .bar.hover::after, .bar.active::before, .bar.active::after, .bar.active, .header ul, .header ul li, .header ul.active, .header ul li a h2, .header ul li a h2:hover, #home, #home , #home p, .hero-sub, .hero-sub h2, .hero h2, #home h2, .hero-sub h2:hover, .hero-sup, .hero-sup h2:hover, .circle, .pill-glass-1, .pill-glass-2, .pill-glass-2::before, .pill-glass-1::before, .pill-glass-1::before, .pill-glass-2::before, #cv, .cv-left, .cv-left-top, .cv-left-top h2, .cv-left-top-text, .cv-left-top-text span, .cv-left-bottom, .cv-left-bottom-text, .timeline-table, .timeline-table-left, .timeline-table-right, .cv-left-bottom-text span, #cv::before, #projects::before, #contact::before, .scroll-indicator, .scroll-indicator-point.active, .scroll-text, .cv-right, .cv-right-top, .cv-right-top h3, .cv-right-top span, .cv-right-bottom, .cv-right-bottom-left, .cv-right-bottom-right, .cv-right-bottom-right-top, .cv-right-bottom-right-bottom, .pill, .pill-sub, .cv-right-bottom-right-top p, .cv-right-bottom-right-top p:before, .logo-container, .software-logo, .lazy, .lazy.loaded, .lazy-bg, .lazy-bg.bg-loaded, .software-logo.lazy, .cv-left-bottom::before, .cv-right-bottom-right-top::before, .cv-right-bottom-right-bottom::before, .cv-right-top::before, .cv-right-bottom-left::before, #projects, .pj-top, .pj-top h2, .pj-bottom, .pj-bottom::-webkit-scrollbar, .pj-bottom::-webkit-scrollbar-track, .pj-bottom::-webkit-scrollbar-thumb, .pj-bottom::-webkit-scrollbar-thumb:hover, .pj-bottom-left, .pj-bottom-right, #projects span, #contact, #contact a, #contact a:hover, #contact a svg {
        display: none;
    }

    .mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-color: var(--_color-primary); */
        z-index: 100;
        color: var(--_color-primary);
        font-size: 24px;
        font-family: 'Sinoreta', Arial, sans-serif;
        font-weight: 400;
        letter-spacing: .1em;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        
    }

    .mobile h1 {
        font-size: 70px;
        font-family: 'PorshaRichela', Arial, sans-serif;
        font-weight: 400;
        letter-spacing: .1em;
        align-self: center;
        position: relative;
        
    }

    .mobile h1::before {
        content: "";
        position: absolute;
        top: 45px;
        right: 0;
        width: 25%;
        height: 50%;
        /* background-color: var(--_color-primary); */
        border-radius: 500px;
        /* z-index: -1; */
        /* opacity: 0.5; */
        backdrop-filter: blur(4px);
        box-shadow: 0px 1px 1px 0 #ebebd355, 0 1px 1px 0 #ebebd36e ,0 10px 10px 0px rgba(0, 0, 0, 0.7);

    }

    .mobile-pill {
        font-size: 26px;
        font-family: 'Sinoreta', Arial, sans-serif;
        font-weight: 400;
        letter-spacing: .1em;
        border: 1px solid var(--_color-primary);
        border-radius: 500px;
        padding: 4px 30px;
        align-self: center;
        color: var(--_color-primary);
        align-self: flex-start;
        margin-left: 30px;
        transform: translateY(50px);
        /* background-color: var(--_color-secondary); */
    }
}
