@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Antic&family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Kavivanar&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oxygen:wght@300;400;700&family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Antic&family=Cal+Sans&family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Kavivanar&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oxygen:wght@300;400;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&family=Yatra+One&display=swap'); */
/* light green #fbfaf9 */
/* strong green #435235 */
/* strong green 2 #36462a */
/* soft green #b2bba1 */

/* light orange #fbfaf9 */
/* strong orange #fa6323 */
/* light green greadient
linear-gradient(249deg, #36462a00, #36462a29) */
@import url('https://fonts.googleapis.com/css2?family=Antic&family=Cal+Sans&family=Caveat:wght@400..700&family=Dancing+Script:wght@400..700&family=Fahkwang:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Fira+Code:wght@300..700&family=Kavivanar&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oxygen:wght@300;400;700&family=Pacifico&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Quicksand:wght@300..700&family=Yatra+One&family=Shadows+Into+Light&family=Architects+Daughter&family=Kalam:wght@300;400;700&family=Gloria+Hallelujah&family=Indie+Flower&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color-dark);
    font-size: var(--text-size);
    font-family: "Nunito", Helvetica, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --text-size: 14px;
    --text-size: clamp(1rem, 4vw, 1.1rem);
    --large-heading: 8vw;
    --max-width: 100%;
    --animation-size: 90%;
    --nav-text: 6vw;
    --button-pad: 5% 0;
    --bar-width: 25px;
    --bar-height: 3px;
    --bar-gap: 12px;
    --padding-y: 40px;
    --padding-x: 8%;
    --header-top-padding: 20px;
    --card-image-height: 280px;
    --theme-color-1: #3D5C59;
    --theme-color-1-light: #4b867f;
    --theme-color-1-lightest: #f6f9f9;
    --theme-color-2: #9D370B;
    --theme-color-2-light: #cc6235;
    --theme-color-2-lightest: #fffaf8;
    --theme-color-3: #453955;
    --theme-color-3-light: #5a4d6a;
    --theme-color-neutral: #f3e7e2;
    --text-color-dark: #232323;
    --slider-height: 540px;
    --menu-width: 100%;
    --final-timeline-height: 250px;
}

/* account for tricky mobile sizes */
@media only screen and (max-width: 400px) {
    :root {
        --final-timeline-height: 272px;
    }

    .timeline-container {
        padding-right: 0;
    }
}

@media only screen and (min-width: 700px) {
    :root {
        --text-size: 16px;
        --text-size: clamp(1rem, 2vw, 1.4rem);
        --large-heading: 5vw;
        --animation-size: 65%;
        --nav-text: 3vw;
        --button-pad: 3.5% 0;
        --bar-width: 30px;
        --header-height: 70px;
        --header-top-padding: 30px;
        --final-timeline-height: 200px;
    }    
}

@media only screen and (min-width: 1000px) {
    :root {
        --nav-text: 2.5vw;
        --button-pad: 2.5% 0;
    }
}

@media only screen and (min-width: 1200px) {
    :root {
        --nav-text: 1.5vw;
        --animation-size: 30%;
        --large-heading: 3vw;
        --padding-x: 12%;
        --menu-width: 25%;
        --bar-height: 2.5px;
        --bar-width: 25px;
        --button-pad: 3% 0;
        --nav-text: 1.2vw;
        --text-size: clamp(1rem, 1.5vw, 1.4rem);
        --menu-width: calc(var(--padding-x) + 65px);
        --padding-x: 15%;
        --slider-height: 580px;
        
    }
}

@media only screen and (min-width: 1400px) {
    :root {
        --text-size: clamp(0.9rem, 1.1vw, 1.4rem);
        --large-heading: 2.5vw;
    }
}

@media only screen and (min-width: 1600px) {
    :root {
        --nav-text: 1vw;
        --large-heading: 2.5vw;
        --header-height: 80px;
        /* --slider-height: 500px; */
        --padding-x: 18%;
    }
}

html {
    /* background: linear-gradient(45deg, #ff960040, #ffeed640); */
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: var(--text-size);
    scroll-behavior: smooth;
}

html, body {
    position: relative;
    /* background-color: #fbfaf9; */
}

main {
    position: relative;
}

main::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    /* background: radial-gradient(circle 225px at 4% 3%, #e6c1b1, #f8e4db94, transparent), radial-gradient(circle 325px at 90% 25%, #e6c1b1, #f8e4db94, transparent), radial-gradient(circle 158px at 2% 234px, #f4feebb5, #d7e3cd63, transparent);
    background: radial-gradient(circle 456px at 68% 12%, #e6c1b1, #f8e4db94, transparent), radial-gradient(circle 325px at 90% 33%, #e6c1b1, #f8e4db94, transparent), radial-gradient(circle 386px at 2% 59px, #f4feebb5, #d7e3cd63, transparent), radial-gradient(circle 500px at 18% 320px, #f4feebb5, #d7e3cd63, transparent); */
    background: radial-gradient(circle 456px at 68% 75%, #edc6b5e3, #f8e4db94, transparent), radial-gradient(circle 225px at 100% 4%, #5f8d611c,#0d0e070a , transparent), radial-gradient(circle 386px at 2% 59px, #feefebb5, #e3cdcd63, transparent), radial-gradient(circle 500px at 18% 320px, #fef6ebb5, #e3d8cd63, transparent), radial-gradient(circle 225px at 100% 4%, #5f8d611c,#0d0e070a , transparent);
}

