/* Style sheet for Template */

:root {
  --main-color: #b79066;
  --main-light-color: #e2d8c7;
  --main-dark-color: #3f2816;
}

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

a {
  color: var(--main-dark-color);
}

a:hover {
  color: var(--main-color);
}

.bg-color-main {
  background-color: var(--main-color);
}

.bg-color-secondary {
  background-color: var(--main-light-color);
}

.bg-color-dark {
  background-color: #3f2816;
}

.navbar-brand, h1, h2, h3, h4 {
  font-family: "Cardo";
}

.btn {
  border: solid 2px var(--main-color);
  background-color: var(--main-color);
}

.btn:hover {
  border: solid 2px var(--main-color);
  background-color: white!important;
  color: var(--main-color)!important;
}

.hero {
    /* min-height: 100vh; */
    background-image: url(images/og.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.424);
}

.title-underline {
  position: relative;
  display: flex;
  align-self: center;
  z-index: 5;
}

.title-underline::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 7%;
  left: 5%;
  z-index: -1;
  height: 20%;
  width: 0%;
  background-color: var(--main-color);
  transition: width 0.5s ease-out;
}

.animate-underline::after {
  width: 100%;
  animation: growUnderline 0.5s forwards;
}

@keyframes growUnderline {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.top {
  clip-path: polygon(0 0,100% 0,100% 100%,0 calc(100% - 50px));
}

.bottom {
  clip-path: polygon(0 0,100% 50px,100% 100%,0 100%);
  margin-top: -50px;
}

.img-shape {
  border-radius: 0% 25% 0% 25%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.accordion-button:not(.collapsed) {
  background-color: var(--main-dark-color);
  color: white;
  font-family: var(--bs-body-font-family);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button {
  font-family: var(--bs-body-font-family);
}

.img-fade {
  opacity: 0;
  transition: opacity 2s ease-out;
}

.fade-in {
  opacity: 1;
}

@keyframes fadeIn {
  to {
      opacity: 1;
  }
}