/*
Style Sheet for CS202
* version: 1.0
* last modified: 12.6.2020
* author: Helen Olivares
* email: olivarh@wwu.edu
* website: My website
*/
/* 
Contents:
1. Variables
2. Body
2. Header
3. banner
4. Navigation
5. Main
6. Footer
*/
@import url("https://fonts.googleapis.com/css2?family=Baloo+Tamma+2&family=Bellota+Text&family=Kulim+Park&family=Lexend+Tera&family=Major+Mono+Display&family=Pontano+Sans&display=swap");
@import url("pageloader");
* {
  box-sizing: border-box;
}

body {
  background-color: white;
  margin: 0px;
  padding: 0px;
  font-family: "Bellota Text", cursive;
  font-size: 18px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  text-align: center;
  padding: 1rem 3rem;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  margin-top: 0px;
  top: 0;
  width: 100%;
}

.header-grid {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 2fr;
}

header .logo {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
}

header .logo a {
  color: #de6c83;
}

nav ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  text-align: center transition;
  max-height: 0.3s;
}

nav li {
  list-style: none;
  padding: 1em 0;
}

nav a {
  text-transform: uppercase;
  color: #de6c83;
  font-weight: 700;
  opacity: 1;
  text-decoration: none;
  transition: 0.3s all ease;
  padding: 1em 2em;
}

nav a:hover {
  cursor: pointer;
  background: #de6c83;
  color: #fff;
}

.heroimage {
  background-image: url(../images/banner.jpg);
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.hero-text {
  position: absolute;
  width: 100%;
  height: 100vh;
  text-align: center !important;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3em;
  color: #fff;
}

.hero-text p {
  font-size: 1em;
  color: #fff;
}

.button {
  background-color: #de6c83;
  transition: .3 all ease;
  padding: 12px 30px;
  margin-top: 0 !important;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: #fff;
  border: 1px solid #de6c83;
  cursor: pointer;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  border-radius: 8px;
}

#toggle {
  display: none;
}

label {
  font-size: 20px;
  line-height: 70px;
  display: none;
  width: 30px;
  float: right;
  color: #fff;
}

.button:hover {
  background: #fff;
  color: #de6c83;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 4rem;
  margin: 5;
}

.rightside {
  text-align: left;
}

.subheading {
  font-size: 20px;
  color: #6c6d6a;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 40;
  text-align: center;
  font-weight: 900;
}

.line1 {
  margin: 1rem;
  height: 1px;
  display: block;
  background: #de6c83;
  padding: 0;
  margin: 0 auto;
}

.container-shadow {
  margin-top: 3.5em;
  padding: 4em 5em;
  box-shadow: 0 5px 10px rgba(49, 0, 128, 0.6);
}

.project {
  background-color: #fff;
  padding: 10%;
  text-align: center;
}

.project .img {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.project .img :hover {
  filter: blur(2px) brightness(60%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 0 5px, 5px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.project .description h2 {
  color: #de6c83;
  font-weight: bold;
  font-size: 20px;
}

.project .description h2 .fa {
  color: #de6c83;
}

.contact {
  background-image: url(../images/spaceneedle.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-attachment: fixed;
}

.contact-items {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2em;
  z-index: 0;
}

.contact-text {
  padding: 2em;
  color: #fff;
  z-index: 2;
}

.contact:before {
  background: rgba(0, 0, 0, 0.25);
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  position: absolute;
  text-decoration: none;
}

.contact-items h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 18px;
  z-index: 1;
}

.contact-items h2 .h1-responsive {
  z-index: 0;
}

.contact-items input[type="text"], .contact-items input[type="email"], .contact-items textarea {
  border-radius: 0.5em;
  margin-bottom: 15px;
  width: 50%;
  padding: 15px;
  outline: none;
  border: 1px solid #ccc;
}

.contact-items textarea {
  border-radius: 0.5em;
  margin-bottom: 15px;
  width: 50%;
  padding: 15px;
  outline: none;
  border: 1px solid #ccc;
}

.copyright {
  text-align: center;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to right, #654ea3, #eaafc8);
}

@media (max-width: 992px) {
  .label {
    display: block;
    cursor: pointer;
  }
  .logo a {
    font-size: 28px;
  }
  nav ul {
    text-align: center;
    grid-template-columns: 1fr;
    justify-content: center;
    margin: 0 auto;
    top: 5.6em;
    width: 80%;
    left: 10%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    max-height: 0;
    overflow: hidden;
  }
  nav a {
    opacity: 1;
    font-size: 20px;
  }
  #toggle:checked + .menu {
    max-height: 300px;
  }
  header > div.logo {
    float: left;
    padding: 1em 0.5em 0.5em 0.5em;
  }
  .menu a {
    display: block;
    margin: 0;
  }
  .heroimage {
    height: 100vh;
  }
  .hero-text h1 {
    font-size: 40px;
  }
  .hero-text p {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .main-padding {
    padding: 2em 0;
  }
  .sideleft, .sideright, .contact, .textarea, .rooms-pic-1 {
    width: 100%;
    text-align: center;
    margin: 0.8em 0 0.8em 0;
    padding-bottom: 1em;
  }
  .sideleft img {
    width: 80%;
  }
  .footer {
    margin-bottom: 1em;
  }
}

@media (max-width: 600px) {
  .footer-grid, .main-grid {
    grid-template-columns: 2fr;
  }
  .footer-grid {
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 30px;
  }
  .hero-text {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
