/* ----------------- Variable declarations -----------------------------------*/
/* ----------------------------- All pages ------------------------------------*/
body {
  font-family: Arial, sans-serif; }

.phantom-nav {
  height: 100px;
  width: 100%; }

section {
  width: 100%; }

/* ----------------------------- Header ------------------------------------- */
header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo . nav-menu";
  padding: 5px;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  z-index: 5;
  transition: 0.5s; }

.nav-logo {
  height: 70px;
  grid-area: logo; }

.header-nav {
  display: flex;
  flex-direction: row;
  padding: 0 8px;
  grid-area: nav-menu;
  color: #d2dbbe;
  align-items: center; }
  .header-nav .header-nav-item {
    padding: 0 10px; }
  .header-nav .header-nav-menu-item:hover .nav-link {
    color: #5a5a5a; }

#hero {
  display: grid;
  grid-template-rows: 100px 1fr;
  width: 100%;
  height: 90vh;
  max-height: 900px;
  min-height: 600px;
  background: url("../images/shelf_home_header.jpg") no-repeat top center;
  background-size: cover;
  align-items: center;
  justify-items: center;
  text-align: center; }
  #hero #hero-info {
    display: grid;
    position: relative;
    top: -70px;
    grid-template-rows: 1fr, 1fr, 1fr;
    margin-top: 15px;
    width: 550px;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    color: white; }
    #hero #hero-info h1 {
      font-family: Didot, Times, serif;
      text-align: center;
      font-size: 2em;
      align-self: center;
      margin-bottom: 30px;
      text-transform: uppercase; }
      #hero #hero-info h1 .big-letters {
        font-size: 1.5em; }
    #hero #hero-info h2 {
      font-size: 1.5em;
      margin-bottom: 30px; }

/* ------------------------------- Burger ----------------------------------- */
#burger {
  display: none;
  position: relative;
  width: 25px;
  height: 25px;
  cursor: pointer; }

#burger > div {
  position: absolute;
  width: 25px;
  height: 3px;
  background: white;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out; }

#burger div:nth-child(1) {
  top: 0px; }

#burger div:nth-child(2) {
  top: 7px; }

#burger div:nth-child(3) {
  top: 14px; }

#burger.open div:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg); }

#burger.open div:nth-child(2) {
  opacity: 0; }

#burger.open div:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg); }

/* ------------------------- Service tile section --------------------------- */
.service-tile-section {
  background-color: #d2dbbe;
  justify-items: center; }

.service-tile-container {
  margin: 0 auto;
  padding: 50px 0;
  max-width: 1120px;
  display: flex;
  justify-content: space-between; }

.service-tile {
  width: 280px;
  padding: 30px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.5); }
  .service-tile img {
    width: 100%; }
  .service-tile .tile-text {
    width: 130px;
    padding: 20px;
    line-height: 1.3em;
    text-align: center;
    margin: 0 auto;
    padding: 8px 18px;
    border-radius: 3px;
    margin-top: 10px; }
    .service-tile .tile-text h2 {
      color: #2d2d2d;
      font-weight: bold;
      font-size: 1em;
      letter-spacing: 0.5px;
      line-height: 1em;
      font-family: Didot, Times, serif; }

/* -------------------------- contact section ------------------------------- */
.contact-section {
  display: flex;
  flex-direction: column;
  justify-items: center;
  text-align: center;
  padding: 30px 0; }
  .contact-section h1 {
    font-size: 1.8em;
    font-weight: bold;
    color: black;
    font-family: Didot, Times, serif; }

