/******************************************
TABLE OF CONTENTS

1. Reset
2. Master layout
3. Colors
4. Typography
5. Buttons & Links
6. Mobile Nav Styles
7. Desktop nav styles
8. Hero Components
9. Reusable Styles
    A. Grid & Flex column
    B. Copy on its own
    C. 4-square component (home & credits)
    D. Reconstruction teams (home & restoration)
    E. Purple background (purple background for components)
10. Home Styles
11. Author Styles
12. Game History Styles
13. Restoration Styles
14. Credits Styles
16. Play Game Styles
15. Footer Page Styles

/* end table of contents */
/******************************************/

/* RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
/* end reset */

/************************************
MASTER LAYOUT
************************************/
body  {
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto;
  background-color: #1c1c22;
}
/* main {
  padding: ;
  margin: ;
} */
img, video {
  width: 100%;
}
section {
  padding: 1rem 0;
  margin: 0;
}


/* end master layout */

/************************************
COLORS
************************************/
html {
  color: #D5D5D5;

  --color-white: #D5D5D5;
  --color-black: #1C1C22;
  --color-black-drk: #0E0E0F;
  --color-purple: #160323;
  --color-purple-lght: #7C42B9;
  --color-red: #AD3121;
  --color-red-drk: #CE3B27;
  --color-nav-white: #E4E4E4;
}
/* end colors */

/************************************
TYPOGRAPHY
************************************/
html {
  font-family: 'Montserrat', sans-serif;
  --font-primary: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6, p {
  color: var(--color-white);
}
h2, h3, h4, h5, h6, p {
  font-family: 'Montserrat', sans-serif;
}
h3, h4, h5, h6 {
  margin: 1rem 0;
}
h1, h2, h3, h4, h6 {
  line-height: 1.5;
}
h1, h3 {
   text-transform: uppercase;
}
h1 {
  font-family: 'mostra-nuova', sans-serif;
  font-size: 48px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 16.8px;
}

h2 {
  font-size: 30px;
  font-weight: 200;
  letter-spacing: 1px;
}

h3 {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 3.12px;
  margin: 1rem 0;
}

h4 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0px;
}
h5 {
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 20px;
}

h6 {
  font-weight: 700;
  font-size: 16px;
}

.italic {
  font-style: italic;
  font-size: inherit;
  font-weight: inherit;
}
/* heading large screen sizes */
@media screen and (min-width: 850px) { 
  h1 {
    font-size: 120px;
    /* line-height: ; */
  }

  h2 {
    font-size: 60px;
    letter-spacing: 2px;
  }

  h3 {
    font-size: 42px;
    letter-spacing: 5px;
    font-weight: 500;
  }

  h4 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
  }
  h5 {
    font-size: 30px;
  }
}

/*paragraphs */
p {
  font-size: 15px;
  color: var(--color-white);
  font-weight: 400;
  letter-spacing: 1.125px;
  line-height: 1.6;
  max-width: 950px;
}
@media screen and (min-width: 950px) {
  p {
    font-size: 18px;
    line-height: 1.7;
    margin: 1.5rem 0;
  }
}
a {
  text-decoration: none;
}
a:hover {
   color: white;
   text-decoration: none;
}
a:hover, button:hover {
  cursor: pointer;
}
/* end typography */

