@font-face {
    font-family: nunito;
    src: url("../fonts/Nunito.ttf") format("truetype");
}
@font-face {
    font-family: readex;
    src: url("../fonts/Readex Pro.ttf") format("truetype");
}



body {
    margin: 0;
}



#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 30;
    flex-direction: column;
}
#loader-container {
    display: flex;
}
#loader-icon {
    height: 50px;
    opacity: 0;
    animation: fadeInOut 1s infinite;
}
@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
#loader-text {
    font: 300 21px readex;
    color: black;
    opacity: 0;
    animation: fadeInOut 1s infinite;
    margin: 0;
    margin-top: 10px;
}



#navbar {
    width: 100%;
    position: fixed;
    z-index: 20;
    background-color: transparent;
    box-shadow: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
    background-color: white;
    box-shadow: #00000033 0 2px 4px -1px, #00000024 0 4px 5px 0, #0000001f 0 1px 10px 0;
}
#navbar-container {
    display: flex;
    padding: 5px 0;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}
#navbar-brand {
    display: flex;
    align-items: center;
    margin-left: 10px;
}
#navbar-logo {
    display: flex;
    height: 50px;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
#navbar-actions {
    display: flex;
    align-items: center;
    font: 300 15px readex;
}
#navbar-login {
    text-decoration: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid white;
    line-height: 40px;
    text-align: center;
    width: 175px;
    margin-right: 10px;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
#navbar-login:hover {
    background-color: #fa003f;
    color: white;
    border-color: #fa003f;
}
#navbar.scrolled #navbar-login {
    color: black;
    border-color: black;
}
#navbar.scrolled #navbar-login:hover {
    background-color: #fa003f;
    color: white;
    border-color: #fa003f;
}
@media only screen and (max-width: 257px) {
    #navbar-container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }
    #navbar-brand {
        margin: 0;
    }
    #navbar-actions {
        width: 100%;
        justify-content: center;
    }
    #navbar-login {
        margin: 0;
    }
}



#hero {
    display: flex;
    height: 100vh;
    justify-content: center;
    background-color: black;
    background-image: url("../images/background.jpeg");
    background-position: center;
    background-size: cover;
}
#hero-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    justify-content: space-between;
    align-items: center;
}
#hero-intro {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}
#hero-intro-title {
    margin: 0;
    color: white;
    font: 900 50px readex;
}
#hero-register-card {
    display: flex;
    width: 355px;
    height: 178px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: white;
    flex-shrink: 0;
    justify-content: center;
    box-shadow: #00000033 0 2px 4px -1px, #00000024 0 4px 5px 0, #0000001f 0 1px 10px 0;
    text-align: center;
}
#hero-register-content {
    display: flex;
    flex-direction: column;
    width: 300px;
}
#hero-register-title {
    display: flex;
    margin: 0;
    margin-top: 20px;
    font: 24px nunito;
    justify-content: center;
    color: black;
}
#hero-register-text {
    font: 16px nunito;
    margin: 0;
    display: flex;
    justify-content: center;
    color: black;
    margin-top: 14px;
}
#hero-register-email {
    text-decoration: none;
    color: white;
    border-radius: 10px;
    font: 16px nunito;
    cursor: pointer;
    background-color: #fa003f;
    border: solid 1px #fa003f;
    line-height: 40px;
    text-align: center;
    margin-top: 21px;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
#hero-register-email:hover {
    background-color: transparent;
    color: #fa003f;
}
@media only screen and (max-width: 754px) {
    #hero-container {
        flex-direction: column;
        justify-content: flex-end;
        margin-bottom: 130px;
    }
    #hero-intro {
        display: none;
    }
    #hero-register-card {
        margin: 0;
    }
}
@media only screen and (max-width: 354px) {
    #hero-register-card {
        width: 100%;
        word-break: break-word;
    }
}
@media only screen and (max-width: 192px) {
    #hero-register-card {
        height: fit-content;
    }
    #hero-register-content {
        width: 100%;
    }
}



#info {
    display: flex;
    justify-content: center;
    height: 100%;
    background-color: white;
}
#info-container {
    display: flex;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 1300px;
    margin-top: 78px;
    margin-bottom: 70px;
    gap: 26px;
    justify-content: center;
}
.info-item {
    color: black;
    display: flex;
    gap: 26px;
    width: 500px;
}
.info-icon {
    display: flex;
    height: 50px;
    padding: 10px;
    border-bottom: 1px solid #caced1;
    border-left: 1px solid #caced1;
    border-right: 1px solid #caced1;
    border-radius: 100%;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}
