/* Kristina Lemasson - Custom Styles */
:root {
  --bs-primary-rgb: 196, 155, 90;
  --bs-secondary-rgb: 155, 149, 134;
  --bs-light-rgb: 248, 248, 248;
}

hr {
  margin: 2rem 0;
}

.img-hero {
  border-radius: 50%;
  display: block;
  height: 7rem;
  margin: 0 auto 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 7rem;
}

.btn {
  border-radius: 0;
}
.btn.btn-lg {
  font-size: 0.875rem;
  padding: 1rem 2rem;
}

.btn-outline-secondary {
  color: rgb(155, 149, 134);
  border-color: rgb(155, 149, 134);
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus, .btn-outline-secondary:active {
  background-color: rgba(176, 170, 155, 0.1) !important;
  border-color: rgb(155, 149, 134);
  color: rgb(155, 149, 134);
}

.btn-primary {
  background-color: #c49b5a;
  border-color: #c49b5a;
  color: rgb(240, 240, 240) !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: rgba(196, 155, 90, 0.5) !important;
  border-color: rgba(196, 155, 90, 0.5) !important;
}

.py-6rem {
  padding-bottom: 6rem !important;
  padding-top: 6rem !important;
}

.bg-light + .bg-light {
  margin-top: -6rem !important;
}

.section-eyebrow {
  color: #c49b5a;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.text-accent-light {
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.text-accent-light {
  color: rgb(248, 248, 248);
}

h3.display-5 {
  color: #c49b5a;
  font-weight: bold;
}

.lead {
  opacity: 0.6;
}

.animate-bounce {
  animation: bounceY 1s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  will-change: transform;
}

.animate-fade-in {
  animation: fadeIn 4s ease-out forwards;
  opacity: 0;
}

.animate-slide-in-up {
  animation: slideInUp 1.5s ease-out 2s forwards;
  opacity: 0;
  transform: translateY(3rem);
}

@keyframes bounceY {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-1rem);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}