@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Quattrocento:wght@400;700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Karla:ital,wght@0,200..800;1,200..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');



/* 

---01 TYPOGRAPHY SYSTEM

- FONT SIZES (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 25 / 28 / 32-36 / 40-50 / 56-64 / 72-80 / 90-100

- FONT SIZES (rem)
.6 / .8 / .9 / 1 / 1.1 / 1.3 /1.5/1.6/ 1.8 /   2   /   3   /   4   /   5   /   6

- SPACING SYSTEM (px)
      2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128*/


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: 'montserrat'; */
    }

:root {
    --cream: #f8f3ea;
    --tan: #c1b5a6;
    --black: #3d3939;
    --light-blue: #b7d6ed;
    --light-grey: #ebe8e3;
    --green: #172612;
    --bud-green: #dbead5;
}

body {
    background-color: var(--cream);
}

/* ----------------------------------------------------------- */

/*ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}*/

.bottom-bar {
  background-color: var(--cream);
}

.bottom-bar__content {
  min-height: 100px;
  max-width: 1200px;
  padding: 0 30px;
  margin: 0 auto;  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  vertical-align: middle;
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.logo__img {
  height: 100px;
}

.logo__text {
  font-size: 20px;
  color: var(--black);
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* .nav {
  transition: all 0.3s ease-in-out;
}

.nav__list {
  display: flex;
  column-gap: 40px;
}

.nav__link {
  color: var(--green);
  transition: all 0.2s;
  font-size: 1.2rem;
}

.nav__link:hover,
.nav__link:focus {
  color: var(--black);
}

.btn {
  color: #fff;
  background-color: var(--green);
  padding: 8px 20px;
  border-radius: 1000px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background-color: var(--black);
}

.hamburger {
  cursor: pointer;
  display: none;
}

.bar {
  height: 2px;
  width: 27px;
  background-color: var(--black);
  margin: 5px 0;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
} */

/* For JS */
/*.nav--open {
  left: 50% !important;
}

.hamburger--open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger--open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}*/

/* MEDIA QUERIES */
/* @media (max-width: 650px) {
  .bottom-bar {
    height: auto;
  }

  .logo {
    height: auto;
  }
  
  .nav {
    position: fixed;
    top: 90px;
    left: -100%;
    transform: translateX(-50%);
    background-color: var(--green);
    width: 100%;
    padding: 10px 0 25px;
    margin-top: 10px;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }

  .nav__link {
    font-size: 14px;
    color: var(--cream);
  }

  .btn {
    font-size: 11px;
    padding: 7px 17px;
  }

  .hamburger {
    display: block;
  }

  .bar {
    color: var(--cream);
  }

  .btn {
    color: var(--green);
    background-color: var(--cream);
  }


}

@media (max-width: 360px) {
  .top-bar__content {
    font-size: 10px;
  }
}
*/

/*
header {
    height: 100px;
    width: 100%;
    background-color: var(--cream);
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--green);
    gap: 300px;
  }

.logo img {
  height: 100%;
}  
  
nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 80px;
    margin-bottom: 10px;
  }
  
nav ul {
    display: flex;
  }
  
nav ul li {
    display: flex;
    justify-content: space-between;
    margin-right: 40px;
    font-family: "Quattrocento Sans";
    font-size: 1rem;
  } */




.hero-container {
  width: 100vw;
  height: 90vh;
  position: relative;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.hero-text {
  width: 60%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -10%);
  text-align: center;
  position: absolute;
}

.hero-text h1 {
  color: var(--cream);
  font-family: "Quattrocento Sans";
  font-size: 5rem;
  font-weight: 200;
}

.hero-text button {
  width: 250px;
  background-color: var(--light-grey);
  border: 2px solid var(--green);
  border-radius: 5px;
  color: var(--black);
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.5rem;
  margin: 4px 2px;
  margin-top: 50px;
  transition-duration: 0.4s;
  cursor: pointer;
  font-family: "Quattrocento Sans"
}

.hero-text button:hover {
  background-color: var(--green);
  color: var(--light-grey);
}

.description {
  height: 400px;
  width: 100vw;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20%;
}

.description p {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  font-family: "Quattrocento Sans";
  color: var(--light-grey);
  line-height: 150%;
}

/********* FOCUS ********/


.focus {
  height: 10vh;
  width: 100vw;
  background-color: var(--cream);
  border-left: 5px solid var(--green);
  border-right: 5px solid var(--green);
  padding: 5% 5% 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30%;
}

.focus h2 {
  text-align: center;
  font-family: "Quattrocento Sans";
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--green);
}

/********* FOCUS IN DETAIL ********/

.focus-details-container {
  height: 500px;
  width: 100vw;
  background-color: var(--cream);
  border-left: 5px solid var(--green);
  border-right: 5px solid var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
}

.focus-details {
  height: 400px;
  width: 65%;
  border: 2px solid var(--light-grey);
  border-radius: 10px;
  overflow: auto;
}

.inside-focus {
  height: auto;
  width: 100%;
  padding: 5%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-discovery {
  max-width: 100%;
  height: auto;
  background-color: var(--light-grey);
  border-bottom: 2px solid var(--green);
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 5%;
  word-wrap: break-word;
}

.location-discovery h3 {
  font-family: "Quattrocento Sans";
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.location-discovery h4 {
  font-family: "Quattrocento Sans";
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.location-discovery p {
  font-family: "Quattrocento Sans";
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--green);
}

.area-resources {
  max-width: 100%;
  height: auto;
  background-color: var(--light-grey);
  border-bottom: 2px solid var(--green);
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 5%;
  word-wrap: break-word;
}

.area-resources h3 {
  font-family: "Quattrocento Sans";
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.area-resources h4 {
  font-family: "Quattrocento Sans";
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.area-resources p {
  font-family: "Quattrocento Sans";
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.getting-settled {
  max-width: 100%;
  height: auto;
  background-color: var(--light-grey);
  border-bottom: 2px solid var(--green);
  border-radius: 10px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 5%;
  word-wrap: break-word;
}

.getting-settled h3 {
  font-family: "Quattrocento Sans";
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.getting-settled h4 {
  font-family: "Quattrocento Sans";
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.getting-settled p {
  font-family: "Quattrocento Sans";
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 10px;
}

/********* HOW TO GET THINGS DONE ********/

.how {
  height: 100vh;
  width: 100vw;
  background-color: var(--cream);
  border-top: 1px solid var(--black);
  display: flex;
}

.how-left {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.how-left-img {
  height: 350px;
  width: 350px;
  /*background-color: var(--tan);*/
  border-radius: 2%;
  transform: translateZ(0) scale(1.2);
  transition-duration: 20s;
}

.consult-call {
  object-fit: cover;
  height: 300px;
  border-radius: 2%;
}

.how-right {
  height: 100%;
  width: 50%;
  font-family: "Quattrocento Sans";
  color: var(--green);
  justify-content: center;
  align-items: center;
  padding: 8% 5%;
}

.how-right h2 {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.how-right h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--green);
}

.how-right p {
  font-size: 1.1rem;
  font-family: "Quattrocento Sans";
}

.blank-block {
  height: 50px;
  width: 100vw;
  background-color: var(--black);
}

.background-img {
  object-fit: cover;
  height: 50px;
  width: 100vw;
}


/********** ACCORDION ONE ***********/

.other-services {
  height: auto;
  width: 100vw;
  background-color: var(--cream);
  padding: 0 10% 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
}

.accordion{
  width: 85%;
  /* background-color: rgba(0, 0, 0, 0.851); */
  padding: 3rem;
  /* border-radius: 30px; */
  /* box-shadow: 20px 20px 20px  rgba(0, 0, 0, 0.89);     */
}

.accordion .accordion-title{
  margin: 20px 30px 100px;
  text-align: center;
  font-family: "Quattrocento Sans";
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--green);
}

.accordion .content-container .question{
  padding: 18px 0px;
  font-size: 3rem;
  cursor: pointer;
  border-bottom: 1px solid var(--green);
  position: relative;
  font-weight: 200;
  font-family: "Quattrocento Sans";
}

.accordion .content-container .question::after{
  content: '+';
  position: absolute;
  right: -5px;
}

.accordion .content-container .answer{
  padding-top: 15px 0 30px;
  font-size: 1.2rem;
  line-height: 1.5;
  width: 100%;
  height: 0px;
  overflow: hidden;
  transition: .5s;
  font-family: "Quattrocento";
  font-weight: 200;
}

/* JavaScript Styling Link */

.accordion .content-container.active .answer{
  height: auto;
}

.accordion .content-container.active .question{
  font-size: 1.2rem;
  transition: .5s;
}

.accordion .content-container.active .question::after{
  content: '-';
  font-size: 2rem;
  transition: .5s;
}

.service-one {
  width: 85px;
  background-color: var(--green);
  border: 2px solid var(--green);
  border-radius: 5px;
  color: var(--cream);
  padding: 5px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  transition-duration: 0.4s;
  cursor: pointer;
  font-family: "Quattrocento Sans"
}

.service-one:hover {
  background-color: var(--cream);
  color: var(--green);
}

.service-two {
  width: 200px;
  background-color: var(--green);
  border: 2px solid var(--green);
  border-radius: 5px;
  color: var(--cream);
  padding: 5px 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  transition-duration: 0.4s;
  cursor: pointer;
  font-family: "Quattrocento Sans"
}

.service-two:hover {
  background-color: var(--cream);
  color: var(--green);
}

/* JavaScript Styling Link */


/****** FEATURED LOCATIONS *******/

.featured-locations {
  height: auto;
  width: 100vw;
  background-color: var(--black);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5% 20%;
}

.featured-locations h2{
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 50px;
  font-family: "Quattrocento Sans";
  letter-spacing: 2px;
}

.featured-locations p {
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
  font-family: "Quattrocento Sans";
  line-height: 150%;
}

/* PHOTO CONTAINER */

.photo-container {
  height: 400px;
  width: 100vw;
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photos {
  height: 300px;
  width: 70%;
  background-color: var(--cream);
  overflow: auto;
  white-space: nowrap;
}

.inner-photos {
  height: 300px;
  width: 1500px;
  display: flex;
  gap: 10px;
  object-fit: cover;
}

.imgs {
  height: 300px;
  width: 300px;
}

.asheville {
  object-fit: cover;
  height: 295px;
  width: 100%;
  border-radius: 2%;
}

.berea {
  object-fit: cover;
  height: 295px;
  width: 100%;
  border-radius: 2%;
}

.daniels {
  object-fit: cover;
  height: 295px;
  border-radius: 2%;
}

.lexington {
  object-fit: cover;
  height: 295px;
  border-radius: 2%;
}

.sammamish {
  object-fit: cover;
  height: 295px;
  border-radius: 2%;
}


/* OFFERINGS SECTION */

.why-love {
  height: auto;
  width: 100vw;
  padding: 10%;
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--light-grey);
}

.why-love h1 {
  font-family: "Quattrocento Sans";
  margin-bottom: 50px;
  font-size: 2rem;
  text-align: center;
}

.why-love p {
  font-family: "Quattrocento Sans";
  font-size: 1.1rem;
  width: 70%;
  text-align: center;
  font-weight: 400;
  line-height: 150%;
}

.offerings {
  height: auto;
  width: 100vw;
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  padding: 5% 0;
  text-align: center;
}

.reasons-container {
  padding: 5%;
  margin-bottom: 50px;
  width: 70%;
  border-radius: 5px;
  text-align: left;
  background-color: var(--light-grey);
  box-shadow: 0 4px 8px 0 var(--black), 0 6px 20px 0 var(--black);
}

.reasons {
  border-bottom: 1px solid var(--green);
}

.reasons h3 {
  font-size: 4rem;
  font-family: "Quattrocento Sans";
  color: var(--green);
  margin-bottom: 20px;
  margin-top: 20px;
}

.reasons h4 {
  font-size: 1.1rem;
  font-family: "Quattrocento Sans";
  margin-bottom: 5px;
  color: var(--black);
}

.reasons p {
  font-size: 1rem;
  font-family: "Quattrocento Sans";
  margin-bottom: 15px;
  color: var(--green);
}

.footer-container {
  height: 300px;
  width: 100vw;
  background-color: var(--green);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  height: 90%;
  width: 78%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--light-grey);
  align-items: center;
  justify-content: center;
  color: var(--light-grey);
  text-align: center;
  font-size: 1.1rem;
}

.contact a {
  text-decoration: none;
  color: var(--cream);
}





/*********** MEDIA QUERIES ***********/

@media screen and (min-width: 320px) and (max-width: 768px) {

  .bottom-bar {
    height: auto;
  }

  .logo {
    height: auto;
  }
  
  .nav {
    position: fixed;
    top: 90px;
    left: -100%;
    transform: translateX(-50%);
    background-color: var(--green);
    width: 100%;
    padding: 10px 0 25px;
    margin-top: 10px;
    cursor: pointer;
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    cursor: pointer;
  }

  .nav__link {
    font-size: 14px;
    color: var(--cream);
    cursor: pointer;
  }

  .nav__item {
    cursor: pointer;
  }

  .btn {
    font-size: 11px;
    padding: 7px 17px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .bar {
    color: var(--cream);
  }

  .btn {
    color: var(--green);
    background-color: var(--cream);
    cursor: pointer;
    transition: all 0.2s;
  }


  .hero-container {
    max-width: 100vw;
    height: 100vh;
  }

  .hero-text {
    width: 70%;
  }

  .hero-text h1 {
    font-size: 3.2rem;
  }

  .description {
    height: 300px;
    padding: 5%;
  }

  .description p {
    font-size: 1rem;
  }

  .focus {
    height: 15vh;
    padding: 2%;
  }

  .focus h2 {
    font-size: .9rem;
    font-weight: 600;
  }

  .focus-details-container {
    height: auto;
    margin-bottom: 30px;
  }

  .focus-details {
    width: 95%;
  }

  .location-discovery h3 {
    font-size: 1.8rem;
    font-weight: 600;
  }

  .location-discovery p {
    font-size: 1rem;
  }

  .area-resources h3 {
    font-size: 1.8rem;
    font-weight: 600;
    }

  .area-resources p {
    font-size: 1rem;
  }

  .getting-settled h3 {
    font-size: 1.8rem;
    font-weight: 600;
    }

  .getting-settled p {
    font-size: 1rem;
  }

  .how {
    height: auto;
  }

  .how-left {
    display: none;
    visibility: hidden;
  }

  .how-right {
    width: 100vw;
  }

  .how-right h2 {
    font-size: .9rem;
    font-weight: 600;
  }

  .how-right p {
    font-size: 1rem;
  }

  .other-services {
    height: auto;
    padding: 10% 5%;
  }

  .accordion {
    padding: 0;
  }

  .accordion .accordion-title {
    font-size: .9rem;
    font-weight: 600;
    margin: 20px 0;
  }

  .accordion .content-container .question {
    font-size: 2rem;
  }

  .accordion .content-container.active .answer {
    height: auto;
  }

  .featured-locations {
    padding: 5%;
  }

  .featured-locations p {
    font-size: 1rem;
  }

  .why-love {
    padding: 5%;
  }

  .why-love p {
    width: 100%;
    font-size: 1rem;
  }

  .offerings {
    padding: 5%;
  }

  .reasons-container {
    width: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {

    .bottom-bar {
      height: auto;
    }
  
    .logo {
      height: auto;
    }
    
    .nav {
      position: fixed;
      top: 90px;
      left: -100%;
      transform: translateX(-50%);
      background-color: var(--green);
      width: 100%;
      padding: 10px 0 25px;
      margin-top: 10px;
    }
  
    .nav__list {
      flex-direction: column;
      align-items: center;
      row-gap: 20px;
    }
  
    .nav__link {
      font-size: 14px;
      color: var(--cream);
    }
  
    .btn {
      font-size: 11px;
      padding: 7px 17px;
    }
  
    .hamburger {
      display: block;
    }
  
    .bar {
      color: var(--cream);
    }
  
    .btn {
      color: var(--green);
      background-color: var(--cream);
    }

  .hero {
    flex-direction: column;
    flex-direction: column-reverse;
  }

  .hero-text {
    height: 50%;
    width: 100%;
    padding: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-text p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    width: 95%;
  }

  .hero-text button {
    width: 150px;
    font-size: .9rem;
    padding: 12px 18px;
  }

  .hero-vid {
    height: 50%;
    width: 100%;
  }

  .description {
    padding: 0 10%;
  }
  
  .description p {
    font-size: 1.1rem;
  }
  
  .focus-details {
    width: 90%;
  }
  
  .how {
    height: auto;
  }
  
  .how-left {
    height: auto;
  }
  
  .other-services {
    padding: 10% 0;
  }
  
  .accordion {
    padding: 0;
  }
  
  .featured-locations {
    padding: 5% 10%;
  }
  
  .featured-locations p {
    font-size: 1.1rem;
  }
  
  .why-love p {
    width: 100%;
  }
  
  .reasons-container {
    width: 90%;
  }

}


