/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

/* Colors

Dark Purple:
rgb(12, 0, 37)
rgb(28, 0, 59)
rgb(49, 0, 82)

*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
  overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
p a {
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}
p a:hover {
  color: rgb(0, 0, 204);
}
p {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: left;
}
h1 {
    font-size: 96px;
    text-align: center;
    margin: 20px;
    padding: 10px;
    font-family: "Ribeye", cursive, serif;
}
h2 {
    font-size: 48px;
    text-align: center;
    margin: 20px 10px;
}
h3 {
  font-size: 36px;
  text-align: center;
}
figcaption, .caption {
    width: 100%;
    text-align: center;
    background-color: inherit;
    padding: 10px 0;
    font-size: 20px;
}
@media screen and (max-width:640px) {
  p {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 10px;
    text-align: left;
  }
  h1 {
    font-size: 48px;
    text-align: center;
    margin: 20px;
    font-family: "Ribeye", cursive, serif;
  }
  h2 {
    font-size: 36px;
    text-align: center;
    margin: 20px 10px;
  }
  h3 {
    font-size: 24px;
    text-align: center;
  }
  figcaption, .caption {
    width: 100%;
    text-align: center;
    background-color: inherit;
    padding: 10px 0;
    font-size: 14px;
    word-wrap: break-word;
  }  
}

/* Navigation Bar (AAAAAAAAAAAAAAAA) (Thank you w3schools) */
.navClass {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;

    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    color: white;
}

.navClass a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(12, 0, 37);
  height: 80px;
}
nav {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
}
nav a {
    width: 100%;
    transition: background-color 0.2s;

}
header a:hover {
  background-color: rgb(28, 0, 59);
  color: inherit;
}
header a:active {
    background-color: rgb(49, 0, 82);
}
nav a p {
    /* padding: 0 20px; */
  text-align: center;
}

.navClass #hamburgerMenu {
  display: none;
}
header img {
    height: 80px;
}
.navLogo img {
  height: 70px;
  padding: 5px;
}

#TheSillyDiv {
    height: 80px;
    background-color: red;
}

@media screen and (max-width: 640px) {
  .navClass {
    display: block;
  }
  nav a:not(#hamburgerMenu, .navLogo) {
    display: none;
  }
  .navClass a#hamburgerMenu {
    display: block;
    float: none;
    position: absolute;
    right: 0;
    top: 0;
  }
  #TheSillyDiv {
    height: 50px;
  }
}

@media screen and (max-width: 640px) {
  .navClass.responsive {
    position: fixed;
  }
  .navClass.responsive #hamburgerMenu {
    background-color: rgb(21, 0, 41);
    height: 50px;
  }
  #hamburgerMenu img {
    padding: 10px 5px;
    height: 30px;
  }
  .navClass.responsive a:not(#hamburgerMenu, .navLogo) {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: 50px;
  }
  a.navLogo {
    background-color: rgb(28, 0, 59);
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 50px;
  }
  .navClass a, .navClass img {
    height: 50px;
  }
  .navLogo img {
    height: 40px;
    padding: 5px;
  }
  .navClass.responsive a.navLogo {
    display: flex;
    justify-content: center;
    align-items: center;
    /* width: 100%; */
    height: 50px;
  }
  nav {
    display: flex;
    flex-flow: column;
    width: 35%;
    float: right;
  }
  nav a {
    padding: 5px;
    border-top: 2px solid white;
  }
  nav a p {
    width: 100%;
    text-align: center;
  }

}

/* Footer */
footer {
  display: flex;
  flex-flow: column nowrap;
  background-color: rgb(28, 0, 59);
  padding: 20px;
  justify-content: center;
  align-items: center;
}
footer p {
  font-size: 0.75em;
  line-height: 10px;
  color: white;
}


/* HOME SCREEN */

/* The 4 art buttons! */
#homeArtOptions {
  display: grid;
  grid-template: 40% 40% / 40% 40%;
  margin: auto;
  width: 80%;
  gap: 40px;
  justify-items: center;
  justify-content: center;
}
#homeArtOptions a {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 210px;
  background-color: rgb(222, 192, 255);
  color: rgb(38, 0, 38);
  justify-self: center;
  border: 3px solid rgb(180, 139, 221);
  border-radius: 10px;
  transition: background-color 0.2s;
}
#homeArtOptions a img {
  max-height: 150px;
  height: 80%;
  margin: 10px;
}
#homeArtOptions a:hover {
  background-color: rgb(203, 155, 235);
}
#homeArtOptions a:active {
  background-color: rgb(180, 139, 221);
  box-shadow: 0 0 5px 1px rgb(81, 56, 106);
}


/* Inspirations! */
h2 ~ h3 {
  color: rgb(79, 79, 79);
  width: 80%;
  margin: auto;
  margin-bottom: 20px;
}

