* {
    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;

    align-items: start;

    z-index: 1000;
}

.navbar a {
    color: white;

    text-decoration: none;

    font-size: 17px;

    line-height: 1;
}

.navbar a:hover {
    opacity: 0.55;
}

.projects-dropdown {
    position: relative;

    justify-self: start;
}

.projects-link {
    display: block;
}

.logo {
    justify-self: center;

    text-align: center;

    font-size: 18px !important;
}

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


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

.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: 105px;

    padding-bottom: 120px;
}


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

.intro {
    width: 94%;

    max-width: 1900px;

    margin: 0 auto;

    padding: 45px 0 65px;

    display: grid;

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

    gap: 70px;

    align-items: start;
}


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

.intro-title {
    position: relative;

    min-height: 175px;
}

.intro h1 {
    margin: 0;

    font-size: 88px;

    line-height: 0.88;

    font-weight: 400;
}


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

.year {
    position: absolute;

    left: 0;

    top: 145px;

    font-size: 15px;

    line-height: 1;
}


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

.intro > p {
    margin: 5px 0 0;

    font-size: 15px;

    line-height: 1.3;
}

.project-type {
    display: block;

    margin-top: 18px;
}


/* =========================
   STORT HOVEDBILDE
========================= */

.hero-image {
    width: 94%;

    max-width: 1900px;

    margin: 0 auto 70px;
}

.hero-image img {
    display: block;

    width: 80%;

    height: auto;

    cursor: zoom-in;

    transition: opacity 0.25s ease;
}

.hero-image img:hover {
    opacity: 0.88;
}


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

.project-grid {
    width: 94%;

    max-width: 1900px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 45px;

    align-items: start;
}

.column {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 45px;
}

.item {
    width: 100%;
}

.item img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;

    cursor: zoom-in;

    transition: opacity 0.25s ease;
}

.item img:hover {
    opacity: 0.88;
}


/* =========================
   VARIASJONER
========================= */

/* VENSTRE KOLONNE */

.left-column .item:nth-child(1) {
    width: 100%;
}

.left-column .item:nth-child(2) {
    width: 86%;
}

.left-column .item:nth-child(3) {
    width: 94%;
}

.left-column .item:nth-child(4) {
    width: 82%;
}


/* HØYRE KOLONNE */

.right-column .item:nth-child(1) {
    width: 88%;

    margin-left: auto;
}

.right-column .item:nth-child(2) {
    width: 100%;
}

.right-column .item:nth-child(3) {
    width: 84%;

    margin-left: auto;
}


/* =========================
   LITT MER BEVEGELSE
========================= */

.left-column .item:nth-child(2),
.left-column .item:nth-child(4),
.right-column .item:nth-child(1),
.right-column .item:nth-child(3) {
    margin-top: 8px;
}


/* =========================
   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;
}


/* =========================
   LUKKEKNAPP
========================= */

.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: 90px;

        padding-bottom: 80px;
    }


    /* INTRO */

    .intro {
        width: 92%;

        display: block;

        padding: 50px 0 45px;
    }

    .intro-title {
        min-height: 125px;
    }

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

    .year {
        top: 95px;

        font-size: 13px;
    }

    .intro > p {
        max-width: 350px;

        margin-top: 30px;
    }

    .project-type {
        margin-top: 18px;
    }


    /* HOVEDBILDE */

    .hero-image {
        width: 92%;

        margin: 0 auto 45px;
    }

    .hero-image img {
        width: 100%;
    }


    /* BILDER UNDER */

    .project-grid {
        width: 92%;

        grid-template-columns: 1fr;

        column-gap: 0;
    }

    .column {
        gap: 30px;
    }

    .item {
        width: 100% !important;

        margin-left: 0 !important;

        margin-top: 0 !important;
    }


    /* LIGHTBOX */

    .lightbox {
        padding: 20px;
    }

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

        max-height: 86vh;
    }

    .close {
        top: 10px;

        right: 17px;

        font-size: 42px;
    }
}