/* ---------- master ---------- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');

:root {
    --rem: 12px;
    --black: #050505;
    --light-grey: #868686;
    --grey: #282828;
    --white: #f8f8f8;
    --primary: #5da994;
    --primary-font: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /*border: 1px var(--white) solid; */
}

body {
    font-family: var(--primary-font);
    font-weight: 300;
    color: var(--white);
    background-color: var(--black);
}

a {
    font-family: var(--primary-font);
    font-size: calc(var(--rem) * 1.3);
    font-weight: 300;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px var(--black) solid;
    padding-bottom: 0.25rem;
    transition: 0.5s;
}

a:hover {
    color: var(--light-grey);
    border-bottom: 1px var(--light-grey) solid;
}

form a {
    color: var(--white) !important;
}

form a:hover {
    color: var(--light-grey) !important;
}

input {
    font-family: var(--primary-font);
    font-size: calc(var(--rem) * 1.3);
    color: var(--white);
    font-weight: 300;
    background: var(--black);
    border: none;
    border-bottom: 2px var(--white) solid;
    padding: 0.5rem;
    width: 100%;
}

input::placeholder {
    color: var(--white);
}

textarea {
    resize: none;
    font-family: var(--primary-font);
    font-size: calc(var(--rem) * 1.3);
    color: var(--white);
    font-weight: 300;
    background: var(--black);
    border: none;
    border-bottom: 2px var(--white) solid;
    padding: 0.5rem;
    width: 100%;
}

textarea::placeholder {
    color: var(--white);
}

button {
    cursor: pointer;
    font-family: var(--primary-font);
    font-size: calc(var(--rem) * 1.3);
    font-weight: 300;
    color: var(--white);
    background: var(--black);
    border: none;
    padding: 1rem;
    transition: 0.5s;
}

button:hover {
    color: var(--white);
    background: var(--light-grey);
}

form button:hover {
    color: var(--black);
    background: var(--white);
}

/* ---------- text ---------- */

h1 {
    font-size: calc(var(--rem) * 4.5);
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    margin: 0.25rem 0;
}

h2 {
    font-size: calc(var(--rem) * 2);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

h3 {
    font-size: calc(var(--rem) * 1.3);
    text-transform: uppercase;
    letter-spacing: 0.5rem;
}

p {
    font-size: calc(var(--rem) * 1.3);
}

/* ---------- tools ---------- */

.padding {
    padding: 0 8rem;
}

.flex-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.box_shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.box_shadow:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.s_spacer {
    margin: 1rem 0;
}

.pinhole {
    display: none;
}

/* ---------- navigation ---------- */

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20vh;
    width: 100%;
}

.navigation_brand {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    width: 50%;
}

.navigation_brand a {
    font-size: calc(var(--rem) * 2.5);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    border-bottom: unset;
    padding-bottom: unset;
}

.navigation_links {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

.navigation_links a {
    font-size: calc(var(--rem) * 1.3);
    color: var(--white);
    transition: 0.5s;
}

.navigation_links a:hover {
    color: var(--light-grey);
    border-bottom: 1px var(--light-grey) solid;
}

/* ---------- popup ---------- */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    z-index: 10;
}

.popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: var(--black);
    height: 100vh;
    width: 100vw;
    z-index: -1;
}

.popup_container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    color: var(--black);
    text-align: center;
    background: url('../images/hero_background.jpg'), var(--white);
    background-size: cover;
    background-blend-mode: overlay;
    padding: 2.5rem;
    height: 75%;
    width: 25%;
}

.popup_container a {
    color: var(--black);
    border-bottom: 1px var(--white) solid;
}

.popup_container a:hover {
    color: var(--light-grey);
    border-bottom: 1px var(--light-grey) solid;
}

.popup_container form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    background: var(--black);
    padding: 2rem;
    width: 100%;
}

/* ---------- footer ---------- */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20vh;
    width: 100%;
}

.footer_title {
    width: 65%;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    width: 35%;
}

.footer_content a {
    color: var(--white);
}

.footer_content a:hover {
    color: var(--light-grey);
}