/* Global Styles and properties */
:root {
    --green: #00E676;
    --lightGreen: #69F0AE;
    --lighterGreen: #64FFDA;
    --blue: #29B6F6;
    --darkblue: #1976D2;
    --dark: #212121;
    --lightgrey: #D5E1E6;
    --lightergrey: #E0E8EC;
    --greenGradient: linear-gradient(to right, var(--lightGreen), var(--green));
    --greyGradient: linear-gradient(0deg, var(--lightergrey), white);
    --blueGradient: linear-gradient(to right, var(--blue), var(--darkblue));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'montserrat', sans-serif;
}

/* Navigation Styles */
nav {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

#nav-head {
    position: relative;
    top: 0;
    left: 0;
    min-height: 80px;
    height: max-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--greyGradient);
    padding: 20px 20px;
    pointer-events: all;
}

#navhead-left,
#navhead-right {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

#logo {
    height: 40px;
    width: 40px;
    margin-right: 10px;
    background-image: url(/assets/logoBlack.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#text p {
    font-weight: 300;
    font-size: 90%;
}

#text h4 {
    font-weight: 700;
    font-size: 110%;
}

.port-redir {
    margin: 10px 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.port-redir h4 {
    font-weight: 300;
    font-size: 90%;
}

.port-redir i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--blue);
    height: 30px;
    width: 30px;
    margin-left: 5px;
    border-radius: 50%;
    font-size: 75%;
    transition: .3s;
}

/* Nav drop down styles */
#nav-drop-container {
    position: relative;
    width: 100vw;
    pointer-events: all;
}

#toggle-bar {
    position: relative;
    height: 20px;
    background: var(--greenGradient);
    text-align: center;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.11);
    pointer-events: all;
}

#toggle-bar i {
    font-size: 250%;
    justify-content: flex-start;
    color: var(--lightergrey);
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.11);
}

/* Nav link styles */
#link-container {
    width: 100vw;
    display: none;
    flex-direction: column;
    list-style: none;
    text-align: end;
    position: relative;
    z-index: 1;
    pointer-events: all;
}

#link-container li {
    width: 100%;
    height: max-content;
    background-color: var(--blue);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.11);
    padding: 15px;
}

#link-container li a {
    font-weight: 600;
    font-size: 90%;
    font-style: italic;
    color: white;
    text-decoration: none;
}

#link-container li i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    background-color: white;
    height: 30px;
    width: 30px;
    margin-left: 10px;
    border-radius: 50%;
}

#cred-container {
    background-color: var(--lightergrey);
    list-style: none;
    display: none;
    flex-direction: column;
    align-items: flex-end;
}

#cred-container li {
    width: 90%;
    background-color: var(--lightgrey);
    box-shadow: none;
    border: 2px solid var(--lightergrey);
    border-top: none;
}


#cred-container li i {
    color: var(--lightgrey);
    background-color: white;
} 


#link-container .active-link {
    background: var(--greenGradient);
}

#link-container .active-link i {
    color: var(--lighterGreen);
    background-color: var(--lighterGreen);
}

#link-container #cred-container .active-link i {
    color: white;
    background-color: white;
}

/* Footer Styles */
footer {
    margin: 0 auto;
    width: 100%;
    min-height: 300px;
    height: max-content;
    background-color: white;
    color: var(--lightergrey);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 90%;
}

#media {
    display: flex;
    justify-content: center;
    align-items: center;
}

#media i {
    margin: 10px 5px;
    font-size: 250%;
    transition: .3s;
}

footer h4 {
    font-weight: 600;
}
footer p {
    font-weight: 500;
    font-style: italic;
}
footer button {
    font-size: 150%;
    width: 60%;
    background-color: var(--lightergrey);
    color: white;
    outline: none;
    border:none;
    border-radius: 10px;
    margin: 10px 0;
    padding: 20px 0;
    font-weight: 700;
    transition: .3s;
}

/* Information Section Page Styles */
.section {
    width: 100vw;
    min-height: 90vh;
    height: max-content;
    background-color: var(--dark);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

/* Credentials open class */
#link-container .open {
    background: var(--blueGradient);
}