


/* general */
:root {
  --greenhouse-green: rgb(12, 71, 25);
}


@font-face {
  font-family: 'Roboto'; 
  src: url('./Roboto-VariableFont_wdth\,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px; /* standard Bootstrap Desktop width */
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}


.section-wrapper {
  margin: 0 auto;
  max-width: 1100px !important;
  overflow-x: hidden !important;
}

body {
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

.logo {
  width: 75vw;
  height: auto;
  max-width: 500px;
  padding: 30px 0px 7px 20px;
}

#selected-price-13,
#selected-price-16,
#selected-price-20,
#selected-price-24 {
  font-weight: bold !important;
  color: #000;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #ddd;
}

.webdevpnw {
  color: #fff; 
  text-decoration: none; 
  font-weight: bold;
  /* border: 1px solid #fff;  */
  border-radius: 2px; 
  padding: 1px 5px;
}


/* FAQ */
#faq-section {
  padding: 0px 25px;
}

#faq-title h1 {
  font-size: 50px;
  margin: 50px 0px;
  font-weight: bold;
  color: var(--greenhouse-green);
}

.faq-header {
  font-size: 26px;
}

.faq-text {
  margin-bottom: 75px;
}




@media only screen and (min-width: 516px) {

  #main-header {
    margin: auto 0px;
  }

  #showcase-contact-mobile{
    display:none;
  }
  
  .section {
    padding: 20px 0px;
    margin-bottom: 30px;
    padding-bottom: 0px;
    background-color: rgba(12, 71, 25, 0.2);
  }

  .light-dep {
    padding: 20px 30px;
    font-size: 20px;
    margin-bottom: 60px;
  }

  .section-headers {
    /* margin: 15px auto; */
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--greenhouse-green);
  }


  /* title */
  #top-container {
    display: flex;
  }

  #page-headers {
    width: 90%;
  }

  #main-header-mobile,
  #secondary-header-mobile {
    display: none;
  }

  #main-header > h6 {
    color: #222;
    margin: 0px 25px 25px 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 16px;
  }

  #showcase-text {
    margin: 5vh auto;
    padding: 30px;
    font-size: 18px;
    max-width: 800px;
    color: var(--greenhouse-green);
  }

  #contact-info {
    margin: 15px;
    position: absolute;
    right: 10px;
    top: 20px;
  }


  /* showcase */
  #showcase-img {
    background-image: url('main-facade.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    /* footer is 40px and top logo is 150px, so 190px total */
    height: calc(100vh - 190px);
    border-top: 1px solid #999;
    border-bottom:  1px solid #999;
  }

  #showcase-img-overlay-desktop {
    position: absolute;
    bottom: 50px;
    /* margin-bottom: 50px; */
    color: #fff;
    padding: 0px 30px;
    text-align: left;
    font-size: 40px;
    font-weight: bold;
    font-family: "Roboto";
    letter-spacing: 4px;
  }

  #showcase-img-overlay-desktop p {
    margin-bottom: 0.4rem;
  }


  /* pricing */
  .pricing-text-row {
    display: flex;
    text-align: center;
    font-size: 22px;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .specs {
    padding: 20px 40px;
  }

  .pricing-img-row {
    display: flex;
    /* margin: 30px 30px 50px 30px; */
  }

  .image-container {
    position: relative;
    /* width: calc(1/4); */
    margin: auto;
    overflow: hidden;
    /* object-fit: contain; */
  }

  .image {
    max-width: 100%;
    padding: 5px;
    height: auto; 
    display: block;
    max-height: 450px;
    /* margin: auto; */
  }

  .image-container, .image {
    border-radius: 2px;
    /* padding: 5px; */
  }

  .sm-col {
    width:5%;
    padding: 10px;
  }
  /* 
  .med-col {
    width: 20% 
  } */

  .lg-col {
    position: absolute;
    right: 0;
    width: 60%;
    padding: 10px;
  }

  #pricing {
    padding: 40px 20px;
  }

  /* li {
    font-size: 18px;
  } */

  .dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    background-color: #fff;
  }

  .dropdown-button {
    padding: 7px 22px;
    border: 1px solid #ccc;
    cursor: pointer;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 1;
  }

  .dropdown-content div {
    padding: 10px;
    cursor: pointer;
  }

  .dropdown-content div:hover {
    background-color: #f1f1f1;
  }

  .show {
    display: block;
  }

  .content-div {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
  }

  /* footer */
  .green-bg {
    background-color: var(--greenhouse-green);
  }

  #pre-footer {
    position: relative;
    padding: 60px 50px 100px 50px;
    font-size: 18px;
    color: #fff;
    max-width: 1100px;
    margin: auto;
    overflow-x: hidden !important;
  }

  .footer-text {
    text-align: left;
    font-size: 12px;
  }

  footer {
    position: fixed;
    left: 0;
    bottom: 0;
    /* line-height: 2.5; */
    /* height: 40px; */
    width: 100%;
    background-color: var(--greenhouse-green);
    color: white;
    font-family: Arial;
    text-align: center;
  }

  .footer-contact {
    margin-bottom: 5px;
  }

  .fine-text {
    margin-top: 45px;
    font-size: 10px;
  }

  .link,
  .link:hover {
    color: #fff;
  }

}


.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #ccc;
}

.image {
  cursor: pointer;
}
