/* STYLING */

@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;

}

body {
    font-family: "Source Code Pro", monospace;
    /* font-family: "Work Sans", monospace; */
    /* font-family: "Poppins", monospace; */
    background: rgb(255, 255, 243);
}

html{
    scroll-behavior: smooth;
}

p{
    color: rgb(85, 85, 85);
}

.header-container a{
    transition: all 300ms ease;
}

.title-container{
    margin-left: 8rem;
    border-left: rgb(85, 85, 85) dotted 0.2rem;
    /* border-radius: 2rem; */
    padding-left: 2rem;

}
.title{
    font-family: "Source Code Pro", monospace;
    font-size: 3.5rem;
    text-align: left;
}
.title-subtext{
    font-family: "Source Code Pro", monospace;
    color: rgb(85, 85, 85);

}
.stripe{
    height: 1vh;
    background-color: green;
}

/* SECTIONS */

section{ 
    background-color: rgb(255, 255, 243);
    margin: 0rem;
    box-sizing: border-box;
    min-height: fit-content;
    opacity: 0;
    animation-duration: 2s;
    animation-timing-function: ease;
}
@keyframes showsections {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* ICONS */

.icon{
    cursor:pointer;
    height: 2rem;
}

/*DESKTOP NAVIGATION*/


.header-container{
    z-index: 2;
    position: fixed;
    background-color: rgb(99, 201, 99);
    height: 17vh;
    min-height: 130px;
    width: 100vw;
    box-shadow: 0px -15px 20px 10px green;
    opacity: 97%;
}

.header-container.shadow{
    box-shadow: 0px -10px 20px 10px green;
    transition: box-shadow 600ms ease;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 16vh;
    min-height: 130px;
}

.nav-links{
    opacity: 1;
    display: flex;
    gap: 2rem;
    list-style: none;
    font-size: 1.5rem;
    /* animation-name: fadeIn; */
    animation-timing-function: ease;
    animation-duration: 0.5s;
    
}
@keyframes fadeIn {
    from{opacity: 0;}
    to{opacity: 1;}
}

a {
    /* color: black; */
    color: beige;
    text-decoration: none;
}

a:hover {
    color: black;
    font-weight: bolder;
}

.logo{
    font-size: 4rem;
    font-weight: 400;
    color: beige;
}

.logo:hover{
    cursor: default;
}


/*HAMBURGER NAVIGATION*/

#hamburger-nav {
    display: none;
}

.TESTBTN{
    border: 2px solid beige;
    padding: 1rem;
    width: 4rem;
    border-radius: 2rem;
    background-color: rgb(99, 201, 99);
    animation-timing-function: cubic-bezier();
    animation-duration: 1s;
}
@keyframes testbtnfadein {
    from{opacity: 0;}
    to{opacity: 100;}
}

.TESTBTN:hover{
    cursor: pointer;
    background-color: green;
    transition: 300ms ease-in;

}

.TESTBTN.open{
    /* border: 2px solid rgb(173, 0, 173); */
    background: green;
    transition: none;
}

.hamburger-menu{
    position: relative;
    display: inline-block;
}

.hamburger-icon{

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
    width: 30px;
    cursor: pointer;
}

.hamburger-icon span{
    width: 100%;
    height: 2px;
    background-color: beige;
    transition: all 0.3 ease-in-out;
}

.menu-links {
    margin-top: 2rem;
    position: absolute;
    top: 100%;
    right: 0%;
    background-color: transparent;
    width: fit-content;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3 ease-in-out;
}

.menu-links a{
    display:block;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0px;
    padding-right: 10px;
    text-align:left;
    font-size: 1.5rem;
    color: black;
    text-decoration: none;
    transition: all 0.3 ease-in-out;
}
.menu-links a:hover{
    /* color: rgb(173, 0, 173); */
    color: black;
    text-indent: 5%;
}

.menu-links li{
    list-style: none;
}

@keyframes openmenu {
    from {max-height: 0px;}
    to {max-height: 300px;}
}

.menu-links.open{
    animation-name: openmenu;
    animation-duration: 0.5s;
    max-height: 300px;
}

.hamburger-icon.open span:first-child {
    
    transform: translate(-1px,10.7px) rotate(45deg);
    background-color: white;
}
.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
}
.hamburger-icon.open span:last-child {
    transform: translate(-1px,-10.7px) rotate(315deg) ;
    background-color: white;
}
.hamburger-icon.open {
    background: green;
    transition: 300ms;
}

#progress{
    padding-top: 20vh;
    height: auto;
    padding-bottom: 5vh;
}

#progress-container{
    background-color: rgb(99, 201, 99);
    height: 80vh;
    margin-top: 4rem;
    margin-left: 8rem;
    margin-right: 8rem;
    border-radius: 0.5rem;
    /* border: solid black 1px; */
    box-shadow: 0px 0px 10px 10px rgb(99, 201, 99);
    
}
#tab-container{
    display: flex;
    gap: 0.5rem;
    background-color: transparent;
    height: 8%;
}
.tab{
    
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0.5rem;
    --numberOfTabs: 4;
    width: calc((90%/ var(--numberOfTabs)));
    
    transition: all 150ms ease;
}
.tab p{
    
    text-wrap: nowrap;
    padding-top: 0.25rem;
    padding-left: 0.5rem;
    margin-left: 10%;
    width: min-content;
    height: min-content;
    border-left: dotted black 2px;
}
.tab:hover{
    font-weight: bolder;
    cursor: pointer;
}
.content-container{
    font-family: "Work Sans", monospace;
    display:none;
    overflow: scroll;
    border-radius: 0.5rem;
    background-color: white;
    padding: 4rem;
    padding-top: 0;
    height: calc(92% - 4rem);
    flex-direction: column;
}

