/*******************************************************************************
MAIN.CSS:

Note that this is the CSS for the mobile version -- additional CSS for larger
screens can be found in the responsive.css file

o fonts and colors are located at the top for your formatting convenience.
o general formatting settings applied across elements in many pages
o specific 'header' and 'footer' formatting
o formatting that is specific to individual html pages
*******************************************************************************/

/*******************************************************************************
FONTS
*******************************************************************************/

body {
  font-family: 'Raleway', sans-serif;
}

h1 {
  font-family: 'Sanchez', 'Georgia', sans-serif;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 300%;
  font-weight: lighter;
}

h2 {
  font-family: 'Sanchez', 'Georgia', sans-serif;
  font-size: 200%;
  letter-spacing: 3px;
}

h3 {
  font-family: 'Sanchez', 'Georgia', sans-serif;
  font-size: 175%;
  letter-spacing: 2px;
  font-weight: normal;
}

/* just for the text in index.html */
h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 125%;
  font-weight: normal;
}

footer {
  font-size: 75%;
}

#gallery li a p {
  font-size: 75%;
}

.stack-icon {
  width: 24px;
  height: 24px;
  padding: 0 6px;
  filter: invert(47%) sepia(18%) saturate(967%) hue-rotate(161deg) brightness(86%) contrast(90%);
}

/*******************************************************************************
COLORS

FONT: #435961
  a dark, low-chroma blue

DARK COLOR: #497491
  darker color for nav sub-bar

LIGHT COLOR: #95BFDB
  a lighter low-chroma color for the top header

LINKS: #397FAD
  high chroma

ALMOST WHITE: E8F3FA
  for mouseover links

BACKGROUND COLOR: #B4D5E0
  light blue to match the bg image

*******************************************************************************/

body {
  background-color: #B4D5E0;
  color: #435961;
  height: 100%;
}

header {
  background-color: #95BFDB;
  /* light blue nav bar */
  border-color: #435961;
}

nav {
  background-color: #497491;
  /* mobile sub-header */
}

h1 {
  color: #fff;
}

h2,
h3 {
  color: #497491;
}

a {
  color: #397FAD;
  /* slightly more vibrant blue */
  blue */
}

a:hover {
  color: #EBF5FC;
}

nav a,
nav a:visited {
  color: #fff;
}

nav a.selected,
nav a:hover {
  color: #95BFDB;
}

#gallery li {
  color: #435961;
  /* only displays if the text is not linked */
}

#gallery li a p {
  color: #397FAD;
}

.work-row:hover {
  background-color: white;
  opacity: 0.5;
}

.work-row .work-cell {
  color: #435961;
}

.work-row:hover .work-label-cell {
  color: #397FAD;
}

/*******************************************************************************
GENERAL FORMATTING
*******************************************************************************/

body {
  margin: 0;
  background: url("../img/pines2.jpg") no-repeat top center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul {
  list-style-type: none;
  padding: 0 0 20px 0;
}

.container {
  min-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.chunk {
  ul {
    list-style: none;
  }

  padding: 40px 0 10px 0;
}

#wrapper {
  max-width: 940px;
  margin: 0 auto;
  /* top and bottom margins are 0; automatically set L and R margins */
  padding: 0 5%;
  text-align: center;
}

/*******************************************************************************
HEADING
*******************************************************************************/


header {
  float: left;
  /*useful for our desktop version*/
  margin: 0 0 15px 0;
  /* sets header apart from content below it, getting rid of initial whitespace */
  padding: 5px 0 0 0;
  width: 100%;
  z-index: 2;

}

#logo {
  text-align: center;
  margin: 0;
}

h2 {
  margin: -5px 0 0;
}

h3 {
  margin: 0;
}


/*******************************************************************************
NAVIGATION
*******************************************************************************/

nav {
  text-align: center;
  padding: 5px 0;
  margin: 10px 0 0;
}

nav a {
  font-weight: 700;
  padding: 15px 10px;
  /* puts clickable padding around the text, making it easier to select */
}

nav ul {
  list-style: none;
  margin: 0 10px;
  padding: 0;
}

nav li {
  display: inline-block;
}


/*******************************************************************************
FOOTER
*******************************************************************************/

footer {
  clear: both;
  /* places the footer below the floated gallery items */
  text-align: center;
  padding: 100px 0 30px 0;
}

.social-icon {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}



/*******************************************************************************
PAGE: WORK
*******************************************************************************/

.work-table {
  display: block;
  max-width: 75%;
  align: center;
  margin: auto;
}

.work-header {
  display: block;
  padding: 5px 0;
}

.work-row {
  display: block;
  margin: 20px;
  padding: 20px 0;
  border-radius: 15px;
}

/* these move side-by-side when screen size is over 660, managed by responsive.css */
.work-label-cell {
  display: block;
  padding: 15px;
}

.work-cell {
  display: block;
  text-align: left;
  padding: 15px;
}

/* old stuff:  */
#gallery {
  margin: 0;
  padding: 0;
  list-style: none;
}

.details p {
  padding: 0 5px 0 5px;
}



/*******************************************************************************
PAGE: CONTACT
*******************************************************************************/

.profile-photo {
  max-width: 150px;
  margin: 0 auto 30px;
  border-radius: 100%;
}

.bulleted {
  list-style-type: disc;
  text-align: left;
  margin: auto;
  padding-left: 25px;
}

div.bullet-container {
  margin: auto;
  text-align: left;
  padding: 20px 0 50px 0;
  display: inline-block;
}

div.bullet-container h4 {
  margin: 0 0 0 -10px;
  padding: 0;
}

/*******************************************************************************
SMILE ^___^ YOU DONE
*******************************************************************************/