a {
    color: inherit;
    font-size: inherit;
    text-decoration: inherit;
    font-weight: 600;
    letter-spacing: 1px;
}

button {
    all: unset;
    cursor: pointer;
    font-size: 14px;
}

.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.width-full {
    width: var(--max-width);
}

.container {
    /* overflow: hidden; */
    display: block;
    width: 100%;
    padding: var(--padding-y) var(--padding-x);
    margin-bottom: 90px;
}

.height-full {
    height: 100%;
}

.flex-row, .flex-column {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.bg-theme-1 {
    background-color: var(--theme-color-1);
}

.bg-theme-1-gradient {
    background: linear-gradient(to top, var(--theme-color-1), #3f6f6a);
}

.bg-theme-2 {
    background-color: var(--theme-color-2);
}

.bg-theme-2-gradient {
    background: linear-gradient(to top, var(--theme-color-2), #bf4812);
}

.bg-theme-3-gradient {
    background: linear-gradient(to top, #453955, #5b4e6d);
}

.bg-theme-light {
    background-color: #fa6323;
}

.bg-strong-green {
    background-color: #36462a;
}

.bg-soft-green {
    background-color: #b2bba1;
}

.bg-soft-orange {
    /* background-color: #fbfaf9; */
    background-color: #f48d62;
}

.bg-strong-orange {
    background-color: #c4582a;
}

.bg-theme-neutral {
    background-color: var(--theme-color-neutral);
}

.color-white {
    color: white;
}

.color-soft-green {
    color: #b2bba1;
}

.color-theme-2 {
    color: var(--theme-color-2) !important;
}

.border-soft-green {
    border: 2px solid #b2bba1;
}

.border-strong-orange {
    border: 2px solid #fa6323;
}

.border-strong-green {
    border: 1px solid #36462a;
}

.color-strong-green {
    color: #36462a;
}

.color-strong-orange {
    color: #730d0d;
}

.text-right {
    text-align: right;
}

#header {
    z-index: 95;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: flex-end;
    padding: 0 var(--padding-x);
}

#header-logo {
    height: 55px;
    top: var(--header-top-padding);
    left: var(--padding-x);
    position: absolute;
    background-color: var(--theme-color-neutral);
    border-radius: 50%;
    padding: 5px;
    filter: drop-shadow(0px 1px 2px var(--theme-color-1));
    /* border: 1px solid black; */
    transition: opacity 0.2s ease-in-out;
}

.heading {
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: calc(var(--large-heading) - 1vw);
    font-family: "Kalam", cursive;
}

.box-shadow-strong {
    /* box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset; */
    box-shadow: rgba(0, 0, 0, 0.4) 4px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px;
}

.button:hover {
    transform: translateY(-2px);
}

.navigation {
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease-in-out;
    top: 0;
    z-index: 3;
    text-transform: uppercase;
    padding-top: 20px;
    padding-bottom: 20px;
    left: 0;
    padding: 2.5rem;
    height: 0;
    width: 0;
    padding: 0;
    background: linear-gradient(to top, #6ba19b, var(--theme-color-1));
}


#menu.open .navigation{
    opacity: 1;
    z-index: 99;
    height: 100%;
    width: var(--menu-width);
    padding: 80px 30px;
    transition: opacity 0.3s ease-in-out;
}


.submenu-item {
    margin-top: 10px;
    margin-top: 10px;
    padding-left: 10px;
}

.dropdown-menu {
    height: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.menu-expand {
    right: 15px;
    cursor: pointer;
}

.dropdown-menu.open {
    max-height: 300px;
    opacity: 1;
}

.bar {
    z-index: 100;
    width: var(--bar-width);
    height: var(--bar-height);
    display: block;
    /* border: 2px solid #36462a; */
    background: white;
    transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, color 0.2s linear, right 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.hamburger {
    z-index: 100;
    gap: 5px;
    top: var(--header-top-padding);
    cursor: pointer;
    right: var(--padding-x);
    border: 2px solid white;;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: radial-gradient(circle 40px at center center, 
        var(--theme-color-1) 0%, 
        var(--theme-color-1) 47%, 
        var(--theme-color-1) 63%, 
        #8fa8a3 80%, 
        white 100%
    );

    transition: opacity 0.2s ease-in-out, right 0.3s ease-in-out, top 0.3s ease-in-out, border 0.3s ease-in-out, background 0.3s ease-in-out;
}

.low-opacity {
    opacity: 0.5;
}

#menu.open .hamburger {
    border: none;
    background: none;
}

#menu.open .hamburger .bar {
    background-color: white;
    right: 25px;
}

#menu.open .hamburger #top-bar {
    transform: translateY(8px) rotate(45deg);
}

#menu.open .hamburger #middle-bar {
    opacity: 0;
}

#menu.open .hamburger #bottom-bar {
    transform: translateY(-8px) rotate(-45deg);
}

