
@font-face {
    font-family: 'Aeonik';
    src: url(/fonts/Aeonik-Regular.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Aeonik';   
}

.container {
    width: 100%;
    height: 100vh;
    overflow: auto;
    background: #000000;
}

.container::-webkit-scrollbar {
    display: none;
}

.navbar {
    position: fixed;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 2em;
}

#ink {
    width: 40px;
    height: 40px; 
    position: relative;
    display: flex;
    fill: #fff;
}

.site-logo {
    font-size: 40px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

#menu-toggle-btn {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100000;
}

.btn {
    height: 2px;
    background: #ffffff;
    width: 24px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transition: all 0.3s;
}

.btn::before {
    content: " ";
    position: absolute;
    display: inline-block;
    height: 2px;
    background: #ffffff;
    transform: translateY(-4px);
    width: 24px;
    transition: all 0.3s;
    top: -2px;
}

.active .btn {
    transform: rotate(45deg);
    background: #ffffff;
}

.active .btn::before {
    top: unset;
    transform: rotate(-90deg);
    background: #ffffff;
}

.active:hover .btn::before {
    top: unset;
}

.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    color: #fff;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    z-index: 1;
}

.nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

.num {
    font-size: 20px;
    font-family: 'Aeonik';
    letter-spacing: 4px;
    margin-right: 20px;
}

.nav-link {
    position: relative;
    padding-top: 50px;
}

.nav-link a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-family: 'scotch-display', sans-serif;
    font-weight: 300;
    font-size: 100px;
    letter-spacing: 10px;
}

.nav-link > a:hover {
    font-style: italic;
}


.nav-item-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    width: 500px;
    height: 60px;
    margin: 0 auto;
    transition: 1s;
}

.nav-footer {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 0;
    padding-bottom: 2em;
}

.nav-footer a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 0 1em;
}

.nav-footer a:hover {
    font-weight: 600;
}


@media(max-width: 900px) {

    .nav-link a{
        font-size: 80px;
    }

    .num{
        font-size: 15px;
    }

    .nav-socials a {
        font-size: 10px;
    }

}

ul li a {
    font-size: 10px;
}

.gallery {
    position: relative;
    top: 10%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
    padding: 10px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.fullscreen-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hide the image initially */
.fullscreen-hidden {
    display: none;
}


