:root{
    /* --dark1: #482917;
    --dark2: rgb(31, 102, 89);
    --light1: rgb(237, 217, 152);
    --light2: #8bcafa;
    --accent1: #af8;
    --accent2: #fa8; */
    --dark1: hsl(-179, 99%, 24%);
    --dark2: 	hsl(-32, 41%, 20%);
    --light1: hsl(43, 78%, 83%);
    --light2: hsl(198, 59%, 74%);
    --accent1: hsl(-21, 87%, 72%);
    --accent2: hsl(173, 70%, 70%);
    --gray1: hsl(0,0%,10%);
    --gray2: hsl(0,0%,90%);

}

body{
    background: var(--dark1);
    color: var(--light1);
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent2);
    background: var(--dark2);
    padding: 10px;
}

#logo{
    color: var(--light1);
    font-size: 2vh;
    font-weight: bold;
    flex: 1;
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 80px;
    overflow: hidden;
}
.sectionWrapper{
    width: 80%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
a{
    color: var(--accent2);
    text-decoration: none;
}
.back{
    color: var(--accent2);
}
section:first-of-type .sectionWrapper{
    flex-direction: column;
    justify-self: center;
    color: var(--light1);
    align-items: start;
}
.sectionWrapper h1{
    color: var(--light2);
    text-shadow: 1px 1px 2px var(--dark2);
}

.sectionWrapper ol {
    font-size: 1.6rem;
    color: var(--light2);
    text-shadow: 1px 1px 2px var(--dark2);
    font-weight: 700;
}
.sectionWrapper ol li {
    color: var(--light1);
    font-size: 1rem;
    text-shadow: none;
    font-weight: normal;
}

header #logo span{
    color: var(--light2);
}

h1 span{
    font-weight: 300;
    color: var(--light1);
    font-size: 1.3rem;
}
.sectionText{
    width: 90%;
    flex: 3;
    z-index: 10;
}
.sectionWrapper .sectionText a{
    display: block;
    width: max-content;
    background: blue;
    justify-self: center;
}
.cta{
    background: var(--accent1);
    width: 200px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    box-shadow: 0 0 10px var(--dark2);
    margin-top: 20px;
    background: var(--gray2);
}
.honorableMentions{
    padding: 20px;
}
.supplies{
    padding: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
}
.supply{
    border-radius: 10px;
    background: var(--dark2);
    box-shadow: 1px 1px 2px #fff3 inset, -1px -1px 2px #0005 inset;
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 40px 1fr;
    overflow: hidden;
}
.supply>.supplyImageWrapper{
    grid-row: 1/3;
    grid-column: 1/2;
    display: flex;
    overflow: hidden;
}
.supplyImageWrapper>img{
    object-fit: cover;
    width: 100%;
}
.supply>.supplyTitle{
    grid-row: 1/2;
    grid-column: 2/3;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 16px;
}
.supplyText{
    padding: 20px 8px 16px 16px;
    color: var(--light2);
}
.honorableMentions{
    display: none;
}
.honorableMentions .supply{
    font-size: .7rem;
    letter-spacing: .25rem;
    background: #333;
}
.honorableMentions .supplyTitle span{
    font-size: .7rem;
    letter-spacing: .25rem;
}
.honorableMentions .supplyTitle{
    letter-spacing: 0;
}
.honorableMentions .supplyText{
    letter-spacing: 0;
    font-size: 1rem;
}
.noteHeading{
    color: var(--light1);
    margin: 0;
}
.course::before {
    content: '•'; /* This adds a bullet point */
    margin-right: 5px; /* Optional: adds space between bullet and text */
}
.notes{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}
.note{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 4px;
}
.note p{
    margin: 0;
    margin-left: 10px;
}
.classRecs{
    font-size: .8rem;
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
}
.classRecs>.class{
    font-weight: bold;
}
.classRecs>.recs{
    flex: 1;
    display: flex;
    gap: 20px;
}
h2{
    font-size: 1.2rem;
    font-weight: medium;
}
.recs>div{
    background: var(--gray2);
    color: var(--dark1);
    padding: 2px;
    height: fit-content;
    border-radius: 2px;
}
.recs>div:first-of-type{
    background: var(--light1);
    color: var(--dark1);
    padding: 2px;
}

@media (max-width: 1000px){
    .supplies{
        display: flex;
        flex-direction: column;
    }
    .supply{
        /* grid-template-columns: 2fr 3fr; */
        display: flex;
        flex-direction: column;
    }
    .supplyImageWrapper{
        background: white;
        justify-content: center;
        align-items: center;
        flex: auto;
        height: 200px;
    }
    .supplyImageWrapper>img{
        /* width: 180%; */
        height: 100%;
        width: auto;
    }
    .supplyTitle{
        flex: auto;
    }
    .supplyText{
        padding-top: 0;
        margin-bottom: 10px;
    }
}