.navigation ul {
    list-style-type: none;
    display: flex;
    opacity: 0;
    flex-direction: column;
    gap: 30px;
}

#menu.open .navigation ul {
    opacity: 1;
}

.navigation li {
    font-size: var(--nav-text);
    color: white;
    letter-spacing: 4px;
}

.hero {
    padding: 25% var(--padding-x) 25%;
    letter-spacing: 2px;
    height: 90vh; /* Fixed viewport height - doesn't change with browser UI */
    min-height: fit-content;
}

.titles {
    width: fit-content;
    margin: 0 auto;
    height: 200px;
}

.typing-container {
    width: 100%; 
    display: flex; 
    flex-direction: column;
    align-items: center;
}


.title {
    display: none;
    overflow: hidden;
    white-space: nowrap;
    border-right: .1em solid var(--theme-color-1);
}

.title.active {
    display: block;
    width: fit-content;
    animation:
        typing 1.3s steps(14 , end),
        blink-caret .75s step-end infinite;
    /* animation-delay: 0.3s; give lottie player time to load */
}

.title.completed {
    animation: none;
    border: none;
}

@keyframes typing {
    from { max-width: 0; }
    to { max-width: 100% }
}

@keyframes blink-caret {
    from, to {border-color: transparent }
    50% { border-color: var(--theme-color-1); }
}

.hero h1 {
    color: #d96936;
    color: #bf4812;
}