/**************************************
BUTTONS and LINKS
*****************************************/
/* SMALL SCREEN LINK STYLES
    primary-btn is used in the nav with NO background color (red outline)
    secondary-btn is the learn more button (purple outine, arrow)
    tertiary-btn is used ONCE on the home page; play game with a red BACKGROUND
*/
.primary-btn, .secondary-btn, .tertiary-btn {
  color: var(--color-white);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin: 1rem 0;
  padding: 14px 16px;
  text-align: center;
}
.primary-btn, .tertiary-btn { 
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
.primary-btn {
  border: solid 2px var(--color-red);
  color: var(--color-white);
}
.secondary-btn {
  background-color: transparent;
  border: 2px solid var(--color-purple-lght);
  color: var(--color-white);
  min-width: 110px;
}
.secondary-btn span {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.secondary-btn svg {
  margin-left: 10px;
}
.tertiary-btn {
  color: var(--color-white);
  background-color: var(--color-red);
  border: 2px solid var(--color-red);
  display: inline-block;
  margin: 1.5rem 0;
}
/* HOVER STYLES */
.primary-btn:hover {
  background-color: var(--color-red);
  transition: 250ms ease-in-out;
}
.secondary-btn:hover svg {
  margin-left: 16px;
  transition: 200ms ease-in-out;
}
.tertiary-btn:hover {
  background-color: var(--color-red-drk);
  border: 2px solid var(--color-red-drk);
  transition: 200ms ease-in-out;
}
/* 900 screen width */
@media screen and (min-width: 900px) {
  .primary-btn, .secondary-btn, .tertiary-btn {
    font-size: 18px;
    padding: 16px 20px;
  }
}

/* inline-link style */
.inline-link {
  color: var(--color-red);
  font-style: italic;
  font-weight: 500;
}
.inline-link:hover {
  color: var(--color-red-drk);
  text-decoration: none;
  transition: 250ms ease-in-out;
}
/* end button styles */

/*******************************
MOBILE PRIMARY NAV STYLES
********************************/
@media screen and (min-width: 320px) and (max-width: 768px){
  .navbar>.container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
  }
  .nav-mobile {
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
  }
/*mobile logo*/
  #mobile-logo {
    max-width: 150px;
    height: auto;
    padding-left: 1rem;
  }
/*hamburger menu styles*/
  .hamburger span {
    background: var(--color-white);
    display: block;
    width: 27px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
  }
   .navbar-toggler {
    background-color: transparent;
    border: 1px solid transparent;
    color: transparent;
  }
  .navbar-toggler:focus {
    outline: none;
  }
/*mobile nav link styles*/
  .nav-link {
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 1.4px;
    margin: 0 auto;
  }
  .nav-link-li a:hover {
    color: var(--color-red);
    transition: 100ms ease-in-out;
    text-decoration: none;
  }

  .navbar-nav .nav-link {
    padding-right: 0.5rem !important; 
    padding-left: 0.5rem !important; 
  }
}
/* end mobile nav styles */

/**************************************
DESKTOP NAV
***************************************/
/* desktop nav set to "NONE" until 769 */
.nav-dsktp {
  display: none;
}
@media screen and (min-width: 769px) {
  .nav-mobile {
    display: none;
  }
  /* desktop navigation*/
  .nav-dsktp {
    align-items: center;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 10px;
    /* position: fixed; */
  }
  nav {
    font-size: 14px;
    margin: 0;
  }
  #logo {
    width: 160px;
    margin: 0 8px;
  }
  .nav-item {
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 1.4px;
    padding: 0 0 8px 0;
    margin: 0 auto;
  }
  .nav-item:hover {
    border-bottom: solid 2px var(--color-red);
    color: var(--color-white);
    transition: 100ms ease-in-out;
  }
  nav li {
    display: inline-block;
    margin: 0 8px;
  }
  .current-page {
    border-bottom: 2px solid var(--color-red);
    font-weight: 700;
  }
  header {
    display: fixed;
    transition: all 300ms ease-in-out;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }
  /* scroll stuff */
  .scroll-down header {
    transform: translate3d(0, -100%, 0);
  }
  .scroll-up header {
    filter: drop-shadow(0 -10px 20px rgb(0, 0, 0));
  }

}
/* 1000PX SCREEN SIZE */
@media screen and (min-width: 1000px) {
  #logo {
    width: 210px;
  }
  nav {
    font-size: 1rem;
  }
  nav li {
    margin: 0 1rem;
  }
  .dsktp-nav {
    padding: 0 1.25rem;
  }
  .nav-item, .current-page {
    font-size: 1rem;
    padding: 0 0 14px 0;
    letter-spacing: 1.6px;
  }
}
/* end desktop nav */