.info-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.info-header {
    font: 14px readex;
    margin: 0;
    display: flex;
}
.info-title {
    font: 16px readex;
    margin: 0;
    display: flex;
}
.info-subtext {
    font: 300 14px readex;
    margin: 0;
    line-height: 24px;
}
@media only screen and (max-width: 1059px) {
    #info-container {
        gap: 47px;
        margin-top: 54px;
        margin-bottom: 47px;
    }
    #info-container, .info-item, .info-header, .info-title, .info-subtext {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .info-item {
        gap: 23px;
        max-width: 350px;
        width: 100%;
        word-break: break-word;
    }
    .info-content {
        gap: 19px;
    }
}



hr {
    border: 0;
    border-top: 1px solid #caced1;
    max-width: 1300px;
    width: 100%;
    display: flex;
    margin: 0px auto;
}



#stats {
    display: flex;
    justify-content: center;
    background-color: white;
    height: 100%;
}
#stats-container {
    display: flex;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 1300px;
    margin-top: 78px;
    margin-bottom: 74px;
    gap: 20px;
}
.stats-item {
    width: 25%;
    display: flex;
    flex-direction: column;
}
.stats-header {
    display: flex;
    flex-direction: column;
    height: 124px;
    gap: 10px;
}
.stats-title {
    display: flex;
    font: 900 45px readex;
    color: #fa003f;
    margin: 0;
    justify-content: center;
    text-align: center;
}
.stats-text {
    display: flex;
    font: 22px readex;
    color: #fa003f;
    margin: 0;
    justify-content: center;
    text-align: center;
}
.stats-subtext {
    font: 300 12px readex;
    color: black;
    margin: 0;
    text-align: center;
}
#stats-chart-content {
    display: flex;
    justify-content: space-between;
    height: 124px;
}
.stats-gender {
    width:80px;
    height: 100px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}
#stats-female-percentage {
    margin: 0;
    font: 28px readex;
    color: #fa003f;
}
#stats-female {
    display: flex;
    justify-content: center;
    margin: 0;
    font: 16px readex;
    color: #fa003f;
}
#stats-chart {
    height: 100px;
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
#stats-male-percentage {
    margin: 0;
    font: 28px readex;
    color: black;
}
#stats-male {
    margin: 0;
    font: 16px readex;
    display: flex;
    justify-content: center;
    color: black;
}
@media only screen and (max-width: 1059px) {
    #stats-container {
       flex-direction: column;
       align-items: center;
       gap: 38px;
       margin-top: 41px;
       margin-bottom: 51px;
    }
    .stats-item {
        width: 100%;
        max-width: 350px;
        word-break: break-word;
        gap:18px;
    }
    #stats-container .stats-item:nth-child(3) {
        margin-top: 12px;
        gap: 24px;
    }
    .stats-header {
        gap: 10px;
        height: 100%;
    }
    #stats-chart-content {
        height: 100%;
    }
    .stats-gender {
        height: 100%;
    }
}
@media only screen and (max-width: 237px) {
    #stats-chart-content {
        flex-direction: column;
        align-items: center;
    }
    #stats-female-percentage {
        display: flex;
        justify-content: center;
    }
    #stats-male-percentage {
        display: flex;
        justify-content: center;
    }
    .stats-gender {
        width: 100%;
    }
    #stats-chart {
        width: 100%;
    }
}



