/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* IMPORTS: bootstrap icons, google fonts */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* GENERAL */
body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.32em;
  letter-spacing: 0.85px;
  animation: transitionIn 0.75s;
}
.page a,
.page p,
.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6 {
  color: #54595F;
  font-family: "Lato", sans-serif;
  text-decoration: none;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* PAGE TRANSITION */
@keyframes transitionIn {
  from {
    opacity: 0;
    animation-timing-function: ease-in-out;
  }
  to {
    opacity: 1;
    animation-timing-function: ease-in-out;
  }
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* IMAGES */
.img-shadow {
  border-radius: 2px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.img-shadow-light {
  border-radius: 2px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.img-shadow-wht {
  border-radius: 2px;
  box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.2);
}
.img-fs {
  margin-right: 15px;
  margin-bottom: 10px;
}
.img-cover {
  object-fit: cover;
  object-position: center center;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* BUTTONS */
.btn-primary {
  background-color: #63a6c2;
  border: solid thin #63a6c2;
  transition: 0.3s;
}
.btn-primary:hover {
  background-color: #fff;
  border: solid thin #63a6c2;
  color: #63a6c2;
}
.btn-outline-white {
  background-color: transparent;
  border: solid thin #fff;
  border-radius: 2px;
  color: #fff;
  transition: 0.3s;
}
.btn-outline-white:hover {
  background-color: #0d311d;
  border: solid thin #0d311d;
  transform: scale(1.05);
}
.btn-outline-gray {
  background-color: transparent;
  border: solid thin #ccc;
  border-radius: 2px;
  color: #7a7a7a;
  transition: 0.3s;
}
.btn-outline-gray:hover {
  background-color: #0d311d;
  border: solid thin #0d311d;
  color: #fff;
  transform: scale(1.05);
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* HOME PAGE */
/* hero */
.home-top {
  width: 100%;
  height: 100vh;
  background-image: url("//havenatteravista.pages.dev/assets/img/bg/teravista-thingstodo-woman.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
  color: #fff;
}
.home {
  /* max-width: 1200px; */
}
.hero-top-inner {
  background-color: rgba(255,255,255,0.8);
}
.home-hero-text {
  background-color: rgba(255,255,255,0.95);
  width: 80%;
}
/* error */
.error-top {
  width: 100%;
  height: 100vh;
  background-image: url("//havenatteravista.pages.dev/assets/img/bg/bg-error-01.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
  color: var( --font-color );
}
.error {
  width: 100%;
}
.error-hero-text {
  background-color: rgba(255,255,255,0.9);
  width: 100%;
  color: var( --font-color );
}
/* page */
.page-9x {
  max-width: 900px;
}
.page-12x {
  max-width: 1200px;
}
.site-logo {
  max-width: 400px;
}
.residences, .amenities, .projects {
  width: 100%;
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@supports (-webkit-touch-callout: inherit) {
  .residences, .amenities, .projects {
    display: none;
  }
}
.residences {
  background-image: url("//havenatteravista.pages.dev/assets/img/bg/havenatteravista-1.jpg");
}
.amenities {
  background-image: url("//havenatteravista.pages.dev/assets/img/bg/havenatteravista-8.jpg");
}
.projects {
  background-image: url("//havenatteravista.pages.dev/assets/img/bg/havenatteravista-15.jpg");
}
.project-block {
  min-height: 225px;
}
.project-text {
  font-size: 14px;
}
.project-text a {
  color: #63a6c2;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* THANK YOU PAGE */
.thankyou-top {
  width: 100%;
  height: 100vh;
  background-image: url("//journeyinwardcoaching.pages.dev/assets/img/bg/bg-nature-outlook-02.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: left;
  color: #fff;
}
.thankyou {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* PHOTO GALLERY */
.location iframe,
.neighborhood .carousel-item {
  width:100%;
  height: 600px;
}
.photo-gallery {
  color: #313437;
  background-color: #fff;
}
.photo-gallery .photos {
  padding-bottom: 20px;
}
.photo-gallery .item {
  padding-bottom: 30px;
}
.img-fluid-alt, .img-fluid-alt2 {
  width: 100%;
  object-fit: cover; 
}
.img-fluid-alt {
  height: 250px;
  transition: all 0.5s ease;
}
.img-fluid-alt2 {
  height: 375px;
  transition: all 0.5s ease;
}
.img-fluid-alt:hover,
.img-fluid-alt2:hover {
  opacity: 0.5;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* FOOTER */
footer {
  background-color: #393939;
}
footer a {
  text-decoration: none;
  transition: 0.3s;
}
footer a:hover {
  color: #ccc;
}
.footer a,
.footer p,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  color: #fff;
}
.img-footer-profile {
  width: 100%;
}
.img-footer-logo {
  width: 50%;
}
.copyright {
  font-size: 14px;
}
.legal-notice {
  font-size: 10px;
  line-height: 1.2em;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* MOBILE */
@media screen and (max-width: 420px) {
  .site-logo {
    width: 225px;
  }
  .img-footer-logo {
    width: 80%;
  }
  .location iframe,
  .neighborhood .carousel-item {
    max-height: 350px;
  }
  .home-hero-text {
    width: 100%;
  }
  .home-hero-text h2 {
    font-size: 20px;
  }
}
