/* Fonts

font-family: 'Encode Sans SC', sans-serif;
font-family: 'Julius Sans One', sans-serif;
font-family: 'Jura', sans-serif;
font-family: 'Lexend Giga', sans-serif;
font-family: 'Lexend Mega', sans-serif;
font-family: 'Lexend Zetta', sans-serif;
font-family: 'Manrope', sans-serif;
font-family: 'Michroma', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Quattrocento', serif;
font-family: 'Quicksand', sans-serif;
font-family: 'Raleway', sans-serif;
font-family: 'Sulphur Point', sans-serif; 

*/

.lined-header {
    font-family: 'Jura', sans-serif;
    /* font-family: 'Lexend Mega', sans-serif; */
    /* font-family: 'Montserrat', sans-serif; */
    /* font-family: 'Raleway', sans-serif; */
    /* font-family: 'Sulphur Point', sans-serif; */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: black;
    color: white;
    margin: 0;
    padding: 0;
    height: 100vh;
}

header {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2vh 4vw;
    display: flex;
    align-items: center;
    background-color: black;
    z-index: 2;
}

.header-item {
    flex: 0 1 auto;
    margin: 0px 5px;
}

nav {
    font-family: 'Jura', sans-serif;
    max-height: 0px;
    min-width: 150px;
    opacity: 0;
    transition: max-height 1s ease-out, opacity 0.5s ease-out, padding 0s linear 1s;
    position: absolute;
    padding: 0px 0px;
    overflow: hidden;

    background: linear-gradient(145deg, #00b7c429, #00f0ff29);
    border-radius: 5px;
    border: 1px solid #00f0ff30;
    box-shadow: 20px 20px 60px #008a9429,
        -20px -20px 60px #00f0ff29,
        inset -2px -2px 20px #00f0ff30;
    backdrop-filter: blur(12.6px);
        -webkit-backdrop-filter: blur(12.6px);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li {
    padding: 3px 0px;
}

.nav-group-heading {
    color: #7e7e7e;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nav-group-heading:before {
    content: "";
    border-bottom: 1px solid;
    margin: 0 2px 0 0;
    flex: 1;
}

nav hr {
    border-color: #7e7e7e;
}

nav a {
    text-decoration: none;
    color: white;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    justify-content:flex-start;
    align-items: center;
    width: 100%;
}

nav a:after {
    content: "";
    border-bottom: 1px solid;
    margin: 0 0 0 5px;
    flex: 0;
    transition: 200ms ease all;
    mask-image: linear-gradient(to right, #000000 0%, #000000 calc(100% - 20px), #ffffff52 100%);
    -webkit-mask-image: linear-gradient(to right, #000000 0%, #000000 calc(100% - 20px), #ffffff52 100%);
}

nav a:hover:after {
    flex: 1;
    transition: 400ms ease all;
}


#menu:hover nav,
#menu:focus nav {
    max-height: 1000px;
    padding: 25px 25px;
    opacity: 1;
    transition: max-height 1s ease-in, opacity 0.5s ease-in;
}

.logo {
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -4px;

    /* font-family: 'Raleway', sans-serif;
    letter-spacing: -3px; */

    /* font-family: 'Jura', sans-serif;
    letter-spacing: -2px; */
    
    /* font-family: 'Sulphur Point', sans-serif;
    letter-spacing: 4px; */
}

#progress-bar {
    flex: 1;
    width: 100%;
    display: flex;
}

#progress-bar a {
    background-color: #3a3a3a;
    margin: 2px;
    height: 10px;
    width: 100%;
}

#progress-bar .active-view {

    background-color: #d4f9fc;
    box-shadow: inset 0px 0px 3px 1px #02c0c0,
        0px 0px 7px 2px #007c7c;
}

main {
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    height: 100vh;
}
/* ==============================SECTIONS============================== */
section {
    scroll-snap-align: start;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 7vh 15vw 1vh;
}

div.container {
    display: flex;
    flex-direction: row;
}

div.container.vert {
    display: flex;
    flex-direction: column;
}

div.container > div {
    flex: 1;
}

div.info-column {
    padding: 10px 2vw;
}

