* {
    padding: 0px;
    margin: 0px;
}

:root {
    --black: #212121;
    --grey: rgba(255, 255, 255, 0.8);
    --light-grey: rgb(121, 121, 121);
    --bg-white: #fbfbfb;
    --bg-light: #e8e8e8;
    --yellow: #F3FC58;
    --yellow-alt: #fee333;
    --pink: #ff39a4;
    --purple: #9980FF;
    --deep-purple: #0c003d;
}

::-moz-selection {
    color: var(--pink);
    background: var(--yellow);
}

::selection {
    color: var(--pink);
    background: var(--yellow);
}

.no-select {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#header {
    display: flex;
    width: 100vw;
}

#header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    width: 38vw;
    z-index: 1;
}

#header-nav {
    width: 60vw;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    height: 10%;
    padding: 25px 0px 0px 0px;
}

#button-container {
    margin: 1vw;
}

@keyframes scaleInButton {
    from {
        transform: scale(0,0);
    }
    to {
        transform: scale(1,1);
    }
}

#contactme, #cv, #linkedin {
    font-weight: 500;
}

@font-face {
    font-family: 'BatonNouveau-Regular';
    src: url('../assets/fonts/BatonNouveau/BatonNouveau-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

button {
    float: right;
    width: auto;
    border: medium none;
    text-align: left;
    text-decoration: none;
    text-indent: 0;
    text-align: center;
    font-size: 1vw;
    transition: transform 0.2s ease, color 0.2s ease;
    padding: 0.6vw 1.4vw 0.8vw 1.4vw;
    border-radius: 20vw;
    position: relative;
    color: var(--deep-purple);;
    cursor: url('../assets/cursor/arrow/cursor.svg'), url('../assets/cursor/arrow/cursor.png') 10 5, pointer;
}

button:hover {
    color: var(--bg-white);
    transform: scale(0.5);
}

button:active {
    color: var(--pink);
    cursor: url('../assets/cursor/arrow/click.svg'), url('../assets//cursor/arrow/click.png')10 5, pointer;
    transform: scale(0.5);
}

#button-container button {
    transform: scale(0);
    animation: scaleInButton 0.5s ease-in-out forwards;
}

#button-container button:nth-child(1) {
    animation-delay: 1.1s;
    background-color: transparent;
}

#button-container button:nth-child(2) {
    animation-delay: 1.0s;
    background-color: transparent;
    display: block;
}

#button-container button:nth-child(3) {
    animation-delay: 0.9s;
    background-color: transparent;
}

#availability p {
    text-transform: uppercase;
    font-size: 0.8vw;
    font-weight: 500;
    font-family: 'BatonNouveau-Regular';
    line-height: 1.2em;
    color: var(--deep-purple);
}

#availability {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0vw 2vw 0vw 1vw;
    text-transform: uppercase;
    font-size: 0.8vw;
    font-weight: 500;
    font-family: 'BatonNouveau-Regular';
    float: left;
    text-align: left;
}

#availability svg {
    width: 3vw;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    animation: fadeInDot 1s ease-in-out 1.2s forwards;
}

@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

.availability-dot {
    fill: var(--pink);
}

.stacked-spans span {
    display: block;
}

#AVAILABLE, #LONDON {
    visibility: hidden;
    overflow: hidden;
    display: block;
    margin: 0px 0px 0px 0px;
}

#AVAILABLE .letter, #LONDON .letter {
    display: inline-block;
    line-height: 1em;
    opacity: 0;
}

.header-nav-container {
    display: flex;
    width: 59vw;
    justify-content: space-between;
    align-items: center; /* Ensures vertical alignment */
    position: absolute;
    right: 0;
    top: 0vw;
    z-index: 2;
    padding: 1vw;
}

.item p {
    color: transparent;
    font-family: BatonNouveau-Regular;
    font-weight: 500;
    font-size: 0.8vw;
    line-height: 1.6vw;
    padding: 0px;
    margin: 0px;
    letter-spacing: -0.2px;
}

.item {
    flex: 0 0 calc(16.67% - 10px);
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Ensures vertical alignment */
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.item img {
    height: 3vw;
    display: block;
    width: 90%;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid transparent;
    outline-offset: -1px;
    box-shadow: inset 0px 0px 0px 1px transparent;
}

.item:hover {
    transform: scale(1.2);
    transition: all 0.2s ease;
}

.item:active {
    transform: scale(1.0);
    transition: all 0.1s ease;
}

.item:hover img {
    border-color: #000;
    box-shadow: inset 0px 0px 0px 1px #000;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));
}

.item:hover p {
    color: #000;
}

@media screen and (max-width: 950px) {

    #availability p {
        text-transform: uppercase;
        font-size: 1.8vw;
        font-weight: 500;
        font-family: 'BatonNouveau-Regular';
        line-height: 1.2em;
    }
    
    #header{
position: fixed;
top: 0;
    }

    #header-container {
z-index: 9;
height: 5vw;
position: fixed;
padding: 2vw 0vw 1.5vw 0vw;
top: 0;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
width: 100vw;
background-color: rgba(255, 255, 255, 0.5);
line-height: 40px;
margin: 0vw 1vw 1vw 0vw;
}

    button {
        font-size: 2.5vw;
        font-weight: 500;
        padding: 3vw;
        margin: 1vw 3vw 1vw 1vw;
    }
}

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

    #header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        top: 0;
        width: 34vw;
    }

    .header-nav-container {
        width: 62vw;
    }
}
