/*
Theme Name: Andiel Homes Inc
Theme URI: https://andielhomes.ca/
Author: the Gooder Marketing Inc
Author URI: http://goodermarketing.com/
Description: 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: andiel-homes
Tags: 
*/
:root {
  --bs-link-color: #6a489c;
  --bs-link-hover-color: #000000;
  --bs-primary: #6a489c;
  --bs-primary-rgb: 106, 72, 156;
}

/* Lora Font for Headings */
.lora-unique-heading-400 {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.lora-unique-heading-700 {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* DM Sans Font for Body Text */
.dm-sans-unique-body-100 {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}
.dm-sans-unique-body-200 {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.dm-sans-unique-body-400 {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.dm-sans-unique-body-700 {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/* Apply Lora font to all headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
}

/* Apply DM Sans font to body text */
body,
p,
div,
span,
a,
li,
ul,
ol,
blockquote,
input,
textarea,
button,
select {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
}

a {
  text-decoration: none;
}

.custom-toggler {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.custom-toggler div {
  width: 30px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}

.change .bar1 {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.change .bar2 {
  opacity: 0;
}
.change .bar3 {
  transform: rotate(45deg) translate(-6px, -6px);
}

.andiel_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #000;
  box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.3);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #6a489c;
}
.andiel_btn::after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #6a489c;
  position: absolute;
  transition: all 0.4s ease-in-out;
  right: 0;
}
.andiel_btn span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 14px 25px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 400;
  z-index: 20;
  transition: all 0.3s ease-in-out;
}
.andiel_btn:hover {
  border: 1px solid #fff;
}
.andiel_btn:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.andiel_btn:hover span {
  color: #fff;
  animation: scaleUp 0.3s ease-in-out;
}
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

section {
  padding: 75px 0;
}

.sec-line {
  position: relative;
  margin-top: 10px;
  margin-bottom: 26px;
  line-height: 0;
}
.sec-line1 {
  width: 16px;
  height: 6px;
  background: #6a489c;
  border-radius: 30px;
  display: inline-block;
  margin-right: 5px;
  animation: pulse1 2s infinite;
}
.sec-line2 {
  width: 46px;
  height: 6px;
  background: #6a489c;
  border-radius: 30px;
  display: inline-block;
  animation: pulse2 2s infinite;
}
@keyframes pulse1 {
  0%, 100% {
    width: 16px;
  }
  50% {
    width: 46px;
  }
}
@keyframes pulse2 {
  0%, 100% {
    width: 46px;
  }
  50% {
    width: 16px;
  }
}

.shimmer-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.375rem; /* Adjust as needed */
  background-color: rgb(106, 72, 156); /* bg-blue-500/30 */
  padding: 0.5rem 1.5rem; /* px-6 py-2 */
  font-size: 1rem; /* text-base */
  font-weight: 600; /* font-semibold */
  color: white;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgb(106, 72, 156); /* border-white/20 */
}
.shimmer-button:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5); /* shadow-blue-600/50 */
}
.shimmer-text {
  font-size: 1.125rem; /* text-lg */
}
.shimmer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: skew(-13deg) translateX(-100%);
  transition: transform 1s;
}
.shimmer-button:hover .shimmer-overlay {
  transform: skew(-13deg) translateX(100%);
}
.shimmer-line {
  position: relative;
  height: 100%;
  width: 2.5rem; /* Adjust as needed */
  background-color: rgba(255, 255, 255, 0.3); /* bg-white/30 */
}