.hero h1, .blog-hero h1 {
    font-size: calc(var(--large-heading) + 2vw);
    font-family: "Kalam", cursive;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero .actions {
    /* position: absolute;
    bottom: 30px;
    left: var(--padding-x); */
    width: 100%;
}

.blog-hero h1 {
    font-size: calc(var(--large-heading) + 1vw);
}

.blog-hero h1 {
    color: white;
}


#code-animation {
    background-color: #3b5b57;
    border-radius: 50%;
    padding: 10px;
    width: 60px !important;
    height: 60px !important;
    filter: drop-shadow(0px 10px 5px #232e1c);
    right: var(--padding-x);
    opacity: 0;
}

.fade-in {
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-up.show {
    animation: fadeInUp 0.7s ease-in forwards;
}

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

.section-animation {
    top: 25px;
}
/* 
.hero-text {
    height: 100%;
} */

.hero-text h2 {
    margin: 10px 0;
    font-size: calc(var(--large-heading) - 1vw);
    text-align: right;
    font-weight: 400;
}

.actions {
    width: 100%;
    margin-top: 30px;
    /* margin-top: auto;
    margin-bottom: 0; */
}

.button {
    padding: var(--button-pad);
    font-weight: 600;
    width: 47%;
    text-align: center;
    font-size: 1rem;
    color: white;
    transition: transform 0.1s ease-in-out;
}

.button.bg-theme-1:hover {
    background-color: var(--theme-color-1-light);
}

.button.bg-theme-2:hover {
    background-color: var(--theme-color-2-light);
}

.triangle {
    margin-top: 10px;
    filter: drop-shadow(0px 1px 14px #66301794);
    padding-top: 80px;
    padding-bottom: 90px;
}

.triangle-green {
    filter: drop-shadow(0px 1px 14px #707968);
}

.triangle-blurb {
    color: white;
    font-weight: 400;
}

.triangle .heading {
    color: white;
}


.background {
    content: '';
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
}

.background.right {
    clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 calc(100% - 80px));
    --webkit-clip-path: polygon(0 80px, 100% 0, 100% 100%, 0 calc(100% - 80px));
}


#aboutPlayer {
    width: 75px !important;
    height: 75px !important;
    filter: drop-shadow(0px 10px 5px #663017c9);
}

.section h2 {
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.text-center {
    text-align: center;
}

.background.left {
    clip-path: polygon(0 0, 100% 80px, 100% calc(100% - 80px), 0 100%);
    --webkit-clip-path: polygon(0 0, 100% 80px, 100% calc(100% - 80px), 0 100%);
}

#contactPlayer {
    width: 82vw  !important;
    height: auto !important;
    margin: 0 auto;
}

.option {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s linear, transform 0.6s linear;
    margin-top: 30px;
    cursor: pointer;
}

.option.show {
    opacity: 1;
    transform: translateY(0);
}

.option .heading {
    font-size: calc(var(--large-heading) - 4vw);
    font-family: "Nunito", Helvetica, sans-serif;
}

/* --- Stack Icons*/
.stack-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 0 40px;
}

.hero .stack-item {
    position: relative;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero .stack-item:nth-child(1) { animation-delay: 2.8s; }
.hero .stack-item:nth-child(2) { animation-delay: 2.9s; }
.hero .stack-item:nth-child(3) { animation-delay: 3s; }
.hero .stack-item:nth-child(4) { animation-delay: 3.1s; }
.hero .stack-item:nth-child(5) { animation-delay: 3.2s; }
.hero .stack-item:nth-child(6) { animation-delay: 3.3s; }

.hero .stack-item .devicon {
    height: 60px;
    width: 60px;
    fill: #404342;
    transition: all 0.3s ease;
    filter: drop-shadow(1px 0px 1px black);
} 

.stack-item:hover .devicon .fill-path { 
    fill: var(--theme-color-1-light);
}

/* don't change on hover in blog pages */
.blog-post .stack-item:hover .devicon .fill-path {
    fill: #fff;
}

.stack-item .devicon-php-plain {
    font-size: 2.5rem;
}

.item-info {
    position: absolute;
    bottom: -30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, top 0.3s, visibility 0.3s;
    /* width: 100%; */
    text-align: center;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

.stack-item:hover .item-info,
.stack-item:focus-within .item-info {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* box-shadow: rgba(61, 92, 89, 0.6) 4px 2px 5px, rgba(61, 92, 89, 0.6) 0px 7px 17px -3px; */
}

.item-info p {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--theme-color-1);
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    box-shadow: 0 6px 32px rgba(60,60,60,0.13), 0 1.5px 8px #782d0d33;
    padding: 15px;
    max-width: 350px;
    width: 95vw;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    background:  #A6C9C6;
    border-radius: 3px;
}

.modal.facilitating {
    background: var(--theme-color-2-light);
}

.modal.travel {
    background: #9d93ab;
}

.modal.show {
    display: flex;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.modal label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color-dark);
    margin-bottom: 0.2rem;
    letter-spacing: 0.2px;
}

.modal input,
.modal textarea {
    font-size: 16px;
    border: 1.5px solid white;
    border-radius: 7px;
    box-shadow: inset 0 1px 2px #3f6f6a1f;
    padding: 0.6rem 0.9rem;
    margin-bottom: 0.7rem;
    transition: box-shadow 0.18s, border 0.18s;
    background: #3f6f6a1f;
}

.modal input:focus,
.modal textarea:focus {
    outline: none;
    border: 1.5px solid var(--theme-color-1, #3D5C59);
    box-shadow: 0 0 0 2px #4b867f33;
    background: #fff;
}

.modal textarea {
    min-height: 90px;
    max-height: 180px;
    font-family: inherit;
}

.modal .button {
    width: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.modal .button:hover, 
.modal .button:focus {
    background: #3f6f6a;
}

.modal-close {
    cursor: pointer;
    top: 30px;
    right: 25px;
    width: 28px;
    height: 28px;
    background: none;
    transition: background 0.2s;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 60% 100%, 0 60%);
    fill: var(--text-color-dark);
}

.modal-close:hover {
    transform: scale(1.1);
    cursor: pointer;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

main.blur {
    filter: blur(15px);
}

.animation {
    width: var(--animation-size); 
    height: var(--animation-size);
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    height: var(--slider-height);
    cursor: pointer;
    user-select: none;
}

.slider:active {
    cursor: pointer;
}

.card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    padding: 10px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* --webkit-clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%); */
}

.card.active {
    opacity: 1;
    transform: translateX(0);
}

.card.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.tag {
    top: 15px;
    right: 20px;
    padding: 4px 8px;
    border-radius: 30px;
    text-transform: uppercase;
    color: white;
    clip-path: none;
    font-size: calc(var(--text-size) - 2px);
    font-weight: 700;
}

.coding .tag {
    background-color: var(--theme-color-1);
}

.facilitating .tag {
    background-color: var(--theme-color-2);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: calc(var(--slider-height) - 50px);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d38383;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dot.active {
    background: var(--theme-color-2);
}

.card-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-content: center;
    text-align: center;
    color: var(--text-color-dark);
    padding: 25px 10px 20px;
}

.card-content .button {
    margin: 15px auto 5px;
    padding: 0.5rem;
    width: 250px;
}

.card .card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: skew(0deg, -2deg);
}

.card.coding .card-content::before {
    /* background-color: var(--theme-color-1-lightest); */
    filter: drop-shadow(0px 1px 5px #707968);
    border: 2px solid #3d5c5975;
}

.card .card-content::before {
    background-color: var(--theme-color-2-lightest);
}

.card.facilitating .card-content::before {
    filter: drop-shadow(0px 1px 5px #d19981);
    /* background-color: var(--theme-color-2-lightest); */
    border: 2px solid #9d370b61;
}

.card h3 {
    padding: 20px 0 0;
    letter-spacing: 3px;
    font-size: calc(var(--text-size) + 0.2rem);
    width: fit-content;
    margin: 10px auto 0;
}

.card-subtitle {
    margin-top: 5px;
}

.card.coding h3 {
    border-bottom: 2px solid var(--theme-color-1);
}

.card.facilitating h3 {
    border-bottom: 2px solid var(--theme-color-2);
}

.card-details {
    margin-top: 30px;
}

.card .stack-item {
    flex: 1;
}

.card-skills {
    margin-top: 5px;
    font-style: italic;
    font-weight: 700;
    font-size: 13px;
    text-transform: capitalize;
}

.card-image {
    width: 75%;
    height: auto;
    object-fit: cover;
    margin: 0 auto -50px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

footer.container {
    margin-bottom: 0;
}

footer .text-center {
    font-size: calc(var(--text-size) - 0.2rem);
}

footer .text-center:last-of-type{
    margin-top: 5px;
}

.card-icons {
    margin: 30px 10px 10px;
}

.card-icons .devicon {
    height: 40px;
    width: auto;
}

.card-icons .devicon .fill-path {
    fill: var(--theme-color-1);
}

.facilitating .card-icons .devicon .fill-path {
    fill: var(--theme-color-2);
}


/* Timeline Styles */
.timeline {
    margin: 40px auto;
    height: 800px;
    min-height: fit-content;
}

.timeline .heading {
    margin-bottom: 40px; 
}

.timeline-container {
    position: relative;
    max-height: none;
    overflow: visible;
    width: 350px;
    margin: 0 auto;
}

/* account for tricky mobile sizes */
@media only screen and (max-width: 390px) {
    .timeline-container {
        padding-right: 0;
        width: 300px;
    }
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--theme-color-1);
    transform: translateX(-50%);
    z-index: 1;
    height: calc(100% - var(--final-timeline-height));
    max-height: 0;
    transform-origin: top;
    transition: transform 0.8s ease, max-height 0.3s linear;
    transition-delay: 0.1s;
}

/* Timeline items start invisible */
.timeline-item {
    position: relative;
    margin-bottom: 80px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s ease;
    min-height: 100px; /* Ensure minimum height for proper spacing */
}

.timeline-item.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add some spacing between timeline items for better scroll experience */
/* .timeline-item + .timeline-item {
    margin-top: 80px;
} */

/* Alternative approach - target the first timeline item specifically */
.timeline-container .timeline-item:nth-child(2) {
    margin-top: 0;
}

.timeline-container .timeline-dot:first-of-type {
    top: -1px;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--theme-color-1);
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease;
}

.timeline-item.visible .timeline-dot {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    margin-left: 65px;
    border-radius: 3px;
    transition: all 0.6s ease;
}

.final-item .timeline-content {
    height: var(--final-timeline-height);
}

.timeline-item.visible .timeline-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.timeline-content h3 {
    color: var(--theme-color-1);
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.facilitating .timeline-content h3 {
    color: var(--theme-color-2);
}

.travel .timeline-content h3 {
    color: var(--theme-color-3);
}

.timeline-preview {
    color: var(--text-color-dark);
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 16px;
}

.timeline-read-more {
    background: var(--theme-color-1);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.facilitating .timeline-read-more {
    background: var(--theme-color-2);
}

.travel .timeline-read-more {
    background: var(--theme-color-3);
}

.timeline-read-more:hover {
    background: var(--theme-color-1-light);
    transform: translateY(-2px);
}

.facilitating .timeline-read-more:hover {
    background: var(--theme-color-2-light);
}

.travel .timeline-read-more:hover {
    background: var(--theme-color-3-light);
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 3px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    color: var(--theme-color-1);
    font-size: calc(var(--text-size) + 0.2rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.facilitating .modal-content h3 {
    color: var(--theme-color-2);
}

.travel .modal-content h3 {
    color: var(--theme-color-3);
}

.modal-content p {
    color: var(--text-color-dark);
    line-height: 1.5;
    font-size: calc(var(--text-size) - 0.1rem);
}

.projects .coding .devicon .bg-path {
    fill: white;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: #3D5C59;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3D5C59, #9D370B);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.triangle.beyond-code {
    padding-top: 100px;
    padding-bottom: 130px;
    height: auto;
}

.beyond-code .section-animation {
    opacity: 0;
    top: 35px;
    width: 60px;
    height: 60px;
    padding: 12px;
    background-color: #451703;
    border-radius: 50%;
    filter: drop-shadow(0px 10px 5px var(--theme-color-3));
}

.beyond-code .section-animation svg {
    transform: scale(0.1);
}

.beyond-code .section-animation.fade-in svg {
    animation: scaleUp 1.2s ease forwards;
    animation-delay: 0.2s;
}

@keyframes scaleUp {
    from { transform: scale(0.5) }
    to { transform: scale(1) }
}

.beyond-card {
    background: white;
    border-radius: 3px;
    padding: 30px 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.beyond-card.aerial {
    margin-top: 60px;
}

.beyond-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-emoji {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    z-index: 2;
    position: absolute;
    top: -30px;
    right: 0;
    padding: 12px;
    border: 3px solid #451703;
}

.card-emoji.theatre {
    background: var(--theme-color-2);
    border: 3px solid #451703;
}

.card-emoji.aerial {
    background: linear-gradient(135deg, #6B4C93, #8B5FA8);
    color: white;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.card-role {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-role.theatre {
    color: var(--theme-color-2);
}

.card-role.aerial {
    color: #6B4C93;
}


.skill-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.skill-tag.theatre {
    background: linear-gradient(135deg, #9D370B, #B8471F);
}

.skill-tag.aerial {
    background: linear-gradient(135deg, #6B4C93, #8B5FA8);
}

.background-decoration.theatre {
    background: #9D370B;
}

.background-decoration.aerial {
    background: #6B4C93;
}

.connection-text {
    text-align: center;
    margin-top: 60px;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.connection-text h3 {
    color: #3D5C59;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.connection-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Animation for cards on scroll */
.beyond-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.beyond-card.connection .card-title {
    color: #3D5C59;
}

.beyond-card.connection {
    margin-top: 60px;
}

.beyond-card:nth-child(2) {
    animation-delay: 0.2s;
}

/*****************
* BLOG
*****************/
.blog-post a {
    /* text-decoration: underline; */
    color: var(--theme-color-3);
    font-weight: 700;
}

.blog-post .container:nth-of-type(2) {
    padding-top: 25px;
    margin-bottom: 0;
}

.blog-hero-image {
    /* max-height: 180px; */
    width: 100%;
    margin: 0 auto;
    background-color: white;
    padding: 25px;
    margin-bottom: -30%;
    margin-top: 30px;
    object-fit: cover;
    border-radius: 3px;
}

.scrapbook-v2 .blog-hero-image {
    padding: 10px;
}

.anna-codes .blog-hero-image {
    width: 180px;
    max-width: unset;
    border-radius: 50%;
}

.blog-post .technologies {
    width: 100%;
}

.blog-post.coding .blog-hero-image {
    filter: drop-shadow(0px 1px 2px var(--theme-color-1));
}

.blog-post.facilitating .blog-hero-image {
    filter: drop-shadow(0px 1px 2px var(--theme-color-2));
}

.blog-post.community-justice .blog-hero-image {
    padding: 0;
}

.blog-section {
    margin-bottom: 40px;
}

.blog-section p {
    margin-bottom: 15px;
}

.blog-image {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.section-image-container {
    margin: 20px auto;
}

.blog-post ul {
    padding: 20px 0;
    width: 80%;
    margin: 0 auto;

}

.blog-post li {
    margin: 5px 0;
}

/* .blog-post .blog-description {
    font-size: calc(var(--text-size) + 0.1rem);
    margin-bottom: 30px;
} */

.blog-post .stack-item {
    width: 100px;
}

.caption {
    font-size: calc(var(--text-size) - 0.2rem);
    margin-bottom: 30px;
}

.blog-hero {
    overflow: visible;
    position: relative;
    padding-top: 80px;
    margin-bottom: 100px;
}

.blog-hero::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #6ba19b, var(--theme-color-1));
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    z-index: -1;
}

.blog-hero .card-skills {
    margin-top: 15px;
    font-size: calc(var(--text-size) - 0.2rem);
}

.facilitating .blog-hero::before {
    background: linear-gradient(to top, #bf4812, var(--theme-color-2));
}

.technologies {
    gap: 15px;
}

.technologies .devicon {
    fill: #fff;
    height: 45px;
}

.coding .devicon .bg-path {
    fill: var(--theme-color-1);
}

.facilitating .devicon .bg-path {
    fill: var(--theme-color-2);
}

.blog-description {
    margin-bottom: 30px;
    font-style: italic;
}

.linkedin-footer {
    position: absolute;
    bottom: 80px;
    left: var(--padding-x);
}

.linkedin-footer svg {
    fill: white;
}

.blog-contents {
    display: none;
}

.blog-contents li {
    cursor: pointer;
}

 /* Back to Top Button Styles */
 .back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    bottom: 30px;
    right: var(--padding-x);
    /* background: #f8f2f4; */
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    fill: var(--theme-color-3);
    width: 35px;
}

.progress-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 70px;
    height: 70px;
    transform: rotate(-90deg);
    overflow: visible;
}

.progress-ring__circle {
    fill: none;
    stroke: var(--theme-color-3);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 188.5;
    stroke-dashoffset: 188.5;
    transition: stroke-dashoffset 0.3s ease;
}


@media only screen and (min-width: 700px) {

    .hero {
        height: auto;
        min-height: 800px;
        padding: 20% var(--padding-x) 0;
    }

    .hero .actions {
        bottom: 0;
        left: calc(var(--padding-x) + 10%);
        width: calc(80% - (2 * var(--padding-x)) - 5px);
    }

    .hero-text {
        gap: 30px;
    }

    .hamburger #top-bar {
      top:45px;  
    }

    #menu.open .hamburger #top-bar {
        top: 55px;
    }

    .hamburger #middle-bar {
        top:60px;  
    }

    .hamburger #bottom-bar {
        top:75px;  
    }

    #menu.open .hamburger #bottom-bar {
        top: 55px;
    }

    .actions {
        width: 80%;
        margin: 30px auto;
    }

    .triangle {
        height: 400px;
    }

    .triangle p {
        width: 80%;
        margin: 0 0 0 auto;
    }

    .triangle.coding p {
        margin: 0 auto 0 0;
    }

    .container {
        margin-bottom: 120px;
    }

    .option svg {
        height: 60px;
    }

    .option .heading {
        font-size: calc(var(--large-heading) - 3vw);
    }

    #aboutPlayer {
        height: 100px !important;
        width: 100px !important;
    }

    #contactPlayer {
        width: 62vw !important;
    }

    #code-animation {
        top: 25px;
        width: 80px !important;
        height: 80px !important;
    }

    .section-animation {
        top: 15px;
    }

    .heading {
        margin-bottom: 20px;
    }

    .card {
        width: 100%;
    }

    .card.active {
        transform: translateX(0);
    }

    .card-content {
        padding: 30px 60px;
    }

    .card-skills {
        font-size: var(--text-size);
    }

    .slider {
        padding: 40px 0;
    }

    .stack-container {
        width: 75%;
        margin: 40px auto;
    }

    .item-info p {
        font-size: 1.3rem;
    }

    #header-logo {
        height: 65px;
    }

    .timeline-container {
        width: 625px;
        margin: 0 auto;
    }

    /* .stack-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 2rem;
        max-width: 800px;
    } */

    .stack-item {
        width: 100px;
    }

    .stack-item .devicon {
        font-size: 2.5rem;
    }

    .item-info {
        bottom: -25px;
    }

    .item-info p {
        font-size: 1rem;
    }

    .modal {
        width: 475px;
        max-width: unset;
    }

    #menu.open .navigation {
        padding-left: var(--padding-x);
        padding-right: var(--padding-x);
    }

    .beyond-card {
        width: 80%;
        margin: 0 0 0 auto;
    }

    .triangle .beyond-card p  {
        width: 100%;
    }

    footer .text-center {
        font-size: calc(var(--text-size) - 0.1rem);
    }

    .blog-hero-image {
        margin-top: 70px;
        margin-bottom: -20%;
    }

    .blog-post .blog-description {
        margin-bottom: 45px;
    }

    .blog-post .stack-item {
        width: 140px;
    }

    .blog-hero-image {
        margin-top: 45px;
        margin-bottom: -15%;
        max-width: 80%;
    }

    .blog-post.community-justice .blog-hero-image {
        max-width: unset;
        width: auto;
        max-height: 250px;
    }

    .section-image-container {
        width: 65%;
        margin: 40px auto;
    }

}


@media only screen and (min-width: 1000px) {

    .titles {
        height: 250px;
    }

    .actions {
        width: 80%;
        margin: 40px auto 0;
        justify-content: center;
        gap: 45px;
    }

    .hero {
        padding: 15% var(--padding-x) 0;
    }

    .hero .actions {
        bottom: 15px;
    }

    .hero .actions .button {
        width: 40%;
    }

    .modal input {
        font-size: 0.8rem;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }

    /* .blog-hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 100px;
    } */

    .blog-hero.container {
        margin-bottom: 150px;   
    }

    .blog-hero-image {
        margin-bottom: -10%;
    }

    .scrapbook-v2 .blog-hero-image {
        height: 300px;
        width: auto;
    }

    .blog-post .stack-item {
        width: auto;
    }

    .blog-post .technologies {
        gap: 50px;
    }

    .blog-contents {
        display: block;
        border: 2px solid var(--text-color-dark);
        padding: 20px 30px;
        height: fit-content;
        position: sticky;
        top: 90px;
    }

    .blog-contents li {
        margin: 0 0 15px 0;
    }

    .blog-main-content {
        flex-basis: 65%;
    }
    
    .blog-contents {
        flex-basis: 30%;
    }
    


}

@media only screen and (min-width: 1200px) {

    .blog-post p, .blog-post li {
        font-size: calc(var(--text-size) - 0.1rem);
    }

    #menu.open .navigation {
        border-left: 3px solid white;
        padding: 100px 30px;
    }

    .linkedin-footer {
        left: 30px;
    }

    .modal {
        transform: translate(-50%, -50%);
    }

    .container {
        margin-bottom: 50px;
    }

    .hero {
        flex-direction: row;
        position: relative;
        padding: calc(var(--header-height) + 50px) var(--padding-x) 100px;
        min-height: unset;
        margin-bottom: 0;
        justify-content: space-between;
    }

    .hero .actions .button {
        width: 200px;
        padding: 15px 0;
    }

    .hero .stack-item .devicon {
        height: 50px;
        width: 50px;
    }

    .hero h1 {
        font-size: calc(var(--large-heading) + 1vw);
        text-align: center;
    }

    .title {
        text-align: center;
        padding: 0;
    }

    .item-info {
        bottom: -20px;
    }

    #hero-animation {
        margin: 0;
    }

    .hero .actions {
        position: absolute;
        top: 60%;
        left: var(--padding-x);
        right: auto;
        gap: 10px;
        width: 35vw;
        align-items: center;
    }

    .titles {
        margin: 0;
        height: 100%;
        width: 35vw;
    }

    .typing-container {
        height: 130px;
    }

    .stack-containers {
        align-self: center;
    }

    #header {
        padding: 0 calc(var(--padding-x) - 80px);
    }

    #menu {
        z-index: 99;
    }
 
    #menu.open .navigation {
        padding: 80px 30px;
    }

    #menu.open .hamburger {
        right: calc(var(--menu-width) - 65px);
    }

    .hamburger {
        right: calc(var(--padding-x) - 80px);
    }

    #header-logo {
        left: 0;
        position: relative;
        background-color: #f3efec;
    }

    .menu-expand {
        transform: translateY(2px);
    }

    #menu.open .hamburger #top-bar {
        transform: translateY(8px) rotate(45deg);
    }

    #menu.open .hamburger #bottom-bar {
        transform: translateY(-7px) rotate(-45deg);
    }

    #menu.open .hamburger .bar {
        background-color: white;
        right: 25px;
    }

    #menu.open .navigation {
        left: unset;
        right: 0;
        filter: drop-shadow(0px 10px 5px #663017c9);
    }

    .navigation li {
        font-weight: 600;
    }

    .submenu-item {
        font-size: calc(var(--nav-text) - 2px);
    }

    .hero-text h2 {
        font-size: calc(var(--large-heading) - 0.7vw);
    }

    .button {
        width: 100%;
        font-size: 0.8rem;
    }

    #aboutPlayer {
        height: auto !important;
        width: 4.5vw !important;
        top: 110px;
    }

    #contactPlayer {
        width: 25vw  !important;
    }

    .heading {
        font-size: calc(var(--large-heading) - 0.5vw);
    }

    .section-animation {
        top: 70px;
    }

    .triangle {
        height: 450px;
    }

    .triangle p {
        width: 60%;
        margin: 0 0 0 auto;
    }

    .background.right {
        --webkit-clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 65%);
        clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 65%);
    }

    .background.left {
        --webkit-clip-path: polygon(0 0, 100% 35%, 100% 65%, 0 100%);
        clip-path: polygon(0 0, 100% 35%, 100% 65%, 0 100%);
    }

    .beyond-code .background.right {
        --webkit-clip-path: polygon(0 250px, 100% 0, 100% 100%, 0 calc(100% - 250px));
        clip-path: polygon(0 250px, 100% 0, 100% 100%, 0 calc(100% - 250px));
    }

    .option svg {
        height: 100px;
    }

    .triangle.triangle-green p {
        margin: 0 auto 0 0;
    }

    #code-animation {
        height: 3.5vw !important;
        width: 3.5vw !important;
        top: 120px;
        padding: 10px;
    }

    .actions {
        bottom: 25px;
        top: unset;
    }

    .option svg {
        height: 50px;
    }

    .option .heading {
        font-size: calc(var(--large-heading) - 1.5vw);
    }

    .slider {
        padding: 60px 0;
    }
    
    .card {
        width: 60%;
        left: 20%;
    }

    .card-icons {
        gap: 10px;
    }

    .card.active {
        transform: translateX(0);
    }

    .stack-container {
        width: 100%;
        margin: 10px auto;
    }

    .stack-containers {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 45%;
        gap: 20px;
        margin-top: 60px;
    }

    .stack-item {
        width: 120px;
    }
    .stack-item .devicon {
        font-size: 3rem;
    }

    .slider-nav {
        margin-top: calc(var(--slider-height) - 80px);
    }

    .item-info {
        bottom: -30px;
    }

    .timeline .heading {
        margin-bottom: 60px;
    }

    .card h3 {
        padding: 0;
        margin-top: 25px;
    }

    .card-details {
        margin-top: 20px;
    }

    .card-icons {
        margin: 25px 10px 10px;
    }

    .triangle.beyond-code {
        padding-top: 160px;
        padding-bottom: 220px;
    }

    .beyond-card {
        width: 70%;
        padding: 35px;
    }

    .beyond-code .section-animation {
        top: 170px;
    }

    .section-animation {
        top: 80px;
    }

    .blog-hero h1 {
        margin-bottom: 0;
    }

    .blog-post .blog-description {
        margin-bottom: 30px;
    }

    .blog-hero-image {
        margin-top: 35px;
    }

    .back-to-top {
        right: calc(var(--padding-x) - 80px);
    }


}



