@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&family=Rajdhani:wght@700&display=swap');

body {
  margin : 0;
  padding : 0;
  display : flex;
  flex-direction : column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height : 100%;
  overflow-x : hidden;
}

#navDiv {
  position : absolute;
  top : 0;
  left : 0;
  margin : 0;
  padding : 0;
  width : 100%;
  display : flex;
  flex-direction: row;
  align-items : stretch;
  justify-content : space-around;
}

#navDiv > * {
  margin : 10px;
  padding : 10px;
}

#textNavDiv {
  display : flex;
  flex-direction : row;
  align-items : stretch;
  justify-content : space-between;
  width : 30%;
}

#textNavDiv > * {
  margin : 20px;
}

#logo {
  height : 50px;
  width : auto;
  margin : 20px;
}

#logoNavDiv {
  display : flex;
  flex-direction : row;
  align-items : stretch;
  justify-content : space-between;
}

.hamburger {
  display : none;
}

h4, a {
  font-family : Montserrat;
  font-size : 22px;
  color : white;
  transition-duration : 0.5s;
  cursor: pointer;
  text-decoration: none;
}

h4:hover {
  transform: scale(1.1);
}

#headerDiv {
  background : url("images/kenny-eliason-ZSz1m4JPDqU-unsplash.jpg");
  background-position: bottom;
  background-size: cover;
  position : relative;
  height : 100vh;
  width : 100%;
  display : flex;
  flex-direction : column;
  align-items : center;
  justify-content : center;

}

#headerTextDiv {
  background-color : rgb(196,34,53,0.95);
  width : 100%;
  height : 30%;
  display : flex;
  flex-direction : column;
  align-items : center;
  justify-content : center;
  color : white;
  padding-top : 20px;
  padding-bottom : 20px;
}

#headerTextDiv > * {
  padding : 0;
  margin : 10px;
}

#header {
  font-family : Rajdhani;
  font-size: 64px;
}

#subheader {
  font-family : Montserrat;
  letter-spacing : 10px;
  font-weight : light;
  font-size : 40px;
}

h3 {
  font-family: Rajdhani;
  font-size : 32px;
}

p {
  font-family: Montserrat;
  font-size: 22px;
  text-align: left;
}

.section {
  width : 100%;
  padding-top : 50px;
  padding-bottom : 50px;
  background-image: url("images/section.jpg");
  background-attachment: fixed;
  display : flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section > * {
  padding : 0;
  margin : 30px;
  max-width : 80%;
}

#photoFlexDiv {
  height : auto;
  display : flex;
  flex-direction : row;
  max-width : 100vw;
  overflow : hidden;
}

.photoFlex {
  height : 447px;
  width : auto;
}

#footerSection {
  flex-direction : row;
}

#address, #contact {
  width : 50%;
  height : auto;
  display : flex;
  flex-direction : column;
  align-items: center;
  justify-content: center;
}

#contactList > * {
  list-style: none;
}

#gmap_canvas {
  width : 100vw;
  height : 500px;
  margin : 0;
  padding : 0;
}

#footer {
  background-color : rgb(202,40,56);
  width : 100%;
  height : auto;
  padding-top : 30px;
  padding-bottom : 30px;
  color : white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footer > p {
  margin : 30px;
}

@media screen and (max-width: 980px) {

  #logo {
    height : 100px;
    width : auto;
    margin : 20px;
  }

.hamburger {
  display : block;
  width : 12vw;
  height : 12vw;
  position : absolute;
  transition-duration: 0.5s;
  font-size : 100px;
  color : white;
  background-color : rgb(0,0,0,0);
  border : none;
}

#hamburgerX {
  z-index : 1;
  opacity : 0;
  }

#hamburgerO { z-index : 99; }

#navDiv {
  flex-direction: column;
  align-items: center;
}

#textNavDiv {
  background-color : rgb(202,40,56);
  padding : 0;
  margin : 0;
  width : 100%;
  height : 80vh;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
  transition-duration : 0.5s;
  position : relative;
  left : -100%;
  overflow : hidden;
}

#textNavDiv > * {
  width : 100%;
  padding-top : 40px;
  padding-bottom : 40px;
  margin-top : 20px;
  margin-bottom : 20px;
  background-color : rgb(0,0,0,0.07);
  position : relative;
  margin-left : 0;
  margin-right : 0;
}

h4 > a {
  font-size: 40px;
}

  #headerTextDiv {
    height : 30%;
    padding-top : 20px;
    padding-bottom : 20px;
  }

  #headerTextDiv > * {
    padding : 0;
    margin : 20px;
  }

  #header { font-size : 84px; }

  #subheader {
    font-size : 50px;
    max-width : 80%;
    line-height: 80px;
  }


  #address, #contact {
    width : 100%;
    font-size: 30px;
  }

  #address > h3 {
    font-size : 62px;
  }

  #contact > h3 {
    font-size : 62px;
  }

  h3 {
    font-size : 52px;
  }

p {
    font-size: 1.5em;
  }

  #gmap_canvas {
    width : 100vw;
    height : 50vh;
    margin : 0;
    padding : 0;
  }

  #footerSection {
    flex-direction : column;
  }

  #footer {
    flex-direction : column;
    align-items: center;
    justify-content: center;
  }

  #footer > p {
    margin : 30px;
    max-width : 90%;
  }


}
