/* // <!-- =====================================================

Custom Assets and Project Parameters

// ===================================================== --> */

:root {
  --emerald: #56d863;
  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-2: hsla(210, 4%, 11%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --eerie-black-4: hsla(0, 0%, 13%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.8);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);

  --font-primary: 'DM Sans', sans-serif;

  --transition-1: 250ms ease;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  background-color: var(--smoky-black-2);
  color: var(--white);
}

.section.features {
  padding: 4rem 1rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--emerald);
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 0 1rem;
}

.wrapper {
  margin-top: 2rem;
  text-align: left;
}

.accordion {
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 1.5rem 2rem;
  border: none;
  outline: none;
  transition: var(--transition-1);
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 10px;
}

.accordion i {
  font-size: 1.5rem;
}

.active,
.accordion:hover {
  background-color: var(--emerald);
  color: var(--white);
}

.panel {
  padding: 0 2rem 1.5rem 2rem;
  background-color: var(--eerie-black-3);
  display: none;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.panel p,
.panel a {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
}

.panel a {
  color: var(--emerald);
  text-decoration: underline;
  display: block;
  margin: 0.25rem 0;
}

.faq.active .panel {
  display: block;
}

.return-home-container {
  width: 100%;
  text-align: center;
  margin: 60px 0 40px 0;
}

.btn:link,
.btn:visited {
  text-decoration: none; 
  position: relative;
  padding: 21px 55px;
  border-radius: 100px;
  display: inline-block;
  transition: all 0.5s;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  font-size: 19px;
}

.btn-white {
  background: #fff;
  color: #000;
}

/* Hover effect: adds shadow and lifts button */
.btn:hover {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.btn:active {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

/* Creates a glowing effect behind the button */
.btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100px;
  z-index: -1;
  transition: all 0.5s;
}

.btn-white::after {
  background: #fff;
}

.btn-animation-1:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* Animation keyframes for sliding up */
@keyframes comeFromBottom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  animation: comeFromBottom 0.8s ease-out;
}