@import url("https://fonts.googleapis.com/css?family=Fira+Code:400,700|Permanent+Marker|Rubik:400,700&display=swap");

/* --- FONTS: Fira Code (400, 700) | Rubik (400, 700) | Permanent Marker, --- */

/* ------------------------------------------------------------- */
/* Body */
/* ------------------------------------------------------------- */

body {
  font-family: "Rubik", sans-serif;
  color: #202020;
  background-repeat: no-repeat;
  background: linear-gradient(80deg, #629ecb, #c99bea);
  margin: 0;
  padding: 0;
  height: 100%;
}

.frame {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 40px;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  .frame {
    padding: 12px;
  }
}

#lp-hero-text {
  text-shadow: 2px 2px 6px rgba(81, 32, 46, 0.8);
  font-size: 120px;
  letter-spacing: 2px;
  vertical-align: middle;
  font-family: "Permanent Marker", cursive;
}

@media screen and (max-width: 600px) {
  #lp-hero-text {
    text-shadow: 2px 2px 6px rgba(81, 32, 46, 0.8);
    font-size: 64px;
    font-family: "Permanent Marker", cursive;
  }
}

#dc-hero-text {
  text-shadow: 2px 2px 6px rgba(81, 32, 46, 0.8);
  font-weight: 300;
  font-size: 40px;
}

@media screen and (max-width: 600px) {
  #dc-hero-text {
    text-shadow: 2px 2px 6px rgba(81, 32, 46, 0.8);
    font-weight: 300;
    font-size: 38px;
  }
}

/* ------------------------------------------------------------- */
/* Paragraphs | Headings */
/* ------------------------------------------------------------- */

p {
  font-size: 1em;
  line-height: 1.5em;
}

h1 {
  font-size: 3.8em;
  line-height: 1.5em;
  margin: 0;
  color: #fff;
  margin: 120px auto 20px auto;
  width: 100%;
  max-width: 1080px;
  text-align: center;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 2.8em;
    line-height: 1.5em;
  }
}

/* ------------------------------------------------------------- */
/* Gallery Page */
/* ------------------------------------------------------------- */

#gallery-container {
  margin: 0 auto 20px auto;
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.gallery-display {
  width: 300px;
  margin: 20px;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px 0 rgba(00, 00, 00, 0.3);
  transition-duration: 0.05s;
  cursor: pointer;
}

.gallery-display:hover {
  width: 320px;
  margin: 10px;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  box-shadow: 0 6px 9px 0 rgba(00, 00, 00, 0.4);
  transition-duration: 0.05s;
}

.gallery-display img {
  width: 100%;
}

#gallery-caption {
  margin: 20px auto 20px auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #fff;
  text-align: center;
  min-height: 50px;
}

#gallery-lightbox-container {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-color: rgba(20, 10, 30, 0.88);
  overflow: auto;
}

#gallery-lightbox {
  position: relative;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  align-items: center;
  flex-direction: column;
  /* margin: 120px auto 0 auto; */
  width: 80%;
  height: 700px;
}

#lightbox-image-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 100px 0 0 0;
}

/* less top margin on small devices */
@media screen and (max-width: 600px) {
  #lightbox-image-container {
    margin: 40px 0 0 0;
  }
}

#lightbox-image {
  width: 90vw;
  max-width: 700px;
  height: auto;
  margin: 15px;
  max-height: 500px;
  border-radius: 10px;
  box-shadow: 0 6px 20px 0 rgba(00, 00, 00, 0.6);
}

#lightbox-text {
  font-size: 1.2em;
  text-align: center;
  margin: 15px;
  width: 90vw;
  max-width: 400px;
  height: auto;
  color: #efd5d5;
}

#exit-lightbox {
  font-size: 2em;
  text-align: center;
  margin: 0 auto;
  line-height: 1;
  border: 1px solid #efd5d5;
  border-radius: 8px;
  padding: 8px 16px;
  width: 50px;
  color: #efd5d5;
  cursor: pointer;
}

/* Gallery Items 1-9 */

.gallery-display:nth-of-type(1) {
  content: url("");
  background-image: url("https://www.jqueryscript.net/dummy/1.jpg");
}

.gallery-display:nth-of-type(2) {
  content: url("");
  background-image: url("https://www.jqueryscript.net/dummy/2.jpg");
}

.gallery-display:nth-of-type(3) {
  content: url("");
  background-image: url("https://www.jqueryscript.net/dummy/3.jpg");
}

.gallery-display:nth-of-type(4) {
  content: url("");
  background-image: url("https://www.jqueryscript.net/dummy/4.jpg");
}

.gallery-display:nth-of-type(5) {
  content: url("");
  background-image: url("https://www.jqueryscript.net/dummy/5.jpg");
}

.gallery-display:nth-of-type(6) {
  content: url("");
  background-image: url("https://www.jqueryscript.net/dummy/6.jpg");
}

/* ------------------------------------------------------------- */
/* About Page */
/* ------------------------------------------------------------- */

.hr-full-white {
  border: 0;
  width: 100%;
  background-color: #fff;
  height: 2px;
  margin: 30px 0;
}

.material-box {
  background-color: #fff;
  color: #202020;
  border-radius: 8px;
  padding: 100px;
  margin: 20px;
  box-shadow: 0 4px 6px 0 rgba(00, 00, 00, 0.3);
}

.claims {
  margin-bottom: 40px;
}

.contact-box {
  vertical-align: middle;
  display: table;
  text-align: center;
  margin: 80px auto;
  width: 100%;
  max-width: 400px;
}

.contact-box a {
  color: #fff;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
}

.little-ty {
  width: 80px;
  height: 80px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin: 0 40px 0 0;
  background-image: url("../images/ty-norm.png");
  background-size: contain;
}

@media screen and (max-width: 600px) {
  .claims {
    font-size: 2.2em;
  }
  .person-company {
    font-size: 1em;
  }
  .material-box {
    padding: 40px 30px;
  }
}
