/*Hi! These are my personal styles.*/
body {
  background: url(/images/hiking-bigT.jpeg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
}
.shade {
  /*on top of image main background image, shades the background so it's not as bright*/
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
#page-container {
  position: relative;
  min-height: 100vh;
  margin-bottom: 2.5em;
}

#tahiti-background {
  background: url(/images/motu-none.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
}

.white-text {
  color: white;
}

.black-text {
  color: black;
}

.black-text:hover {
  text-decoration: none;
}

a,
a:hover,
a:visited,
a:active {
  text-decoration: none;
  color: inherit;
  font-family: 'Raleway', sans-serif;
}
button, input[type="submit"], input[type="reset"] {
	background: inherit;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}
img {
  max-width: 90vw;
  border-radius: 0.25rem;
}
.img-credit {

}
.img-container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.card {
  border-radius: .25em;
  background-color: rgba(255,255,255, 0.85);
  padding: 1em;
  margin: 1em;
  max-width: 99%;
  width: fit-content;
}
.center-card {
  display: flex;
  justify-content: center;
  width: 100%;
}
.start-card {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.end-card {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.small-card {
  max-width: 33%;
}
.medium-card {
  max-width: 60%;
}
.large-card {
  max-width: 85%;
}

.displayGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}

.spacing {
  justify-content: space-around;
}
.text-center {
  text-align: center;
}

.listStyleNone {
  list-style: none;
}

.noDecoration {
  text-decoration: none;
}

.margin-auto-center {
  /* centers the content (top/bottom initial, left/right auto) */
  margin: initial auto;
}

.center-flex {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.site-header {
  color: #dba456;
  margin-bottom: 0;
  font-family: Arial;
}
.site-header-2 {
  margin-top: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 6vw;
  font-weight: 100;
}
.section-header {
  font-size: 1em;
  font-family: Arial;
  display: block;
}
.section-header-2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  display: block;
}
.uppercase {
  text-transform: uppercase; 
}
#navmenutoggle {
  /* id of menu button */
  /* remove default button styles*/
	background: inherit;
	color: inherit;
	border: none;
	font: inherit;
	cursor: pointer;
	outline: inherit;
  /* customize it */
  padding: 0 1em;
}
.menu-icon {
  height: 1.7em;
  width: 1.7em;
  vertical-align: -.125em;
}
#navigation {
  position: absolute;
  top: 1em;
  right: 0;
  width: 100%;
}
.nav-container {
  display: inline-flex;
  flex-flow: row-reverse;
  width: 100%;
  padding: 0.25em 0;
  margin: 0;
}
.toggle-hidden {
  display: none !important;
}
.toggle-background {
  background-color: #331f19 !important;
}
.toggle-background-tahiti {
  background-color: teal !important;
}
.link-container ul {
  list-style-type: none;
}
.nav-item {
  display: inline;
  color: white;
}
.link-container {
  display: inline-flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
#navlinks {
  background-color: #331f19;
}
#navlinkstahiti {
  background-color: teal;
  opacity: 0.92;
}

.mt-2 {
  margin-top: 2em;
}
.mb-2 {
  margin-bottom: 2em;
}

#footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(219, 164, 86, 0.7);
  width: 100%;
  height: 2.5em;
}
#footertahiti {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 128, 128, 0.7);
  width: 100%;
  height: 2.5em;
}

/* Phone responsive css */
@media only screen and (max-width: 700px) {
  .nav-item {
    width: 100%;
    padding: 0.5em 1em;
  }
  .site-header-2 {
    font-size: 9vw;
    font-weight: 200;
  }
  .site-header {
    margin-top: 4.5em;
    margin-bottom: 0.5em;
    font-size: 7vw;
  }
  .small-card {
    max-width: 90%;
  }
  .medium-card {
    max-width: 90%;
  }
  .large-card {
    max-width: 95%;
  }
}
@media only screen and (min-width: 700px) {

}