#members {
    display: flex;
    justify-content: center;
    background-color: white;
    height: 100%;
}
#members-container {
    display: flex;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 1300px;
    margin-top: 65px;
    margin-bottom: 78px;
    flex-direction: column;
    align-items: center;
}
#members-heart-icon {
    display: flex;
    height: 85px;
    animation: heartbeat 1s infinite;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    margin-bottom: 8px;
    pointer-events: none;
}
@keyframes heartbeat {
    0% {
        transform: scale(0.75);
    }
    20% {
        transform: scale(1);
    }
    40% {
        transform: scale(0.75);
    }
    60% {
        transform: scale(1);
    }
    80% {
        transform: scale(0.75);
    }
    100% {
        transform: scale(0.75);
    }
}
#members-title {
    font: 22px readex;
    color: #fa003f;
    margin: 0;
    word-break: break-word;
    text-align: center;
}
#members-text {
    font: 300 12px readex;
    color: black;
    margin: 0;
    word-break: break-word;
    margin-bottom: 2px;
    text-align: center;
}
#members-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1200px;
    gap: 10px;
}
.member-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 34px;
    text-decoration: none;
    position: relative;
}
.member-item:hover {
    animation: wiggle 0.4s ease-in-out;
}
@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    50% {
        transform: rotate(-2deg);
    }
    75% {
        transform: rotate(1deg);
    }
}
.member-online {
    position: absolute;
    top: -10px;
    left: -10px; 
    width: 20px;
    height: 20px;
    background-color: #27d696;
    border: 5px solid white;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.member-image {
    width: 250px;
    height: 300px;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 0;
    position: relative;
}
.member-info {
    display: flex;
    background-color: #fa003f;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    gap: 5px;
}
.member-bio {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}
.member {
    margin: 0px;
    color: white;
    font: 16px readex;
    display: flex;
    word-break: break-word;
    text-align: center;
}
.member-uploads {
    display: flex;
    gap: 5px;
    align-items: center;
}
.member-lens-icon {
    height: 20px;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    pointer-events: none;
}
.member-uploads-count {
    margin: 0px;
    color: white;
    display: flex;
    align-items: center;
    font: 300 16px readex;
}
@media only screen and (max-width: 1059px) {
    #members-container {
        margin-top: 40px;
        margin-bottom: 53px;
    }
    .member-item {
        margin-top: 22px;
    }
}
@media only screen and (max-width: 529px) {
    #members-text {
        margin-bottom: 6px;
    }
    .member-item {
        margin-top: 18px;
    }
}
@media only screen and (max-width: 269px) {
    .member-image {
        width: 100%;
    }
}
@media only screen and (max-width: 100px) {
    #members-heart-icon {
        width: 100%;
    }
}



#cta {
    display: flex;
    justify-content: center;
    height: 100%;
    background-color: white;
}
#cta-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 78px;
    justify-content: center;
}
#cta-registration {
    display: flex;
    max-width: 544px;
    width: 100%;
    text-align: center;
}
#cta-registration-now {
    color: #fa003f;
    width: 100%;
    font: 16px readex;
    border: solid 1px #fa003f;
    border-radius: 10px;
    line-height: 40px;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    word-break: break-word;
}
#cta-registration-now:hover {
    background-color: #fa003f;
    color: white;
}
@media only screen and (max-width: 1059px) {
    #cta-container {
        margin-bottom: 53px;
    }
}



#footer {
    display: flex;
    justify-content: center;
    height: 100%;
    background-color: white;
}
#footer-container {
    display: flex;
    width: 100%;
    max-width: 1300px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 12px;
    margin-top: 22px;
    justify-content: space-evenly;
    word-break: break-word;
}
.footer-columns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-title {
    margin: 0;
    font: 16px readex;
    font-weight: 500;
    color: #fa003f;
    margin-bottom: 19px;
}
.footer-text {
    margin-bottom: 10px;
    font: 14px readex;
    color: black;
    text-decoration: none;
}
.footer-text:hover {
    text-decoration: underline;
}



#instruction {
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: white;
}
#instruction-container {
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
    max-width: 1300px;
    text-align: center;
    margin-bottom: 23px;
    display: flex;
    word-break: break-word;
    flex-direction: column;
    gap: 24px;
}
#instruction-columns {
    display: flex;
    justify-content: center;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
#provenexpert {
    width: 100%;
    height: 100%;
}
#instruction-text {
    font: 11px readex;
    color: #caced1;
}
@media only screen and (max-width: 564px) {
    #instruction-container {
        text-align: justify;
    }
    #instruction-columns {
        justify-content: left;
    }
}



#copyright {
    height: 100%;
    display: flex;
    justify-content: center;
    background-color: #fa003f;
}
#copyright-container {
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    word-break: break-word;
}
#copyright-text {
    font: 12px readex;
    color: white;
}
@media only screen and (max-width: 564px) {
    #footer-container {
        flex-direction: column;
        gap: 8px;
    }
}