/**************************************
HERO COMPONENTS
***************************************/
.author-hero, .restoration-hero, .gmhistory-hero, .credits-hero, .hm-hero, .playgm-hero {
  background-repeat: no-repeat;
  background-size: cover;
  overflow-wrap: break-word;
  width: 100%;
}
/* hero background images */
.author-hero {
  background-image: linear-gradient(transparent, 20%, #1c1c22), url("../img/Author-hero-img.png");
}
.credits-hero {
  background-image: linear-gradient(transparent, #1c1c22), url("../img/credits-hero-img.png");
}
.hm-hero {
  background-image: linear-gradient(transparent,1%, #1c1c22), url("../img/hm-hero-cropped.png");
}
.restoration-hero {
  background-image: linear-gradient(transparent,10%, #1c1c22), url("../img/restoration-hero.jpg");
}
.gmhistory-hero {
  background-image: linear-gradient(transparent, #1c1c22), url("../img/gmhistory-hero-dark.jpg");
}
.playgm-hero {
  background-image: linear-gradient(transparent, #1c1c22), url("../img/gmhistory-hero.jpeg");
}
@media screen and (min-width: 900px) {
  .author-hero, .restoration-hero, .gmhistory-hero, .credits-hero, .hm-hero, .playgm-hero {
    height: 100vh;
  }
}
/* hero mobile copy styles */
.hero-copy {
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
  /*
  height: 100%; */
  justify-content: center;
}
.hero-copy a {
  max-width: 120px;
  text-align: center;
}
/* tablet styles */
@media screen and (min-width: 600px) {
  .hero-copy {
    max-width: 1400px;
    padding: 5rem 2rem 1rem 2rem;
    margin: 0 auto;
  }
  .hero-copy h1, .credits-hero h1 {
    font-size: 56px;
    margin: 1rem 0;
  }
  .hero-copy p {
    font-size: 20px;
  }
}
/* small desktop */
@media screen and (min-width: 950px) {
  .hero-copy {
    max-width: 1400px;
    margin: 2rem auto;
    height: 100vh;
  }
  .hero-copy h1 {
    margin: 1rem 0;
    font-size: 120px;
  }
  .hero-copy p {
    max-width: 1400px;
    font-size: 24px;
  }
  /* credits h1 cut off with the larger font size LT */
  .credits-hero h1 {
    font-size: 90px;
  }
}
/* large desktop */
@media screen and (min-width: 1200px) {
  .hero-copy {
    padding: 0 140px;
  }
}
/*****
home page is weird; it has a lot of copy, so it needs its own styles LT
*****/
.hm-hero {
  margin: 0 0 1rem 0;
  height: 120%;
}
#hm-hero-copy {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 16px;
  height: 100vh;
  justify-content: center;
}
#hm-hero-copy a {
  max-width: 200px;
}
#hm-hero-copy p {
  margin: 1rem 0 .5rem 0;
}
/* 768 screen width */
@media screen and (min-width: 768px) {
  #hm-hero-copy {
    padding: 3rem 20px;
  }
  #hm-hero-copy h1 {
    font-size: 60px;
  }
  #hm-hero-copy h2 {
    font-size: 38px;
  }
  #hm-hero-copy p {
    font-size: 22px;
  }
}
/* 1300px screen width */
@media screen and (min-width: 1200px) {
  #hm-hero-copy {
    padding: 40px;
    margin: 0 auto;
    max-width: 1200px;
  }
  #hm-hero-copy h1 {
    font-size: 100px;
  }
  #hm-hero-copy h2 {
    font-size: 60px;
  }
  #hm-hero-copy p {
    font-size: 24px;
    max-width: 1200px;
  }
}
.no-wrap {
  white-space: nowrap;
}
/* end hero styles */

/*************************************
REUSABLE STYLES
    1. Grid & Flex Column
    2. Copy on its own
    3. 4-squar component (home & credits)
    4. Reconstruction Teams (home & restoration)
    5. Purple background (purple background for components)
***************************************/
.grid {
  padding: 1rem 0;
}
.grid-txt {
  padding: 1rem;
}
.grid-img {
  padding: 1rem 0;
}
@media screen and (max-width: 800px) {
  .flex-column {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    padding-top: 0;
  }
  .frst {
    order: 1;
  }
  .scnd {
    order: 2;
  }
  .thrd {
    order: 3;
  }
  .frth {
    order: 4;
  }
  .ffth {
    order: 5;
  }
}
/* >800px-1200px screen width */
@media screen and (min-width: 800px) {
  .grid {
    align-items: center;
    display: grid;
    grid-gap: 16px;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    margin: 0 auto;
  }
  .col8-5, .col1-5 { /* text */
    padding: 0 1.5rem;
  }  
}
/* >1200 screen width */
@media screen and (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
    margin: 0 auto;
    padding: 3rem 100px;
  }
  .col1-4 {
    grid-column: 1 / span 4;
    padding: 0;
  }
  .col1-5 { 
    grid-column: 1 / span 5;
    padding: 0;
  }
  .col1-6 { 
    grid-column: 1 / span 6;
  }
  .col6-7 {
    grid-column: 6 / span 7;
  }
  .col7-6 { 
    grid-column: 7 / span 6;
  }
  .col8-4 {
    grid-column: 8 / span 4;
  }
  .col8-5 { 
    grid-column: 8 / span 5;
    padding: 0;
  }
  .grid-img {
    padding: 3.25rem 0;
  }  
  /* 3d models */
  .grid-model {
    padding: 0;
  }
 
}
/* end grid styles */

