/* CSS GOES HERE this is a comment*/
    @import url('https://fonts.googleapis.com/css2?family=Gamja+Flower&family=Host+Grotesk&family=Meow+Script&display=swap');

/* :root {
    --primary-bg-color
    --primary-color


} */

html {
    font-family: Arial, Helvetica, sans-serif;

}
body {
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    background-color: #cfe2fb;
}


/* getting link rid of underline */
/* all link colors */
a:link { 
    color: white;
    text-decoration: none;
}

a:visited {
    color: white;
    text-decoration: none;
}

a:hover {
    color:aliceblue;
    text-decoration: none;
}


/* Name in nav */

div#wrapper {
    background: coral;
}

div.text-wrapper {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1 {
    font-family: "Gamja Flower";
    font-size: 36px;
    margin-block-start: 0%;
    margin-block-end: 0%;
}

h2 {
    font-family: "Gamja Flower";
    font-size: 35px;
    margin-block-start: 0%;
    margin-block-end: 0%;
    color:#2d455b;
}

h3 {
    font-family: "Gamja Flower";
    font-size: 25px;
    margin-block-start: 0%;
    margin-block-end: 0%;
    color:#2d455b;
}

p {
    font-family: "Host Grotesk";
    font-size: 17px;
    margin-block-start: 0%;
    margin-block-end: 0%;
    color:#2d455b;
}


section {
    padding: 60px 20px;
}
/* section:nth-child(even) {
    background-color: #f2f2f2;
} */


/* Mobile menu */
/* div.mobile-container {
    max-width: 478px;
    
} */



ul#main-nav {
    list-style-type: none;
    display: none;
    position: absolute;
    top: 150px;
    right: 10px;
    width: 300px;
    height: auto;
    background-color: #5769a7;
    text-align: center; 
    line-height: 300%;
    margin: 0px;
    padding: 0px;
    font-family: "Host Grotesk";
    font-size: 16px;
}

img.icon {
    display: none;
    position: absolute;
    top: 62px;
    right: 10px;
}

div.mobile-menu a {
    padding: 10px;
    display: block;
    
    
}

div.mobile-menu a:hover {
    background-color:#48578c;
}


/* Nav Bar CSS */
section#nav-bar {
background-color: #5769a7;

}

div.nav-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-left: 70px;
    margin-right: 70px;
    
}


div.name {
    display: flex;
    flex-direction: row;
    gap: 90px;
}

div.nav-name {
    font-family: "Meow Script";
    font-size: 40px;
    font-weight: 400;
    color: white;
    margin-left: 0px;

}

img.light {
    width: 60px;
    height: auto;
}

div.nav-links {
    display: flex;
    flex-direction: row;
    gap: 30px;
}


img.icon {
    width: 60px;
    height: auto;
    
}


/* Home page CSS */
section#header {
    background-color: #8596cf;
}

/* div.header-text {
    flex-direction: column
} */



div.container {
    width: 100%;
    max-width: 960px;
    text-align: left;
    margin: 0 auto;
    
}

div.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  
}


div.main{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 31px;

    
}

div h1.my-name {
        font-family: "Meow Script";
        font-size: 45px;
        color: white;

    }

div.learn-more-button {
    background-color: white;
    font-family: "Gamja Flower";
    font-size: 19px;
    padding: 10px;
    border-radius: 15px;
    
}

/* learn more button text color */
a.learn-button { 
    color:#2d455b;
}

section.fall-spring-semesters {
    margin-top: 10px;
    margin-bottom: 15px;
}

div.semester-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
    color:#2d455b;
}

div.gallery {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;

}

div.semester-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}



section .gallery {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* alignment-baseline: middle; */
    width: 100%;
}
section .gallery img {
    width: 32%;
}

/* About page CSS */
div.inner-about-header {
   display: flex;
   flex-direction: row;
   gap: 15px; 
   
}

div.about-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-family: "Gamja Flower";
    font-weight: 400;
    font-style: normal;
    width: 99%;
   
}

div.about-text p {
    text-align: center;
}

div.about-image img {
    width: 65%;
}

div.faq-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div.question {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

/* Target a tag for the Raena Nguyen clickable thing in the nav */

div h3.faq-question {
    background-color: #6557a7;
    padding: 15px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-family: "Gamja Flower";
    font-size: 25px;
    text-align: center;
    width: 75%;
    color: white;
}

div p.faq-answer {
    background-color: #aca4d1;
    padding: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-family: "Host Grotesk";
    font-size: 16px;
    text-align: center;
    width: 75%;
    color: #342e44;
}
/* Footer CSS */
footer {
    background-color: #5769a7;
    color: #fff;
    padding: 10px;
}

div.footer {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: 15px;
    
}

div p.footer-text {
    font-family: "Gamja Flower";
    font-size: 15px;
    color: white;

}