@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Space+Grotesk:wght@300..700&display=swap');
:root {
    --horizons-bg: #F6EFE1;
    --horizons-orange: #FFA936;
    --horizons-pink: #F86E95;
    --horizons-blue: #46467C;
}
body {
    background-color: #F6EFE1 ;
    margin: 0;
    padding-bottom: 300px;
}
a {
    text-decoration: none;
}
/* UNDERLINE ANIM PART COPIED OFF https://www.30secondsofcode.org/css/s/hover-underline-animation/ */
.underline-anim {
    margin-top: 13;
    display: inline-block;
    position: relative;
}
.underline-anim::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 4px;
    left: 0;
    background-color: #00e;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.underline-anim:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
#hero {
    background-color: rgba(255, 169, 54, 0.9);
    height: 300px;
    padding-top: 10px;
}
#nav {
    display: flex;
    height: 350px;
    padding-top: 100px;
}
/*#nav {
    display: stick;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 25px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    height: 40px;
    width: fit-content;
    padding: 10px 30px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    gap: 60px;
    position: fixed;
    inset: 10px 0 ;
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    transform-origin: center;
    transition: all 0.4s ease;
    transform-origin: center;
}*/
#nav {
    position: fixed;
    display: flex;
    inset: 0;
    top: 10px;
    left: 50%;
    z-index: 98;
    font-size: 25px;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    height: 40px;
    width: 850px;
    padding: 10px 30px 5px 30px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    gap: 60px;
    position: fixed;
    inset: 10px 0 ;
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.8s ease;
    transform-origin: center;
    font-size: 25px;
    vertical-align: middle;
}
#nav.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    width: 650px;
    height: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
#nav-links {
    display: flex;
    gap: 40px;
}
#nav-links a {
    font-family: 'Space Grotesk';
    font-weight: 800;
}
#nav-title {
    text-decoration: underline wavy;
    font-family: 'Space Grotesk';
    font-weight: 800;
    text-underline-offset: 5px;
    transition: 0.4s ease;
}
#hero-main{
    display: flex;
    justify-content:flex-start;
    align-items: center;
    padding-left: 20vw;
}
#hero-title {
    font-family: 'Bricolage Grotesque';
    font-weight: bolder;
    font-size: 70px;
    color: var(--horizons-blue);
}
#projects, .cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: start;
    margin-left: 5vw;
    margin-right: 5vw;
    overflow-x: scroll;
}
.section-title {
    font-family: 'Space Grotesk';
    font-weight: bolder;
    font-size: 30px;
    margin-left: 5vw;
}
.card {
    background-color: white;
    width: 300px;
    height: auto;
    border-radius: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.project-title {
    font-family: 'Space Grotesk';
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 0px;
}
.project-type {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 10px;
    margin-bottom: 0px;
}
.project-html {
    background-color: red;
    color: white;
    font-family: 'Bricolage Grotesque';
    font-weight: bolder;
    padding: 5px 15px;
    border-radius: 20px;
}
.project-css {
    background-color: #264EE4;
    color: white;
    font-family: 'Bricolage Grotesque';
    font-weight: bolder;
    padding: 5px 15px;
    border-radius: 20px;
}
.project-info {
    margin:0px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    color: rgb(86, 86, 86);
}
#login {
    position: fixed;
    inset: 0;
    z-index: 99;
    width: 100vw;
    height: 100vh;
    background-color: rebeccapurple;
    font-family: 'Space Grotesk';
}
#login-form, #signup-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: fit-content;
    gap: 20px;
}
#email, #password, #confirm-password, #newEmail, #newPassword, #newConfirmPassword {
    padding: 10px;
    font-size: 20px;
    font-family: 'Space Grotesk';
}
#login-submit, #signup-submit {
    padding: 10px 20px;
    font-size: 20px;
    width: auto;
    height: 5vh;
}
#login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 100vh;
    gap: 10px;
    margin: auto;
}
#type-switch {
    color: white;
    font-size: 20px;
    cursor: pointer;
}
/* UNDERLINE ANIM PART COPIED OFF https://www.30secondsofcode.org/css/s/hover-underline-animation/ */
.underline-anim-white {
    display: inline-block;
    position: relative;
}
.underline-anim-white::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.underline-anim-white:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
.s-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.add {
    margin-right: 5vw;
    height: 50px;
    width: 200px;
    font-size: 20px;
    font-weight: bolder;
    color: white;
    font-family: 'Space Grotesk';
    background-color: #8585ea;
    border: solid 2px #5151faff;
    border-radius: 15px;
    transition: all 0.3s ease;
}
.add:hover {
    transform: scale(1.1);
}
.m-card {
    background-color: white;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: auto;
    border-radius: 30px;
}
.m-name {
    font-family: 'Space Grotesk';
    font-size: 20px;
    font-weight: bolder;
    margin: 0;
}
.m-email {
    font-family: 'Space Grotesk';
    font-size: 15px;
    font-weight: bolder;
    margin: 0;
}
.active {
    border: 3px solid var(--horizons-orange);
}
#members {
    display: flex;
    flex-direction: row;
    gap: 10px;

}
#m-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 500px;
    width: 40%;
    justify-content: center;
    overflow-y: scroll;
}
#m-info {
    background-color: white;
    width: 53%;
    height: 500px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-left: 40px;
    padding-right: 40px;
    overflow-y: scroll;
}
#mi-name {
    font-family: 'Space Grotesk';
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 0;
}
#mi-email {
    font-family: 'Space Grotesk';
    font-weight: bolder;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 0;
}
#mip-list {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: 250px;
    gap: 20px;
}
#mip-header {
    font-family: 'Space Grotesk';
    font-weight: bolder;
    font-size: 20px;
    margin-bottom: 0;
}
.mip-card {
    background-color: rgb(207, 206, 206);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 20px;
}
.mip-name {
    margin-top: 20px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    margin-bottom: 3px;
}
.mip-desc {
    font-family: 'Space Grotesk';
    font-weight: 700;
    color: rgb(86, 86, 86);
}
#f-title {
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 20px;
}
#f-info {
    width: 100%;
    height: 100px;
    font-size: 15px;
    font-family: 'Space Grotesk';
}
#f-hint {
    font-style: italic;
    color: rgb(207, 206, 206);
    font-family: 'Space Grotesk';
}