/******
Copy on its own
********/
/* lone PARAGRAPHS */
.p-alone {
  margin: 0 16px;
  padding: 32px 0;
}
/* 700px screen width media queries */
@media screen and (min-width: 950px) {
  .p-alone {
    margin: 0 auto;
    max-width: 950px;
  }
}

/********** 
4 square component: used on HOME and CREDITS
**********/
.sqr-txt-lft, .sqr-txt-rght {
  padding: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 801px) {
  .flex-4sqr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    min-height: 100px;
    justify-content: center;
    align-items: center;
  }
  .sqr-txt-lft, .sqr-txt-rght {
    align-self: center;
    padding: 2rem;
    max-width: 675px; /* from prototype */
  }
  .sqr-img-lft, .sqr-img-rght {
    padding: 0;
    margin: 0;
  }
}

/**********
Reconstruction Team Circles on HOME and RESTORATION
************/

/*Shelby's team circles styles*/

.recon-tms {
  background-color: transparent;
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 1rem;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.tm-txt {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px #000000;
}
.design-team-crcl {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/design-team-color.jpg');
}

.game-team-crcl {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/game-dev-team-color.jpg);
}

.web-team-crcl {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/web-team-color.jpg');
}

.animation-team-crcl {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/animation-team-color.jpg');
}

.video-team-crcl {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/video-team-color.jpg');
}

.promotion-team-crcl {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/promotions-team-color.jpg');
}

.design-team-crcl, .game-team-crcl, .web-team-crcl, .animation-team-crcl, .video-team-crcl, .promotion-team-crcl {
  width: 200px;
  height: 200px;
  padding: 1rem;
  margin: 1rem;
  position: relative;
  overflow: break-word;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.design-team-crcl:hover, .game-team-crcl:hover, .web-team-crcl:hover, .animation-team-crcl:hover, .video-team-crcl:hover, .promotion-team-crcl:hover {
  transition: 150ms ease-in-out;
}

.design-team-crcl:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/design-team-color.jpg');
}

.game-team-crcl:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/game-dev-team-color.jpg);
}

.web-team-crcl:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/web-team-color.jpg');
}

.animation-team-crcl:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/animation-team-color.jpg');
}

.video-team-crcl:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/video-team-color.jpg');
}

.promotion-team-crcl:hover {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/promotions-team-color.jpg');
}

.design-team-crcl:hover, .game-team-crcl:hover, .web-team-crcl:hover, .animation-team-crcl:hover, .video-team-crcl:hover, .promotion-team-crcl:hover {
  background-size: cover;
  background-position: center;
}
/******
Purple Background
*******/
.bg-prpl {
  background-color: var(--color-purple);
}
/* end reusable styles */

/**************************************
**************************************
HOME PAGE STYLES
**************************************
***************************************/

/*** Video inside of Grid - Landscape )rientation ***/
/*Used on Home Page*/
.grid-vid-container { 
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.grid-vid {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*** Video inside of Grid - Vertical Orientation ***/ 
/*Used on Game-History Page*/
.grid-vid-vrtcal-container { 
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 100%; /* <---- this changes the aspect ratio of grid-vid  */
}

/* Featured Work, NEEDS JAVASCRIPT */
.featured-itm p {
  font-size: 14px;
}
.featured-itm {
  padding: 12px;
}
.ftrd-img {
  padding-bottom: .7rem;
}
.featured-content {
  padding-bottom: 2rem;
}
@media screen and (min-width: 700px) {
  .featured-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0;
    margin: auto 0;
  }
  .ftrd-txt {
    max-width: 350px;
  }
  .ftrd-txt p {
    margin: 1rem 0;
  }
  .ftrd-img {
    max-width: 410px;
  }
}
@media screen and (min-width: 1400px) {
  .featured-itm {
    padding: 1rem;
  }
  .featured-content {
    padding: 0 100px;
  }
}

/* end home page styles */

/**************************************
**************************************
AUTHOR PAGE STYLES BELOW 
**************************************
*************************************/
.disch-name {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
#abt-disch {
  padding: 3rem 0;
}
@media screen and (min-width: 600px) {
  #abt-disch {
    padding: 7rem 0;
  }
}
/********
Quotes - DISCH QUOTES, BLOCKQUOTE AND FAN QUOTES
*********/
.disch-quote {
  max-width: 850px;
  margin: 32px 0;
}
blockquote {
  border-left: 4px solid white;
  color: var(--color-white);
  font-size: 22px;
  letter-spacing: 2.3px;
  font-weight: 600;
  margin: 0 auto;
  padding-left: 1.5rem;
  line-height: 1.4;
}
blockquote span {
  font-weight: 200;
  font-style: italic;
  font-size: 20px;
}

