
/* 
Styles for 503Greenhouse website
Last major update: Jan 2025

*/


/* imports */
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');



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

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

.logo {
  max-width: 80vw;
  padding: 20px;
}

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


@media only screen and (min-width: 516px) {
.section {
  padding: 20px 0px;
  margin: 30px auto;
  background-color: #eee;
}

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

.section-headers {
  margin-left: 30px;
  margin-bottom: 15px;
  font-size: 40px;
  font-weight: 600;
  color: var(--greenhouse-green);
}


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

#page-headers {
  width: 70%;
}

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



#main-header > h1 {
  color: #222;
  margin: 25px 25px 0px 25px;
  /* margin: 0px; */
  font-size: 50px;
  font-weight: 600;
  font-family: "Righteous", sans-serif;
}

#main-header > h6 {
  color: #222;
  margin: 0px 25px 25px 25px;
  font-family: "Righteous", sans-serif;
}

.green-bg {
  text-align: center;
  background-color: var(--greenhouse-green);
  color: #fff;
  margin-top: 0px;
  padding: 100px 30px;
  font-size: 20px;
}

#showcase-text {
  padding: 150px 120px;
  font-size: 25px;
}

#pre-footer {
  padding: 60px 30px 0px 30px;
  font-size: 18px;
}

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


/* showcase */
#showcase-img {
  background-image: url('main-facade.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Roboto', sans-serif;
  min-width: 100vw;
  height: 100vh;
  border-top: 1px solid #999;
  border-bottom:  1px solid #999;
}


/* 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 {
  width: calc(1/3);
  margin: auto;
  border: 1px solid #ccc;
  overflow: hidden;
}

.image {
  height: 40vh;
  max-height: 70vh;
  width: auto;
}

.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: 10px;
  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 */
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;
}

}