/* =====================================
   RESET
===================================== */

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


/* =====================================
   NAVIGASJON
===================================== */

.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;
}


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

.projects-dropdown {
    position: relative;

    justify-self: start;
}

.projects-link {
    display: block;
}


/* Usynlig hover-sone */

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

    position: absolute;

    top: 100%;
    left: 0;

    width: 220px;
    height: 20px;
}


/* =====================================
   LOGO
===================================== */

.logo {
    justify-self: center;

    text-align: center;

    font-size: 18px !important;
}


/* =====================================
   KONTAKT
===================================== */

.contact-link {
    justify-self: end;
}


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

.dropdown-menu {
    position: absolute;

    top: 22px;
    left: 0;

    width: 200px;

    padding-top: 14px;

    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 {
    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);
}


/* =====================================
   PROSJEKTSIDE
===================================== */

.project-page {
    padding-top: 130px;

    padding-bottom: 100px;
}


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

.project-intro {
    width: 92%;

    max-width: 1800px;

    margin: 0 auto;

    padding: 80px 0 100px;

    display: grid;

    grid-template-columns: 1fr 300px;

    gap: 60px;

    align-items: start;
}

.project-title h1 {
    margin: 0;

    font-size: 80px;

    line-height: 0.95;

    font-weight: 400;
}

.project-description {
    padding-top: 8px;
}

.project-description p {
    margin: 0;

    font-size: 15px;

    line-height: 1.35;
}


/* =====================================
   BILDE + TEKST
===================================== */

.project-image-row {
    width: 94%;

    max-width: 1800px;

    margin: 0 auto 60px;

    display: grid;

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

    gap: 40px;

    align-items: start;
}


/* =====================================
   BILDER PÅ PC
===================================== */

.image-container {
    width: 100%;

    display: flex;

    justify-content: flex-start;

    align-items: flex-start;
}

.image-container img {
    display: block;

    width: auto;

    max-width: 100%;

    height: calc(100vh - 150px);

    object-fit: contain;

    transition: opacity 0.3s ease;
}

.image-container img:hover {
    opacity: 0.8;
}


/* =====================================
   TEKST VED SIDEN AV BILDE
===================================== */

.image-text {
    padding-top: 5px;
}

.image-text p {
    margin: 0;

    font-size: 14px;

    line-height: 1.35;
}


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

@media (max-width: 700px) {

    /* NAVIGASJON */

    .navbar {
        padding: 18px;
    }

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

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


    /* DROPDOWN */

    .dropdown-menu {
        top: 25px;

        width: 200px;
    }

    .dropdown-menu a {
        font-size: 13px;

        padding: 4px 0;
    }


    /* PROSJEKTSIDE */

    .project-page {
        padding-top: 90px;

        padding-bottom: 60px;
    }


    /* INTRO */

    .project-intro {
        width: 92%;

        padding: 70px 0 70px;

        display: block;
    }

    .project-title h1 {
        font-size: 52px;
    }

    .project-description {
        max-width: 400px;

        margin-top: 35px;
    }


    /* BILDER */

    .project-image-row {
        width: 92%;

        margin: 0 auto 45px;

        display: block;
    }

    .image-container {
        width: 100%;

        display: block;
    }

    .image-container img {
        width: 100%;

        height: auto;

        max-width: 100%;

        object-fit: contain;
    }


    /* TEKST */

    .image-text {
        margin-top: 18px;

        max-width: 300px;
    }

    .image-text p {
        font-size: 13px;
    }
}