/* 700px screen size */
@media screen and (min-width: 700px) {
  .disch-quote {
    padding: 3rem 0;
    max-width: 950px;
  }
  blockquote {
    font-size: 30px; 
    line-height: 45px;
    margin: 0;
    padding-left: 2rem;
    border-left: 7px solid white;
  }
}
/******
DISCH BOOKS - AUTHOR PAGE
*******/
.amnesia-book {
  font-style: italic;
  line-height: 1.6;
  font-size: 24px;
}
/***
SPECIAL THANKS - AUTHOR PAGE
****/
.special-thanks {
  padding: 32px 0;
}
.spcl-thnks-container {
  position: relative;
  text-align: left;
  z-index: -1;
}
.spcl-thnks-container::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(28,28,34,0), rgba(28,28,34,1) 30%);
  margin-top: -100px;
  height: 235px;
  width: 100%;
  content: '';
}
.spcl-thnks-txt {
  position: absolute;
  left: 10px;
  bottom: 40px;
  z-index: 1;
}
.spclthnks-img {
  background: linear-gradient(to bottom, rgba(28,28,34,0), rgba(28,28,34,1) 30%);
}
.special-thanks h3  {
  margin: 1rem;
  text-shadow: 2px 2px 4px #000000;
}
.spcl-thnks-txt p {
  font-size: 14px;
  margin: 0;
  max-width: 400px;
  text-shadow: 2px 2px 4px #000000;
}
.spcl-thnks-txt h5 {
  font-size: 20px;
  line-height: 2;
  margin: 0;
  text-shadow: 2px 2px 4px #000000;
}
/* 700px media query */
@media screen and (min-width: 700px) {
  .special-thanks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 4fr;
    column-gap: 2rem;
    margin: 0 auto;
    max-width: 900px;
  }
  .spcl-thnks-container {
    padding-bottom: 0;
  }
  .special-thanks h3 {
    margin: 0 0 42px 0;
    text-align: center;
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
  }
  .special-thnks .scnd {
    grid-column: 1 / span 1;
    grid-row: 2 / span 1;
  }
  .special-thnks .thrd {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
  }
}
/*******
forthcoming book about disch
*********/
.disch-books {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 0 105px 0;
  margin: 0 auto;
  max-width: 1100px;
}
.book {
  padding: 0 1rem;
}
.book p {
  margin: 10px 0 0 0;
}
.subtitle {
  font-style: italic;
  font-weight: 100px;
  color: rgba(255,255,255,.5);
  font-size: 15px;
  margin-top: 0;
}
/*******************
swiper carousel styles
********************/
.swiper { 
   max-width: 500px;
   height: 350px;
   margin: 2rem auto;
}
.swiper img {
  height: 275px;
  width: 200px;
  padding: 0 0 .5rem 0;
}
.swiper-slider {
   position:fixed;
   margin-bottom: 0px;
}
.swiper-slide {
  padding: 0 1rem;
}
.swiper-slide p {
  font-weight: 600;
  font-size: 1rem;
  max-width: 200px;
}
/* desktop book layout */
.disch-books{
  display: none;
}
/* swiper turned off; .disch-books turned on */
@media screen and (min-width: 800px) {
.swiper{
    display: none;
  }
  .disch-books{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 0 9rem 0;
    margin: 0 auto;
    max-width: 1100px;
  }
  .bookByDisch-dsktp img{
    width: 200px;
    height: 325px;
  }
  .bookByDisch-dsktp {
    max-width: 200px;
  }
}
/* end author styles */

