/*FONT AND MISCELLANEOUS DEFINITIONS AND PROPERTIES FOR ALL PAGES*/

/* define the font for the main page graphic */
@font-face
{
    font-family: Circuit;
    src: url('../fonts/CFCircuitElectrique-Regular.woff2') format('woff2'),
         url('../fonts/CFCircuitElectrique-Regular.woff') format('woff');
    font-display: fallback;
}

/* define the main font for the site */
@font-face
{
    font-family: Roboto;
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
}

/* specify properties for the page html element */
html
{
    font-family: "Roboto", sans-serif;
    font-size: 100%;
    width: 100%;
}

/* used for drawing outlines around every element to confirm layout. Usually commented out */
/*html *
{
    outline: dashed 2px black;
}*/


/* specify properties for the page body */
body
{
    margin: 0px;
    background-color: #cccccc;
    overflow-y: scroll;  /*Show vertical scrollbar */
}

/*CONTAINER DEFINITIONS AND PROPERTIES FOR ALL PAGES*/

/* HOME PAGE - specify properties for the container for the hello world text */
#helloWorld
{
    width: 50%;
    height: 50%;
    margin: auto;         
}

/*Define the properties of the main container on a page*/
#generalPageLayout
{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-auto-flow: column;
    margin-top: 3rem;
    margin-bottom:3rem;
}

/*Define the properties of the middle single column container on a page*/
#middleColumn
{
    grid-column-start: 2;
    grid-column-end: 3;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/*Define the layout and properties for container for all page text/content*/
#textContainer
{
    box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19);
    color:#000;
    background-color:#fff;
    padding: 3rem 4rem 3rem 4rem;
}

/* RESUME PAGE - specify properties for the aboutMe container */
#aboutMe
{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* RESUME PAGE - specify properties for the elements within the aboutMe container */
#aboutMe * 
{
    flex: 1 1 auto;
    margin-top: 0;
    margin-bottom: 0;  
}

/* RESUME PAGE - specify properties for the certsInterests container */
#certsInterests
{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

/* RESUME PAGE - specify properties for the aboutCerts container */
#aboutCerts
{
    flex: 0 1 50%;
    align-self: center;
    margin-right: 4rem;
}

/* RESUME PAGE - specify properties for the aboutInterests container */
#aboutInterests
{
    flex: 0 1 50%;
    align-self: flex-start;
}

/*NAVBAR DEFINITIONS AND PROPERTIES FOR ALL PAGES*/

/* specify properties for the top container holding the navbar items */
#siteNavBar
{
    background-color: #006622;
    line-height: 1.5em;
    display:  flex;
    flex-wrap: nowrap;
    flex-shrink: 1;
    /*position: fixed;*/
}

/* Style the links inside the navigation bar */
#siteNavBar a
{
    float: left;
    color: #cccccc;
    text-align: center;
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    white-space: nowrap;
}

/* Change the color of the navbar links on hover */
#siteNavBar a:hover
{
    background-color: #cccccc;
    color: #006622;
}

/* Add a color to the active/current navbar link */
#siteNavBar a.active
{
    background-color: black;
    color: #cccccc;
}

/*HYPERLINK DEFINITIONS AND PROPERTIES FOR ALL PAGES*/

/*define the properties of the inline hyperlinks*/
.inlineHyperlink:link, .inlineHyperlink:visited, .flickrMedia:link, .flickrMedia:visited
{
    color: #006622;
}

/*define the properties of the LinkedIn icon link*/
#linkedinLink:link, #linkedinLink:visited
{
    color:#0077B5;
}

/*define the properties of the Spotify icon link*/
#spotifyLink:link, #spotifyLink:visited
{
    color:#1DB954;
}

/*define the properties of the Goodreads icon link*/
#goodreadsLink:link, #goodreadsLink:visited
{
    color:#553b08;
}


/*OTHER ELEMENT DEFINITIONS AND PROPERTIES FOR ALL PAGES*/

/* specify properties for the hello world text on the home page */
#helloWorldGraphic
{
    font-family: Circuit, Roboto;
    font-size: 10vw;     
    font-weight: normal;
    margin: 0;
    padding: 0rem 4rem;
    color: #cccccc;
    background-color: #006622;
    text-align: center;
    border-radius: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

/*define the properties of all paragraphs and unordered list items*/
.primaryText
{
    font-size: 1.2rem;
    line-height: 1.5em;
}

/*define the properties of article header notes*/
.articleHeaderNote
{
    font-size: 1rem;
    line-height:1.5em;
    margin-bottom: 3rem;
}

/*define the properties of the thematic break between some sections*/
.solidHR
{
    border: 0;
    border-top: 2px solid #006622;
    margin-top: 3rem;
    margin-bottom: 3rem;
    margin-right: auto;
    margin-left: auto;
    width: 95%;
}

/*define the properties of the song blurb seperation line*/
.dottedHR
{
    border: 0;
    border-top: 2px dotted #006622;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: auto;
    margin-left: auto;
    width: 50%;
}

/*define the properties of the "current" job emphasis*/
#currentJobEmphasis
{
    display:inline-block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align:center;
    color:#fff;
    background-color:#757575;
    border-radius: 0.3rem;
}

/*define the properties of a custom H1 type heading*/
.customH1
{
    color: #757575;
    font-size: 2rem;
    line-height: 1.5em;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;   
}

/*define the properties of a custom H2 type heading*/
.customH2
{
    color: black;
    font-size: 1.6rem;
    line-height: 1.5em;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/*define the properties of a custom H3 type heading*/
.customH3
{
    color: black;
    font-size: 1.4rem;
    line-height:1.5em;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/*define the properties of a custom H4 type heading*/
.customH4
{
    color: #757575;
    font-size: 1.2rem;
    line-height: 1.5em;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

/*define the properties of the class which applies to certain icons, etc.*/
.icon
{
    margin-right:1rem;
}

/*define the properties of the LinkedIn icon*/
#linkedinIcon
{
    font-size: 2.5rem;
    line-height: 1.5em;
}

/*define the properties of the Spotify/Goodreads icons*/
#goodreadsIcon, #spotifyIcon
{
    font-size: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-right: 2rem;
}

/*define the layout of the icons on the musica y mas page*/
#socialLinks
{
    display: flex;
    justify-content: center;
}

/*define the appearance of inline notes*/
#opinionNote, #songNote
{
    font-weight: bold;
}

/*define the properties and style of any quotations used in articles*/
.quotation
{
    font-size: 1rem;
    line-height: 1.5em;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    text-align: center;
}

/*add some margin to spotify iframes and videos in article pages*/
iframe, video
{
    display:block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/*TO DELETE - custom class for figure elements that will contain images*/
.imgHolder
{
    max-width: 80%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

/*custom class for styling media links from Flickr*/
.flickrMedia
{
    text-decoration: none;
}

/*TO DELETE - custom class for img elements that will contain images*/
.imgHolder img
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    height: auto;
}

/*TO DELETE - custom class for figure caption elements that will describe images*/
.imgCaption
{
    text-align: center;
    font-size: 1rem;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
}

/*custom class for centering text on certain elements*/
.centerAlign
{
    text-align: center;
}

/*custom class for aligning text to the right on certain elements*/
.rightAlign
{
    text-align: right;
}

/*define the properties of any blurbs about songs in the article pages*/
.songBlurb
{
    font-size: 1.2rem;
    line-height: 1.5em;
    margin-bottom: 0.75rem;
    text-align: center;
}

/*custom class for top and bottom margin on certain elements*/
.marginTopBottom
{
    margin-top: 2rem;
    margin-bottom: 2rem;
}