:root {
    --flame-blur: 40px;
}
@font-face {
    font-family: stalinist-one;
    src: url(static/font/StalinistOne-Regular.ttf) format("truetype");
}
@font-face {
    font-family: unlock;
    src: url(static/font/Unlock-Regular.ttf) format("truetype");
}
.so {
    font-family: stalinist-one;
    font-weight: 400;
    font-style: normal;
}
body,
html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    color: white;
    background-color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
}
.t {
    font-size: calc(28px + 8vw);
}
.heroWrapper {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.heroBg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: blur(15px) brightness(0.5);
}
.heroBg > img {
    width: 50vw;
    margin: 0;
    line-height: 1;
    filter: hue-rotate(230deg) saturate(2) brightness(0.5)
        blur(var(--flame-blur));
    -webkit-user-select: none;
    user-select: none;
}
.heroContent {
    position: relative;
    text-align: center;
    z-index: 1;
}
.navbarWrap {
    width: 100%;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    padding: 5px;
    z-index: 1000;
}
.navbar {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    padding-left: 40px;
    padding-right: 40px;
    border: blue 2px solid;
    border-radius: 50px;
    background-color: black;
}
.navLogo {
    left: 0;
    font-family: stalinist-one;
    font-weight: 400;
    font-style: normal;
    font-size: calc(12px + 1vw);
}
.navLinks {
    right: 0;
}
.navLink {
    margin: 5px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-size: calc(12px + 0.5vw);
    font-family: unlock;
    background-color: black;
    outline: none;
    border: none;
    cursor: pointer;
}
#about {
    margin-top: 10vw;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}
.aboutInner {
    width: 80%;
    text-align: center;
}
.aboutInner > h1 {
    font-size: calc(24px + 4vw);
    font-family: stalinist-one;
    font-weight: 400;
    font-style: normal;
}
.aboutInner > h2 {
    font-size: calc(24px + 3vw);
    font-family: unlock;
    font-weight: 400;
    font-style: normal;
}
.aboutInner > p {
    font-size: calc(12px + 1vw);
    line-height: 1.5;
    margin-top: 20px;
    font-weight: normal;
}
#contact {
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}
.contactInner {
    width: 90%;
}
.contactInner > h1 {
    font-size: calc(24px + 2vw);
    font-family: unlock;
    text-transform: uppercase;
    font-weight: 400;
    font-style: normal;
}
.contactInner > p {
    font-size: calc(12px + 0.5vw);
    line-height: 1.5;
    margin-top: 20px;
    font-weight: normal;
}
.stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}
.stack > img {
    width: 20vw;
    position: relative; /* Required for tooltip positioning */
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
.contactShield {
    width: 50vw;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}
/* Tooltip Setup */
.tooltip {
    position: relative;
    display: inline-block;
}
/* Tooltip text - positioned to LEFT of trigger */
.tooltiptext {
    opacity: 0;
    padding: 15px;
    width: max-content;
    max-width: 30vw;
    font-style: italic;
    display: flex;
    align-items: center;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    transition: all 500ms;
    left: 100%; /* Position to left of parent */
    top: 50%; /* Vertical center */
    transform: translateY(-50%);
    margin-right: 10px; /* Gap between tooltip and element */
    background-color: rgba(0, 0, 0, 0.9); /* Tooltip background */
}
/* Arrow pointing RIGHT toward trigger element */
.tooltiptext::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%; /* Arrow at right edge of tooltip */
    margin-top: -5px;
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9); /* Match tooltip background */
}
/* Show tooltip on hover */
.tooltip:hover .tooltiptext {
    opacity: 1;
}