#content1, #alt-content1{
    display: flex;
}


.content-container-buffer{
    background-color: white;
    position: absolute;
    width:calc(100% - 24rem);
    height: 5%;
    box-shadow: 0px 0px 1rem 0px rgba(0,0,0,0.25);
    clip-path: inset(0px 0px -5rem 0px);
}

.monthly-header{
    padding-top: calc(5% + 2rem);
    border-bottom: solid black 2px;
}

.update{
    min-height: fit-content;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    /* border: solid blue 2px; */
}
.update-column{
    display: flex;
    flex-direction: column;
}
.update ul, .update p{
    padding-top: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    /* border: solid black 2px; */
}
.update p{
    text-indent: 5%;
    padding-left: 2rem;
    padding-right: 2rem;
}
.update a{
    color: black;
    text-decoration: underline;
}
.thin-pic-container{
    min-width: 15rem;
    /* border: solid black 2px; */
}
.wide-pic-container{
    align-self: center;
    max-width: 75%;
    /* border: solid black 2px; */
}
.square-pic-container{
    min-width: 40%;
    height: auto;
    /* border: solid black 2px; */
}
.progress-pic, iframe{
    width: 100%;
    
}
iframe {
    margin-top: 1rem;
    border: solid black 2px;
}


/* ALTERNATIVE TABS */

#alt-progress-container{
    display: none;
    /* border: solid blue 2px; */
    height: 100vh;
    margin: 4rem;
}
#alt-tab-container{
    min-width: 17rem;
    background-color: rgb(255, 255, 243);
    /* border: solid black 2px; */
}
.alt-tab{
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}
.alt-tab:hover p{
    cursor: pointer;
    transition: all 300ms ease;
    font-weight: bolder;
}
.alt-tab:hover .tab-span{
    cursor: pointer;
    transition: all 300ms ease;
    border-color: black;
}
.tab-span{
    width: 2rem;
    height: 0px;
    border: solid rgb(85, 85, 85) 1px;
}

/* MOBILE LAYOUT */
#mobile-progress-container{
    margin: 2rem;
    overflow: scroll;
    height: 80vh;
    display: none;
    padding: 2rem;
    padding-top: 0;
    border: solid black 2px;
    background-color: white;
    border-radius: 1rem;
}
.mobile-content-container{
    font-family: "Work Sans", monospace;
    display: none;
}
.mobile-content-container p, .mobile-content-container li{
    /* border: solid black 2px; */
    font-size: 0.8rem;
}
.button-container{
    display: flex;
    margin-top: 40vh;
    position:absolute;
    width: fit-content;
    border: solid black 2px;
    opacity: 0.5;
    background-color: rgb(99, 201, 99);
    clip-path: circle(40%);
}
.button-container:hover{
    transition: all 300ms ease;
    opacity: 1;
}

#right-button{
    margin-right: -1rem;
    align-self: flex-end;
}
#left-button{
    margin-left: -1rem;
    transform:rotate(180deg);
}

#mobile-content1{
    display:block;
}

/* CONTACT SECTION */
.footer{
    bottom: 0;
    width: 100%;
    background-color: rgb(99, 201, 99);
    height: 20vh;
    min-height: 150px;
    opacity: 80%;
    box-shadow: 0px 12px 20px 10px green;
}

.contact-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1rem;
    text-align: center;
    
}

.contact-container hr{
    width: 50rem;
    height: 0px;
    background-color: black;
    border: black solid 1px;
    border-radius: 3rem;
}

.contact-container h6{
    text-wrap: nowrap;
}

.footer-bar{
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

#footer-top hr{
    margin-top: 0.35rem;
}

@keyframes box-shake{
    0% {padding-left: 0rem; padding-right: 0rem; text-shadow: green 1px 0px 0px;}
    20% {padding-left: 0.25rem; padding-right: 0rem; text-shadow: green 1px 0px 1px;}
    40% {padding-left: 0rem; padding-right: 0.5rem; text-shadow: green 1px 0px 3px;}
    60% {padding-left: 0.5rem; padding-right: 0rem; text-shadow: green 1px 0px 3px;}
    80% {padding-left: 0rem; padding-right: 0.25rem; text-shadow: green 1px 0px 1px;}
    100% {padding-left: 0rem; padding-right: 0rem; text-shadow: green 1px 0px 0px;}
    
}

.email-container-effect{
    margin-left: auto;
    margin-right: auto;
}

.email-container-effect.shake{
    animation-name: box-shake;
    animation-duration: 0.75s;

}

.email-container{
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    
}

.email-container h4{
    margin-top: 0.3rem;
}

.email-container:hover{
    text-decoration: underline;
    cursor: pointer;
}

#footer-bottom hr{
    margin-top: 0.8rem;
}