/* ------------------Section Image------------------ */
.preview-image img {
    height: 70vh;
    width: 100%;
    object-fit: cover;
    /* filter: grayscale(.8) */
    mask-image: linear-gradient(to bottom, #ffffff00 0%, #000000 20px, #000000 calc(100% - 20px), #ffffff00 100%);
    -webkit-mask-image: linear-gradient(to bottom, #ffffff00 0%, #000000 20px, #000000 calc(100% - 20px), #ffffff00 100%);
}

/* ------------------Section Title------------------ */
.lined-header {
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    mask-image: linear-gradient(to right, #ffffff00 0%, #000000 20vw, #000000 calc(100% - 20vw), #ffffff00 100%);
    -webkit-mask-image: linear-gradient(to right, #ffffff00 0%, #000000 20vw, #000000 calc(100% - 20vw), #ffffff00 100%);
}

.lined-header:before,
.lined-header:after {
    content: "";
    border-bottom: 2px solid;
    margin: 0 8px 0 0;
    flex: 1 0 20vw;
    opacity: 0.4;
}

.lined-header:after {
    margin: 0 0 0 8px;
}

/* ------------------Section Links------------------ */
.header-links {
    display: flex;
    justify-content: space-evenly;
}

.footer-links {
    display: flex;
    justify-content: space-evenly;
}

.special-btn {
    text-align: center;
    text-decoration: none;
    width: 130px;
    height: 40px;
    color: #02c0c0;
    border-radius: 2px;
    /* padding: 10px 25px; original */
    font-family: 'Jura', sans-serif;
    /* font-weight: 500; */
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px #ffffff80,
        7px 7px 20px 0px #0000001a,
        4px 4px 5px 0px #0000001a;
    outline: none;
        
    padding: 0;
    line-height: 42px;
    border: none;
    background: transparent;
    /* background: linear-gradient(0deg, #02c0c0 0%, #0294c0 100%); */

    border-left: 3px solid #02c0c0;
    border-right: 3px solid #02c0c0;
}

.special-btn:hover {
    color: #ffffff;
    /* background: #ffffffb0;
    background: linear-gradient(0deg, transparent 0%, #f1f4fde0 25%, #ffffff 50%, #f1f4fde0 75%, transparent 100%); */
    box-shadow: none;
}

.special-btn:before,
.special-btn:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 3px;
    width: 100%;
    background: #02c0a0;
    /* box-shadow:
        -1px -1px 5px 0px #fff; */
    transition: 400ms ease all;
}

.special-btn:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

.special-btn:hover:before,
.special-btn:hover:after {
    width: 0;
    transition: 800ms ease all;
}

.special-btn {
    -webkit-transition: background-color 2s ease-out;
    -moz-transition: background-color 2s ease-out;
    -o-transition: background-color 2s ease-out;
    transition: background-color 2s ease-out;
}

/* ------------------Section content------------------ */
strong {
    color: #02c0c0;
}

div.info-column {
    
    font-family: 'Montserrat', sans-serif;
    /* font-family: 'Raleway', sans-serif; */
    /* font-family: 'Sulphur Point', sans-serif; */
}

li.no-bullet-line {
    list-style: none;
}

/* ------------------About Section------------------ */
.about-me {
    padding: 5vh 10vw;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2em;
    font-size: 1.5em;
}

/* ------------------Contact Section------------------ */
form {
    max-width: 25em;
    display: flex;
    flex-direction: column;
    margin: auto;
    align-items: center;
}

form > * {
    margin: 10px 0px;
}

input, textarea {
    width:100%;
    padding:10px 20px;
    transition: all ease-in-out 100ms;

    color:white;

    background: linear-gradient(145deg, #00b7c429, #00f0ff29);
    border-radius: 5px;
    border: 2px solid #00f0ff30;
}

input:hover, textarea:hover, input:focus, textarea:focus {
    border: 2px solid #02c0c0;
    background: none;
    background-color: white;
    color:black;
    transition: all ease-in-out 100ms;
}

.error {
    background: linear-gradient(145deg, #c4000029, #ff000029);
    border-radius: 5px;
    border: 2px solid #ff000030;
}

/* ==============================Toasts============================== */
#toaster-oven {
    position: fixed;
    width:100%;
    max-height: 40vh;
    bottom: 5vh;
    z-index: 100;
    overflow: hidden;
    display: grid;
    justify-items: center;
    justify-content: center;
    gap: 1vh;
    pointer-events: none;
}

.toast {
    color:#ffffff;
    font-family: 'Jura', sans-serif;
    padding: 10px 20px;
    max-width: 350px;
    width: 100%;
    text-align: center;

    background: linear-gradient(145deg, #00b7c429, #00f0ff29);
    border-radius: 5px;
    border: 2px solid #00f0ff30;
    box-shadow: 20px 20px 60px #008a9429,
        -20px -20px 60px #00f0ff29,
        inset -2px -2px 20px #00f0ff30;
    backdrop-filter: blur(12.6px);
        -webkit-backdrop-filter: blur(12.6px);
}


/* ==============================MOBILE VIEW============================== */
@media (max-aspect-ratio: 4/3) {
    section {
        padding: 7vh 4vw 1vh;
    }

    div.container.pivot {
        flex-direction: column;
    }

    .preview-image img {
        height: 40vh;
    }
  }