/**************************************
RESTORATION PAGE STYLES BELOW 
*************************************/
/******
FUN FACTS
*******/
/* fun facts title */
.funFactsTitle {
  padding: 1rem;
}
/* container for the fun facts section */
.fun-facts {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
  justify-content: space-around;
  margin: 1rem;
  padding: 1.5rem;
}
/* each individual "Fun Fact" container */
.fact {
  background-color: var(--color-purple);
  align-items: center;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  margin: 0 auto;
  padding: 1rem;
  width: 80vw;
  text-align: center;

  display: grid;
  grid-template-rows: 1fr 1fr;
}
/* number within a fun fact container */
.fact-nmbr {
  color: var(--color-purple-lght);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}
/* descriptive text */
.fact-dscrptns {
  color: var(--color-white);
  line-height: 1.7;
  font-size: 1.25em;
}
@media screen and (min-width: 950px) {
  /* fun fact container turns into rows */
  .fun-facts {
    flex-direction: row;
    padding: 0 5rem 2rem 5rem;
    margin: 4rem 0;
  }
  .funFactsTitle {
    padding-top: 2rem;
    text-align: center;
  }
  .fact {
    min-height: 350px;
    min-width: 350px;
    padding: .25rem 2rem;
  }
  .fact-nmbr {
    text-align: center;
    font-size: 4rem;
    margin: 0;
  }
  .fact-dscrptns {
    align-self: start;
    min-height: 120px;
    padding: 0 0 1rem 0;
  }
  p .fact-dscrptns {
    font-size: 1rem;
    margin: 0;
    padding: 0 1rem;
  }
}
/********
PODCAST
********/
.podcast {
  padding: 2rem 0 4rem 0;
}
/********
PROCESS DOCUMENTARY - IFRAME RESPONSIVENESS
********/
.process-documentary h3 {
  /*
  text-align: center; */
}
.centered-vid {
  margin: 0 auto;
}
.centered-vid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 1rem 0;
}
.centered-vid iframe {
  height: 180px;
  width: 320px;
}
@media screen and (min-width: 560px) {
  .centered-vid iframe {
    height: 315px;
    width: 560px;
  }
}
@media screen and (min-width: 1130px) {
  .centered-vid iframe {
    height: 630px;
    width: 1120px;
  }
}
/********
3D MODEL SECTION 
*********/
/* game models section container class */
.game-models {
  padding: 3rem 0;
}
/* images of models */
#hotelphone-model, #ringbox-model, #commodore-model {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /*
  width: 400px; */
  position: relative;
}
#hotelphone-model {
  background-image: url("../img/gif-hotelphone-ingame.gif");
  height: 400px;
}
#ringbox-model {
  background-image: url("../img/gif-openweddingbox-ingame.gif");
  height: 490px;
}
#commodore-model {
  background-image: url("../img/gif-computercommodore64-ingame.gif");
  height: 480px;
}
/*end restoration styles */ 

/************************************
*************************************
CREDITS PAGE STYLES
**************************************
**************************************/
#animation-creds {
  display: none;
}

#design-creds {
  display: none;
}

#game-dev-creds {
  display: none;
}

#web-creds {
  display: none;
}

#video-creds {
  display: none;
}

#promotion-creds {
  display: none;
}
/******
pills
******/
#credits-nav {
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
}
.team-buttons {
  background-color: transparent;
  border-radius: 3rem;
  border: 2px solid var(--color-purple-lght);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px 8px;
  padding: 10px 1.5rem;
  text-transform: uppercase;
}
.team-buttons:hover {
  background-color: var(--color-purple-lght);
  transition: 150ms ease-in-out;
}
/* selected pill style */
.team-buttons:active {
  color: var(--color-white);
  font-weight: 600;
  background-color: var(--color-purple-lght);
  border: transparent;
}

.team-buttons.active {
  color: var(--color-white);
  font-weight: 600;
  background-color: var(--color-purple-lght);
  border: transparent;
}

.team-buttons:focus {
  color: var(--color-white);
  font-weight: 600;
  background-color: var(--color-purple-lght);
  border: transparent;
}

/****************************************
  CREDITS PAGE: STUDENT SECTION STYLES 
*****************************************/
/***********************
  MOBILE STYLES < 768px 
***********************/
#executive-creds {
  padding-top: 0;
}

