/* Mixins */
/**
@include xs { // 400px

}
@include sm { // 576px

}
@include md { // 768px

}
@include lg { // 960px

}
@include xl { // 1200px

}
@include xxl { // 1400px

}
**/
.text-light {
  color: #f3f5e7 !important;
}

.text-dark {
  color: #26181A !important;
}

.text-sage {
  color: #C9CBA3 !important;
}

.text-peach {
  color: #FFE1A8 !important;
}

.text-coral {
  color: #E26D5C !important;
}

.text-plum {
  color: #723D46 !important;
}

.text-mocha {
  color: #472D30 !important;
}

.bg-light {
  background-color: #f3f5e7 !important;
}

.bg-dark {
  background-color: #26181A !important;
}

.bg-sage {
  background-color: #C9CBA3 !important;
}

.bg-peach {
  background-color: #FFE1A8 !important;
}

.bg-coral {
  background-color: #E26D5C !important;
}

.bg-plum {
  background-color: #723D46 !important;
}

.bg-mocha {
  background-color: #472D30 !important;
}

/*ABOUT CARDS*/
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cards {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  width: 100%;
}

.blob-card {
  z-index: 1;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
  color: #26181A;
  font-size: 16px;
  font-weight: bold;
  background: #fbfdf2;
  outline: none;
  border: none;
  transition: color 0.5s;
  cursor: pointer;
  border-radius: 30px;
  width: 260px;
  height: 340px;
  box-shadow: 4px 4px 8px 1px rgba(0, 0, 0, 0.1176470588);
}
.blob-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  gap: 5px;
  padding: 10px;
}
.blob-card__hover-btn {
  pointer-events: auto;
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 100px;
  transform: translate(-50%, 200px);
  transition: transform 0.8s ease;
  pointer-events: none;
  width: 85%;
}
.blob-card:hover .blob-card__hover-btn {
  transform: translate(-50%, 0);
}
.blob-card .card-heading {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: #26181A;
}
.blob-card .card-text {
  font-size: 10px;
  color: #26181A;
  text-align: left;
  padding: 0 10px;
}
.blob-card:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.blob-card:after {
  content: "";
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  transition: all 0.3s 0.2s;
  border-radius: 30px;
}
.blob-card:hover {
  color: #f3f5e7;
  border-radius: 30px;
}
.blob-card:hover:after {
  transition: all 0.3s;
  left: 0;
  top: 0;
  border-radius: 30px;
}
.blob-card__inner {
  z-index: 2;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.blob-card__blobs {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#goo");
}
.blob-card__blob {
  position: absolute;
  width: 33.3333333333%;
  height: 100%;
  background: #E26D5C;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.7);
  transition: transform 0.45s;
}
@supports (filter: url("#goo")) {
  .blob-card__blob {
    transform: translate3d(0, 150%, 0) scale(1.4);
  }
}
.blob-card__blob:nth-child(1) {
  left: 0%;
  transition-delay: 0s;
}
.blob-card__blob:nth-child(2) {
  left: 40%;
  transition-delay: 0.08s;
}
.blob-card__blob:nth-child(3) {
  left: 80%;
  transition-delay: 0.16s;
}
.blob-card:hover .blob-card__blob {
  transform: translateZ(0) scale(1.7);
}
@supports (filter: url("#goo")) {
  .blob-card:hover .blob-card__blob {
    transform: translateZ(0) scale(1.4);
  }
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: solid 6px #C9CBA3;
}

.blob-card__hover-btn {
  pointer-events: auto;
}

/*HOME HERO*/
.home-hero {
  background: #723D46;
  color: #f3f5e7;
  padding: 40px 20px;
  border-radius: 30px;
  margin: 0 auto 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  max-width: 600px;
}
@media (min-width: 768px) {
  .home-hero {
    padding: 60px 30px;
  }
}
.home-hero__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.home-hero__subtitle {
  max-width: 700px;
  margin: 0 auto 20px auto;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

#portfolio-section {
  padding-top: 30px;
}
#portfolio-section .container {
  padding-top: 30px;
  padding-bottom: 50px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: rgba(38, 24, 26, 0.85);
  color: #f3f5e7;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item img {
  display: block;
  transition: transform 0.25s ease;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

.icon-link {
  color: #FFE1A8;
  text-decoration: none;
  font-weight: 600;
}

.icon-link:hover {
  color: #E26D5C;
  text-decoration: underline;
}

#projectFilters .nav-link {
  color: #723D46 !important;
}

#projectFilters .nav-link.active {
  background: #E26D5C;
  color: #f3f5e7 !important;
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f3f5e7;
  overflow-x: hidden;
}

main {
  flex: 1;
  position: relative;
  top: -150px;
}

p {
  padding-top: 9px;
}

custom-navbar {
  background: #472D30;
}
custom-navbar .nav-link {
  color: #f3f5e7;
}
custom-navbar .nav-link:hover {
  color: #FFE1A8;
}

.active-nav-link::after {
  content: "";
  display: block;
  position: relative;
  bottom: 0;
  border-radius: 4px;
  background-color: #f3f5e7;
  --widthpercent: 70;
  width: var(--widthpercent);
  height: 4px;
  margin: 1px calc((100 - var(--widthpercent)) / 2 * 1%);
  transition: all 0.2s ease;
}

.active-nav-link:hover::after {
  --widthpercent: 78;
}

@media (max-width: 576px) {
  .active-nav-link::after {
    width: 40px;
    margin-left: 8px;
  }
  .active-nav-link:hover::after {
    width: 52px;
    margin-left: 2px;
  }
}
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible,
.btn-close:focus,
.btn-close:active,
.btn-close:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f3f5e7' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f3f5e7'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") !important;
}

.offcanvas {
  background: #472D30 !important;
  width: 250px !important;
}

custom-footer {
  background: #472D30;
  color: #f3f5e7;
}

header {
  color: #26181A;
  mask-image: linear-gradient(#000 40%, rgba(0, 0, 0, 0));
}

.finisher-header {
  height: 300px !important;
  width: 100%;
  position: relative;
}

.submit-btn {
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
}

.inverted-accent-btn {
  background: none;
  color: #f3f5e7;
  border: solid 2px #f3f5e7;
}

.inverted-accent-btn:hover {
  background: #f3f5e7;
  color: #E26D5C;
  border: solid 3px #f3f5e7;
}

.accent-btn {
  color: #f3f5e7;
  border: solid 2px #E26D5C;
  background: #E26D5C;
}

.accent-btn:hover {
  background: none;
  color: #E26D5C;
  border: solid 2px #E26D5C;
}

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