.form-container {
  background-color: #f3f4f6;
  width: auto;
  margin: 0 auto;
  padding: 20px 0;
  border-radius: 8px; }
  .form-container .form-fields-container {
    margin: 30px auto;
    display: flex;
    justify-content: center;
    width: 50%;
    max-width: 500px;
    min-width: 300px; }
    .form-container .form-fields-container .form-item,
    .form-container .form-fields-container textarea {
      margin: 10px 0;
      padding: 5px 10px;
      font-size: 1.1em;
      font-family: inherit; }
    .form-container .form-fields-container .form-item:hover,
    .form-container .form-fields-container textarea:hover {
      box-shadow: 0px 0px 10px #c5c5c5; }
    .form-container .form-fields-container .form-item:focus {
      border-bottom: 1px solid #b2b2b2; }
    .form-container .form-fields-container input {
      width: 100%;
      border: none; }
    .form-container .form-fields-container textarea {
      width: 100%;
      border: none; }
    .form-container .form-fields-container .contact-button {
      width: auto;
      padding: 7px 30px;
      font-size: 1.2em;
      font-family: Didot, Times, serif;
      font-weight: bold;
      background-color: #d2dbbe;
      transition: 0.23s; }
    .form-container .form-fields-container .contact-button:hover {
      background-color: #5c7048;
      cursor: pointer;
      color: #d2dbbe; }

.contact-form-messages {
  margin: 10px;
  margin-left: 20px;
  color: red; }
  .contact-form-messages #messages {
    list-style-type: none; }

/* ----------------------------- call bubble -------------------------------- */
#call-bubble > a > img {
  width: 35px;
  height: 35px;
  box-shadow: none; }

#call-bubble {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3; }

/* ------------------------------ Footer ------------------------------------ */
footer {
  padding: 7px 10px;
  background: #5c7048;
  color: white;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: center; }
  footer .footer-service-areas {
    font-size: 1.2em;
    justify-self: center;
    margin: 15px; }
  footer .footer-main {
    font-size: 1em;
    display: flex;
    justify-content: space-around;
    margin-bottom: 5px;
    text-align: center; }
    footer .footer-main .footer-left .owners-subheader {
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 1.1em; }
    footer .footer-main .footer-left .footer-owner-info1,
    footer .footer-main .footer-left .footer-right {
      color: #d2dbbe; }
    footer .footer-main .footer-right {
      display: grid;
      justify-items: center;
      color: #d2dbbe; }
  footer .footer-copyright-info {
    font-size: 0.7em; }

/* -------------------------------- Subpage --------------------------------- */
.header-container {
  display: inline-block;
  width: auto;
  padding: 25px 50px;
  margin: 0 auto;
  background: white; }
  .header-container h1 {
    font-size: 2em; }

/* ---------------------------- Gallery page -------------------------------- */
.gallery-content .gallery-section {
  margin-top: 30px;
  margin-bottom: 40px; }
.gallery-content .gallery-heading {
  font-family: Didot, Times, serif;
  text-align: center;
  font-size: 2em;
  margin-top: 40px; }
.gallery-content .gallery-subhead-sections {
  text-align: center;
  margin: 15px;
  color: #5c7048; }
  .gallery-content .gallery-subhead-sections .list-divider {
    align-self: center;
    font-size: 0.5em; }
  .gallery-content .gallery-subhead-sections li {
    display: inline; }
.gallery-content .gallery-section-heading {
  color: black;
  font-family: Didot, Times, serif;
  font-size: 1.5em;
  margin-bottom: 7px; }
.gallery-content .gallery-accent-line {
  width: 70px;
  height: 4px;
  background-color: #d2dbbe; }
.gallery-content .gallery-images {
  margin: 20px 0;
  justify-content: flex-start; }

/* ---------------------------- Animations ---------------------------------- */
@keyframes navLinkFade {
  0% {
    opacity: 0;
    transform: translateX(50px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
/* ---------------------------- Media queries ------------------------------- */
@media (max-width: 1000px) {
  .about-section .about-text,
  .about-section img {
    margin: 20px 0; }
  .about-section .flex-row-reverse {
    flex-direction: row; } }
/* ------------------------------ Mobile nav -------------------------------- */
@media (max-width: 950px) {
  nav {
    grid-template-columns: 150px 1fr 100px; }

  .mobile-logo {
    display: block;
    width: 150px;
    margin-left: 10px; }

  .header-nav {
    position: fixed;
    right: 0px;
    top: 82px;
    height: 100vh;
    width: 30vh;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    z-index: 10;
    transform: translateX(100%);
    transition: transform 0.5s ease-in; }
    .header-nav .header-nav-item {
      margin: 15% 0;
      margin-bottom: 20px;
      align-content: center;
      opacity: 0;
      text-align: center;
      color: white; }

  .nav-social-icons {
    display: none; }

  #burger {
    display: block;
    grid-column-start: 3;
    align-self: center;
    cursor: pointer; }

  .before-after-section {
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 320px;
    max-width: 370px;
    height: autof; }
    .before-after-section .before-after-description {
      grid-column: 1 / span 1; }
    .before-after-section .dividing-line {
      grid-column: 1 / span 1;
      width: 150px; } }
@media (max-width: 550px) {
  #hero #hero-info {
    width: 350px; }
    #hero #hero-info #hero-headline {
      font-size: 2em; }

  .call-bubble {
    display: block; } }
@media (max-width: 355px) {
  #hero #hero-info {
    width: 300px; }
    #hero #hero-info #hero-headline {
      font-size: 1.2em; }
    #hero #hero-info #hero-subhead {
      font-size: 0.9em; } }
@media (max-width: 1120px) {
  .service-tile-container {
    flex-direction: column; }
    .service-tile-container .service-tile {
      width: 400px;
      margin: 30px auto; } }
@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    gap: 15px; } }
@media (max-width: 585px) {
  footer .footer-left {
    display: flex;
    flex-direction: column; }
    footer .footer-left h4 {
      align-self: center; } }
@media (max-width: 500px) {
  .service-tile {
    width: 280px; } }
.reveal {
  transform: translateX(0); }

/*# sourceMappingURL=styles.css.map */