.p-alone-creds {
  margin: 0 16px;
  padding: 0 0 8px 0;
}

.team-heading {
  margin: 0;
}

.grandparent-container-for-grid { /*only purpose of this "grandparent container" is to center the "grid container" for student images using a grid layout*/
    display: flex;
    justify-content: center;
}

.grandparent-container-for-flex { /*only purpose of "THIS" "grandparent container" is to center the "flex container" for student images using a flex layout.*/
  padding: 0 10%;                 /*Executive team and Animation team are the only teams using a flex layout, the rest are grid.*/
}

.team-grid { 
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 1 column grid layout until 768px*/    
  grid-gap: 1rem; 
  margin-bottom: 4%;      
}

/************************
 ANIMATION-TEAM GRID 
 FOR MOBILE: 1 COLUMN
************************/
  .team-grid-2-col {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1rem;
    margin-bottom: 4%;
  }
/**********************/  

.developer-card-container {
    position: relative; /*position relative so words names and icons can lay on top of student images*/
    max-width: 300px;
    max-height: 300px; /*max-width and height of 300px for student images*/
  }
  .executive-name {
    position: absolute;
    font-size: 1.5rem;
    bottom: 9%;
    left: 5%;
    color: white;   /*var(--color-white) didn't look bright enought on top on the student images;*/
    text-shadow: 2px 2px 4px #000000;
  } 
  .executive-title {
    position: absolute;
    font-size: 1rem;
    bottom: 3%;
    left: 5%;
    color: white;   
    text-shadow: 2px 2px 4px #000000;
  }
   .executive-name-long { /*for Holly nad Greg's section*/
    position: absolute;
    font-size: 1.5rem;
    bottom: 14%;
    left: 5%;
    color: white;   /*var(--color-white) didn't look bright enought on top on the student images;*/
    text-shadow: 2px 2px 4px #000000;
  } 
   .executive-title-long { /*for Holly nad Greg's section*/
    position: absolute;
    font-size: 1rem;
    bottom: 1%;
    left: 5%;
    color: white;   
    text-shadow: 2px 2px 4px #000000;
  }
.team-lead-name {
  position: absolute;
  font-size: 1.5rem;
  bottom: 24%;
  left: 5%;
  color: white;   
  text-shadow: 2px 2px 4px #000000;
}

.team-lead-title {
  position: absolute;
  font-size: 1rem;
  bottom: 17%;
  left: 5%;
  color: white;   
  text-shadow: 2px 2px 4px #000000;
}

.stdnt-name {
  position: absolute;
  font-size: 1.5rem;
  bottom: 16%;
  left: 5%;
  color: white;   
  text-shadow: 2px 2px 4px #000000;
}   

.stdnt-portfolio {
  position: absolute;
  font-size: .9rem;
  bottom: 7%;
  left: 5%;
  color: white;  
  text-shadow: 2px 2px 4px #000000;
} 

.stdnt-portfolio a {
    color: white;
    text-shadow: 2px 2px 4px #000000;
  }

.stdnt-icon-linkedin { /*first position for social media icons*/ 
  position: absolute;   
  bottom: 4%;
  left: 5%;    
  text-shadow: 2px 2px 4px #000000;
}

.stdnt-icon-insta { /*second position for social media icons*/
  position: absolute;   
  bottom: 4%;
  left: 15%;     
  text-shadow: 2px 2px 4px #000000;
}

.stdnt-icon-twitter { /*third position for social media icons*/
  position: absolute;   
  bottom: 4%;
  left: 25%;      
  text-shadow: 2px 2px 4px #000000;
}

.stdnt-icons { 
  width: 18px;  
}

/****************************
  FLEX LAYOUT FOR 
  EXECUTIVE & PROMOTION TEAM
****************************/
.team-flex { /* used a flex layout instead of grid for only these odd numbered teams, so the 2nd row will be centered below the 1st row*/
  display: flex;
  flex-wrap: wrap; 
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  gap: 16px;
}

.team-flex > * {
  flex: 0 1 100%;
  max-width: 300px; /*max-width of 300px for student images*/
}

/*************************
DESKTOP 768px -1000px
***************************/
@media screen and (min-width: 768px) { 
  .team-grid { 
    display: grid;
    grid-template-columns: repeat(2, 1fr); /*2 column grid layout until 1000px*/   
    grid-gap: 1rem; 
    margin-bottom: 4%;      
  }

  /*************************
  ANIMATION TEAM GRID: 2 COLUMNS
  ***************************/

  .team-grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    margin-bottom: 4%;
  }  
} /******closes media query for 768px-1000px******/