#inspirationsGrid {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-template-areas:
  "momImage momBlurb momBlurb"
  "zo lili you";
  gap: 20px;
  width: 90%;
  margin: auto;
}
#inspirationsGrid img {
  border-radius: 100%;
  width: 90%;
}
#inspirationsGrid div {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

#momPicture {
  grid-area: momImage;
  width: 100%;
  max-width:400px;
}
#momBlurb {
  grid-area: momBlurb;
}
#zoBlurb {
  grid-area: zo;
}
#zoBlurb p {
  cursor: pointer;
}
#liliBlurb {
  grid-area: lili;
}
#liliBlurb p {
  cursor: pointer;
}
#youBlurb {
  grid-area: you;
}

/* Form */
#formContainer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
form {
    display: flex;
    background-color: white;
    box-shadow: 0px 0px 15px rgb(179, 179, 179);    
    flex-wrap: wrap;
    width: 90%;
    padding: 10px;
    margin: 13px;
}
form h2 {
  width: 100%;
  text-align: center;
}
form p, form label {
    width: 100%;
    padding: 5px 10px;
    font-size: 20px;
}
form span {
    color: rgb(207, 0, 0);
}
input, textarea, button {
    width: 100%;
    padding: 10px;
    margin: 10px;

    border: 2px solid rgb(197, 89, 224);
    border-bottom: 4px solid rgb(197, 89, 224);
    border-radius: 5px;
    font-size: 14px;

    font-family:Verdana, Geneva, Tahoma, sans-serif
}
form > p, form > label {
  font-weight: bold;
}
textarea {
    height: 150px;
    resize: none;
}
#nameInputs {
    display: flex;
    flex-wrap: row nowrap;
    width: 100%;
    justify-content: space-between;
}
#nameInputs div {
  width: 50%;
}
#nameInputs input {
  width: 90%
}
form button {
    background-color: rgb(255, 147, 248);
    color: black;
    font-size: 18px;
    padding: 10px;
}
form button:hover {
    cursor: pointer;
    background-color: rgb(255, 92, 241);
}
form button:active {
    cursor: pointer;
    background-color: rgb(255, 0, 234);
    border: 2px solid rgb(183, 75, 209);
    border-bottom: 4px solid rgb(175, 73, 201)
}

@media screen and (max-width: 640px) {
  #homeArtOptions img {
    max-width: 110px;
  }
  #homeArtOptions a {
    width: 100%;
    height: 160px;
  }
  #homeArtOptions a p {
    text-align: center;
  }

  #inspirationsGrid {
    grid-template-columns: 50% 50%;
    grid-template-areas:
    "momImage momImage"
    "momBlurb momBlurb"
    "zo lili"
    "you you";
    gap: 20px;
    width: 90%;
    margin: auto;
  }
  #momPicture {
    max-width:300px;
    justify-self: center;
  } 

  #nameInputs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  #nameInputs div {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* -------------------------------------------------------------------- */
/* General Buttons: */
.buttonContainer {
    width: 90%;
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    margin-top: 20px;
}
.buttonContainer a, .button {
    background-color: rgb(204, 244, 255);
    border: 2px solid rgb(157, 196, 241);
    border-radius: 5px;
    padding: 20px 10px;
    width: 40%;
    text-align: center;
    transition: background-color 0.1s;
    cursor: pointer;
}
.buttonContainer a:hover, .button:hover {
  background-color: rgb(255, 117, 246);
  border: 2px solid rgb(197, 89, 224);
}
.buttonContainer a:active, .button:active {
  background-color: rgb(255, 0, 234);
  border: 2px solid rgb(186, 0, 203)
}

/* that freaking box shadow bc consistancy */
.BoxShadow {
    box-shadow: 0px 0px 10px 2px rgb(173, 173, 173);
}

/* scrolling gallery */
.scrollingGallery {
    display: flex;
    flex-flow: row nowrap;
    overflow-x: scroll;
    gap: 25px;
    height: 250px;
    width: 80%;
    margin: auto;
}
.scrollingGallery img {
    height: 95%;
    width: auto;
}
@media screen and (max-width: 640px) {
  .buttonContainer a, .button {
    padding: 10px;
    width: auto;
    text-align: center;
    transition: background-color 0.1s;
    cursor: pointer;
    line-height: 20px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
  }
  .scrollingGallery {
    height: 150px;
  }
}

/* h1 ~ p */
h1 ~ p {
  color: rgb(119, 0, 119);
  width: 70%;
  margin: auto;
  font-size: 1.5em;
  line-height: 40px;
  text-align: justify
}
@media screen and (max-width: 640px) {
  h1 ~ p {
    font-size: 1em;
    line-height: 30px;
    width: 85%
  }
}

.websiteContentYay {
  background-color: rgba(255, 255, 255);
  width: 90%;
  margin: auto;
  margin-top: 30px;
}