.button_group {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

.section_title {
  font-size: 44px;
}
@media only screen and (max-width: 992px) {
  .section_title {
    font-size: 32px;
  }
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  height: 100%;
  max-height: 700px;
  overflow-y: auto;
  position: relative;
}
.popup-close {
  cursor: pointer;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-close:before, .popup-close:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  background-color: #6a489c;
  transition: width 0.2s ease-out;
}
.popup-close:before {
  transform: rotate(45deg);
  left: 7px;
  top: 7px;
  transform-origin: left;
}
.popup-close:after {
  transform: rotate(-45deg);
  right: 7px;
  top: 7px;
  transform-origin: right;
}
.popup-close .inner {
  color: #6a489c;
}
.popup-close .inner:before, .popup-close .inner:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50%;
  background-color: #6a489c;
  transition: width 0.2s ease-out;
}
.popup-close .inner:before {
  transform: rotate(45deg);
  transform-origin: right;
  bottom: 6px;
  right: 8px;
}
.popup-close .inner:after {
  transform: rotate(-45deg);
  transform-origin: left;
  bottom: 6px;
  left: 8px;
}
.popup-close .label {
  opacity: 0;
  transition: all 0.2s ease-out;
}
.popup-close:focus:before, .popup-close:focus:after, .popup-close:hover:before, .popup-close:hover:after {
  width: 10px;
}
.popup-close:focus .inner:before, .popup-close:focus .inner:after, .popup-close:hover .inner:before, .popup-close:hover .inner:after {
  width: 10px;
}
.popup-close:focus .label, .popup-close:hover .label {
  opacity: 1;
}
.popup:hover {
  color: black;
  text-decoration: none;
}
.popup:focus {
  color: black;
  text-decoration: none;
}
.popup img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

#hero {
  background: linear-gradient(90deg, #6a489c 45%, transparent 45%);
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
#hero h1 {
  font-size: 64px;
}
#hero.inner-hero {
  min-height: 300px;
}
@media only screen and (max-width: 992px) {
  #hero {
    background: linear-gradient(360deg, #6a489c 70%, transparent 70%);
  }
  #hero h1 {
    font-size: 44px;
  }
  #hero::before {
    content: unset !important;
  }
  #hero .col-12:first-child {
    padding: 0;
  }
}

#about-us img {
  height: 100%;
  border-radius: 0 0 50px 0;
}

#projects .project_item {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 500px;
}
#projects .project_item::before {
  content: "";
  background: rgb(247, 248, 248);
  background: linear-gradient(180deg, rgba(247, 248, 248, 0) 40%, rgba(106, 72, 156, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
}
#projects .project_img {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}
#projects .project_img img {
  height: 100%;
  object-fit: cover;
}
#projects .project_info {
  padding: 20px;
  transition: 0.4s transform ease-in-out;
  transform: translateY(0%);
  position: relative;
}
#projects .project_info_title {
  color: #fff;
}
#projects .project_info_address {
  color: #fff;
  margin: 0;
}
#projects .project_item:hover::before {
  opacity: 1;
}
#projects .project_item:hover .project_info {
  transform: translateY(-100%);
}

#cta {
  background-color: #6a489c;
  background-image: url(/wp-content/uploads/2024/07/agent-bg-01.png);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}

#contact iframe {
  width: 100%;
  height: 100%;
}

#coming_soon_projects {
  display: flex;
  flex-direction: column;
  row-gap: 75px;
}
#coming_soon_projects .dual_heading {
  color: #6a489c;
  font-size: 44px;
}
#coming_soon_projects .project_slider .project_slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0 0 50px 0;
}
#coming_soon_projects .project_slider_nav .slick-track {
  margin-left: 0;
}
#coming_soon_projects .project_slider_nav .project_slide {
  cursor: pointer;
  position: relative;
}
#coming_soon_projects .project_slider_nav .project_slide::before {
  content: "";
  background: rgb(247, 248, 248);
  background: linear-gradient(180deg, rgba(247, 248, 248, 0) 40%, rgba(106, 72, 156, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: calc(100% - 10px);
  height: 100%;
  opacity: 0;
  transition: 0.2s opacity ease-in-out;
}
#coming_soon_projects .project_slider_nav .project_slide:hover::before {
  opacity: 1;
}
#coming_soon_projects .project_slider_nav .project_slide img {
  width: 100%;
  max-width: calc(100% - 10px);
  height: 150px;
  object-fit: cover;
}

footer .nav-link {
  color: #fff;
}
footer .nav-link:hover, footer .nav-link:focus {
  color: #000;
}

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