/*************************
DESKTOP > 1000px
***************************/
@media screen and (min-width: 1000px) {
   .p-alone-creds {
    margin: 0 auto;
    padding: 0;
    max-width: 950px;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /*3 column grid layout for desktop*/  
    grid-gap: 1rem; 
    margin-bottom: 4%;      
  }
} /*closes media query for 1000px*/

/**************************************
END CREDIT STYLES
*****************************************/




/**************************************
PLAY GAME styles
*****************************************/
/* desktop game set to none */
.playGameDsktp {
  display: none;
}
/* mobile play game alert */
.playGameMobile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4rem 2%;
  margin: 0 auto;
  min-height: 500px;
  text-align: center;
}
.playGameMobile h1,.playGameMobile p,.playGameMobile video {
  padding: 3% 2%;
}
.playgame-p {
  font-size: 1.5rem;
}
/* mobile style turns off */
@media screen and (min-width: 1100px) {
  .playGameMobile {
    display: none;
  }
  /* .playGameDsktp {

  } */
}
/* end play game styles /

/**************************************
FOOTER styles
*****************************************/
/* mobile styles */
footer {
  color: var(--color-nav-white);
  min-height: 120px;
  right: 0;
  width: 100%;
}
footer p, footer a {
  font-size: 14px;
  max-width: 450px;
  margin: 0 0 16px 0;
}
footer a:hover {
  color: var(--color-red-drk);
}
.fttr-logo, .fttr-abt, .fttr-icons, .fttr-cntct h6, .fttr-nav {
  display: none;
}
.footer-grid {
  background-color: var(--color-black-drk);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  padding: 1rem 0;
}
.fttr-cntct a {
  color: var(--color-red);
}
@media screen and (max-width: 599px) {
  .copyright, .fttr-cntct {
    padding: 1rem 0;
    text-align: center;
  }
  .copyright p {
    margin-bottom: 0;
  }
}
/* tablet styles */
@media screen and (min-width: 600px) {
  .fttr-logo, .fttr-abt, .fttr-icons, .fttr-cntct h6, .fttr-nav {
    display: inline;
  }
  
  .footer-nav a {
    color: var(--color-white);
  }
  .footer-nav a:hover {
    border-bottom: 1px solid var(--color-red);
    transition: 200ms;
  }

}

/**************************************
Main FOOTER styles
*****************************************/
footer {
  background-color: #0E0E0F;
  padding-top: 64px;
}
.copyright {
    background-color: #000000;
  }
.copyright p {
    font-size: 13px;
    text-align: center;  
    max-width: none;    
    margin: 0;
    padding: 1rem 0;
  }
.flex-footer-container {
  display: flex;
  flex-wrap: wrap;  
  justify-content: space-evenly;
}
.flex-footer-container h6 {
  margin: 0;
  padding-bottom: 4%;
}
.footer-logo {
  flex-basis: 20%;  
}
.footer-blurb {
  flex-basis: 30%;
}
.footer-contact {  
  flex-basis: 12.5%;
}
.icons-container { 
  display: flex;
  justify-content: space-between; 
  margin-top: 8%;  
}
.icons {  
  width: 20px;
  display: flex;   
}
.footer-contact a {  
  color: var(--color-white);
  font-size: 15px;  
  font-weight: 400;
  letter-spacing: 1.125px;
  line-height: 1.6;    
}
.footer-contact a:hover {  
  border-bottom: 1px solid var(--color-red);
  transition: 200ms;
}
.footer-nav {
  flex-basis:10%;
}
 .footer-nav li {
  padding-bottom: 17%;
}

/** Footer switches to 2 items instead of 4.******/ 
@media screen and (max-width: 972px) { /*was 800*/
  .flex-footer-container {
    justify-content: center;
    column-gap: 15%;
    padding-bottom: 5%;    
  }  
  .footer-blurb {
    display: none;   
  }
  .footer-nav {  
    display: none;
  }
  .footer-nav li {
    padding-bottom: 8%;
    display: none;
  }
}
/****Footer switches to Contact Us and social media links only*****/
@media screen and (max-width: 630px) { /*was 570*/
  .footer-logo{
    display: none;
  }
}
