* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #ff1493;
    color: white;

    font-family:
        "Neue Haas Grotesk Text Pro",
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    font-weight: 400;
}


/* =========================
   HEADER
========================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    padding: 24px 32px;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    z-index: 1000;
}

.navbar a {
    color: white;

    text-decoration: none;

    font-size: 17px;

    line-height: 1;
}

.navbar a:hover {
    opacity: 0.55;
}

.logo {
    justify-self: center;

    font-size: 18px !important;
}

.navbar > a:last-child {
    justify-self: end;
}


/* =========================
   DROPDOWN
========================= */

.projects-dropdown {
    position: relative;
}

.projects-dropdown::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 220px;
    height: 20px;
}

.dropdown-menu {
    position: absolute;

    top: 28px;
    left: 0;

    width: 220px;

    padding: 10px 0 0 0;

    display: flex;
    flex-direction: column;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-5px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;

    z-index: 2000;
}

.dropdown-menu a {
    display: block;

    padding: 4px 0;

    font-size: 14px;

    line-height: 1.2;
}

.dropdown-menu a:hover {
    opacity: 0.55;
}

.projects-dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =========================
   MAIN
========================= */

main {
    padding-top: 95px;

    padding-bottom: 120px;
}


/* =========================
   INTRO
========================= */

.intro {
    width: 96%;

    max-width: 2000px;

    margin: 0 auto;

    padding: 35px 0 45px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 40px;

    align-items: start;
}


/* =========================
   TITTEL
========================= */

.intro-title {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.intro h1 {
    margin: 0;

    font-size: 88px;

    line-height: 0.88;

    font-weight: 400;
}


/* =========================
   ÅRSTALL
========================= */

.year {
    margin-top: 100px;

    font-size: 15px;

    line-height: 1;
}


/* =========================
   BESKRIVELSE
========================= */

.intro p {
    margin: 5px 0 0;

    font-size: 15px;

    line-height: 1.3;
}


/* =========================
   BILDER
========================= */

.project-grid {
    width: 96%;

    max-width: 2000px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    align-items: start;
}

.item {
    width: 100%;
}

.item img {
    display: block;

    width: 100%;

    height: auto;

    cursor: zoom-in;

    transition:
        opacity 0.25s ease;
}

.item img:hover {
    opacity: 0.88;
}


/* =========================
   LIGHTBOX
========================= */

.lightbox {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background:
        rgba(255, 20, 147, 0.96);

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 40px;

    opacity: 0;

    visibility: hidden;

    z-index: 5000;

    transition:
        opacity 0.2s ease;
}

.lightbox.active {
    opacity: 1;

    visibility: visible;
}

.lightbox-inner {
    width: 100%;

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;
}

.lightbox-inner img {
    display: block;

    max-width: 95vw;

    max-height: 92vh;

    width: auto;

    height: auto;

    object-fit: contain;
}


/* =========================
   LUKK
========================= */

.close {
    position: absolute;

    top: 16px;

    right: 27px;

    border: 0;

    background: none;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 50px;

    font-weight: 200;

    line-height: 1;

    cursor: pointer;

    z-index: 5001;
}

.close:hover {
    opacity: 0.55;
}

.no-scroll {
    overflow: hidden;
}


/* =========================
   MOBIL
========================= */

@media (max-width: 700px) {

    .navbar {
        padding: 18px;
    }

    .navbar a {
        font-size: 15px;
    }

    .logo {
        font-size: 16px !important;
    }


    /* MAIN */

    main {
        padding-top: 75px;

        padding-bottom: 70px;
    }


    /* INTRO */

    .intro {
        width: 94%;

        display: block;

        padding: 35px 0 35px;
    }

    .intro h1 {
        font-size: 54px;
    }


    /* ÅRSTALL */

    .year {
        margin-top: 70px;

        font-size: 13px;
    }


    /* BESKRIVELSE */

    .intro p {
        max-width: 350px;

        margin-top: 25px;
    }


    /* BILDER */

    .project-grid {
        width: 94%;

        grid-template-columns:
            1fr 1fr;

        gap: 7px;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 20px;
    }

    .lightbox-inner img {
        max-width: 97vw;

        max-height: 86vh;
    }

    .close {
        top: 10px;

        right: 17px;

        font-size: 42px;
    }

}