/* Green color code: #3e6641;*/
/* Dark blue color code: #12092f*/
/* Light purple color code: #9d8cc1 */
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing:border-box;
}
header {
    background-color: #12092f;
    position:fixed;
    width: 100%;
}
header li, a{
    font-family: "Source Sans 3", serif;
    font-weight: 500;
    font-size: 16px;
    color: #baaed2;
    text-decoration: none;
}
.navbar li{
    list-style: none;
}

.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.nav-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.nav-link:hover{
    transition: all 0.3s ease 0s;
    color: #baaed2;
}

.hamburger{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #baaed2;
}

@media(max-width: 768px){
    .hamburger{
        display: block;
    }

    .hamburger.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu{
        position:fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #806ea7; 
        width: 100%;
        text-align:center;
        transition: 0.3s;
    }

    .nav-item{
        margin: 16px 0;
    }

    .nav-menu.active{
        left: 0;
    }
}


body{
    background-color: #12092f;
}
/* 
h1{
    text-align: center;
    font-family: "Abril Fatface", serif;
    color: #a62211;
    font-size: 5em;
} */

h4{
    font-family: "Source Sans 3", serif;
    font-weight: bold;
    font-size: 1.5em;
    color: #baaed2;
}
p {
    font-family: "Source Sans 3", serif;
}

ul{
    font-family: "Source Sans 3", serif;
}
/*Style for "about" div*/
.about {
    display: flex;  
    /* align-items: flex-start; */
    /* align-items: center; */
    flex-direction:column;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 130px;
    padding-bottom: 40px;
    margin-right: 10%;
    margin-left: 10%;
}

.about li{
    margin-left: 20px;
}

/*Style for header2 in about secion*/
h2{
    font-family: "Abril Fatface", serif;
    color: #baaed2;
    font-size: 3em;
}
.about h2{
    /* text-align: center; */
    text-align:left;
    margin-bottom: 10px;
}

.about p{
    color: #9d8cc1;
    font-weight: 500;
}

.about ul{
    color: #9d8cc1;
    font-weight: 500;
}

/*Style for doodles, such as the cartoon self*/
.doodles{
    width: 200px;
    height: auto; 
    margin: 0 auto;
    flex-shrink: 0;
}

/*Style for text in about section*/
#about-text {
    display: flex;
    flex-direction: column;
    gap: 10px; 
}

#about-text h2,
#about-text p,
#about-text ul {
    margin: 0;
}

/* e.g., for quick links header */
h3{
    /* text-align: center; */
    text-align:left;
    font-family: "Abril Fatface", serif;
    color: #baaed2;
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* #quick-links{
    display:flex;
    flex-direction:;
    align-items: end;
} */
#quick-links-container{
    display:flex;
    flex-direction:column;
}
#quick-links-container a{
    color:#9d8cc1;
    text-decoration:underline dashed;
    transform: scale(1);
    transition: all 0.3s ease-in-out 0s;
}
#quick-links-container a:hover{
    font-weight: bold;
}

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

.quick-links{
    display:flex;
    justify-content:flex-start;
    gap: 20px;
}


/*Style for About page*/
.page-title{
    padding-top: 130px;
    padding-bottom: 60px;
    text-align: center;
}

.info-columns{
    margin-right: 10%;
    margin-left: 10%;
    display:flex;
    flex-wrap:wrap;
    gap: 20px;
}

.info-columns ul{
    color: #9d8cc1;
    font-weight: 500;
}


.info-box {
    /* flex: 1 1 45%; */
    flex:auto;
    /* min-width:250px;
    max-width:48%; */

    padding: 20px;


    box-sizing: border-box;
}
@media(max-width: 768px){
    .info-box {
        /* flex: 1 1 45%; */
        flex:auto;
        min-width:250px;
        max-width:none;

        padding: 20px;


        box-sizing: border-box;
    }
    /* .info-box h3{
        text-align:center;
    } */
}

.contact-methods ul{
    list-style: none;
    text-align: center;
}

.info-box a{
    color:#baaed2;
    text-decoration:underline dashed;
}
