/* i used chatgpt for a lot of this. i can't be a worker afraid of a his toolbox*/
/* Basic reset */
@font-face {
    font-family: "NHaasGroteskDSPro-65Md";
    src: url("https://db.onlinewebfonts.com/t/c891e94039740e4a24a9f53324fd91be.eot");
    src: url("https://db.onlinewebfonts.com/t/c891e94039740e4a24a9f53324fd91be.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/c891e94039740e4a24a9f53324fd91be.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/c891e94039740e4a24a9f53324fd91be.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/c891e94039740e4a24a9f53324fd91be.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/c891e94039740e4a24a9f53324fd91be.svg#NHaasGroteskDSPro-65Md")format("svg");
}

body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "NHaasGroteskDSPro-65Md";
    background: white;
}

h1 {
    font-size: 11vw;
    margin: auto;
    text-align: center;
    text-decoration: none;
    padding-top: 10px;
}

header {
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 900;
    /* Ensures header is on top */
}



img.fixed-top-left {
    position: fixed;
    /* Sticks the element to a specific position on the screen */
    top: 0;
    /* Positions the element at the bottom of the screen */
    left: 0;
    /* Positions the element on the left side of the screen */
    padding-left: 20px;
    /* Adds some padding around the text */
    padding-top: 15px;
    z-index: 1000;
    /* Ensures the text appears above other elements */
    max-width: 70px;
    height: auto;

}

.container {
    display: flex;
    padding-left: 0px;
    /* Add padding equal to the width of the nav-panel */
    margin: auto;
}

.nav-panel {
    position: fixed;
    top: 60px;
    /* Space for the header */
    left: 0px;
    margin-left: 20px;
    height: calc(100vh - 60px);
    /* Adjust for header height */
    background-color: white;
    color: black;
    padding-top: 30px;
}

.nav-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.nav-panel li {
    margin: 20px 0;
}

.nav-panel a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}

.nav-panel a:hover {
    text-decoration: underline;
}

/* Gallery grid styling */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    /* Ensures a maximum of 4 images per row */
    gap: 15px;
    padding-top: 10px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 70px;
}

.gallery-item {
    width: 100%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Lightbox styling */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
}



.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (min-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        /* 4 images per row */
    }

    .aboutcontainer {
        max-width: 40%;
    }

    .ready {
        font-size: 3vw;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .gallery {
        grid-template-columns: repeat(3, 1fr);
        /* 3 images per row */
    }

    .ready {
        font-size: 5vw;
    }

}

@media (min-width: 600px) and (max-width: 899px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        /* 2 images per row */
    }

    .ready {
        font-size: 8.5vw;
    }
}

@media (max-width: 599px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
        /* 1 image per row */
    }

    .ready {
        font-size: 8.5vw;
    }
}



a {
    color: black;
    text-decoration: none;
    display: inline-block;
    transition: color 400ms ease-in-out, border-color 400ms linear;
}

a:hover {
    cursor: pointer;
    color: lime;
}


.aboutcontainer {
    padding-left: 30px;
    padding-bottom: 60px;
    padding-right: 30px;
}


.feet {
    font-size: 4vw;
}

/* Footer styling */
footer {
    position: fixed;
    /* Sticks the element to a specific position on the screen */
    bottom: 0;
    /* Positions the element at the bottom of the screen */
    right: 0;
    /* Positions the element on the left side of the screen */
    padding: 30px;
    /* Adds some padding around the text */
    background-color: white;
    /* Optional: background color to make text readable */
    color: black;
    /* Text color */
    z-index: 900;
    /* Ensures the text appears above other elements */
    text-align: right;
    padding-top: 20px;
    width: 100%;
    height: 10px;
}

.fixed-bottom-left {

    position: fixed;
    /* Sticks the element to a specific position on the screen */
    bottom: 0;
    /* Positions the element at the bottom of the screen */
    left: 0;
    /* Positions the element on the left side of the screen */
    margin-bottom: 20px;
    color: black;
    /* Text color */
    z-index: 1000;
    /* Ensures the text is above other elements */
    margin-left: 30px;
}

.enter {
    margin: auto;
    text-align: center;
    font-size: 4vw;
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;

}


.ready {
    margin: auto;
    text-align: center;
    top: 50%;
    bottom: 50%;
    width: 100%;

}