@media only screen and (min-width: 1400px) {

    .stack-containers {
        width: 40%;
    }

    .heading {
        font-size: calc(var(--large-heading) - 1vw);
    }

    #contactPlayer {
        width: 25vw !important;
    }

    .contact-options {
        gap: 200px;
        justify-content: center;
    }

    .actions {
        width: 25%;
    }

    .triangle {
        height: 570px;
    }

    .titles {
        text-align: center;
        padding-bottom: 0;
    }

    .typing-container {
        margin-bottom: 80px;
    }

    .actions {
        width: 550px;
    }

    #menu.open .navigation {
        left: unset;
        right: 0;  
    }

    .card {
        width: 60%;
        left: 20%;
    }

    .card-skills {
        font-size: calc(var(--text-size) * 0.8);
    }
    
    .card.active {
        transform: translateX(0);
    }

    .blog-hero {
        margin-bottom: 180px;
    }

}

@media only screen and (min-width: 1600px) {

    .hero h1 {
        white-space: nowrap;
        min-width: fit-content;
    }

    .titles {
        height: 400px;
        min-width: fit-content;
    }

    .actions {
        min-width: 25%;
    }

    .container {
        margin-bottom: 90px;
    }

    .section-animation {
        top: 90px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 125px);
    }

    .hero .actions {
        gap: 25px;
    }

    .hero .stack-item .devicon {
        height: 55px;
        width: 55px;
    } 

    .beyond-card {
        width: 60%;
    }

    .stack-item .devicon {
        height: 50px;
    }

    .card-icons {
        gap: 20px;
    }

    .blog-hero-image {
        margin: 60px auto -10%;
    }

    .blog-post .blog-description {
        margin: -5px 0 50px;
    }
}

@media only screen and (min-width: 1800px) { 
    .hero .actions {
        gap: 45px;
    }
}


@media only screen and (min-width: 2100px) {

    .hero {
        min-height: 700px;
    }

}