/* ==============

SlateBelt Resources Sources CSS file

============== */





/* // <!-- =====================================================

Custom Assets and Project Parameters

// ===================================================== --> */

:root {

  /**
   * COLORS
   */

  /** Background colors */
  --bg-wild-blue-yonder: hsla(216, 33%, 68%, 1);
  --bg-carolina-blue: hsla(199, 89%, 49%, 1);
  --bg-prussian-blue: hsla(216, 33%, 20%, 1);
  --bg-oxford-blue: hsla(222, 44%, 13%, 1);
  --bg-oxford-blue-2: hsla(222, 47%, 11%, 1);

  /** Text colors */
  --text-white: hsla(0, 0%, 100%, 1);
  --text-alice-blue: hsla(216, 100%, 95%, 1);
  --text-columbia-blue: hsla(199, 69%, 84%, 1);
  --text-wild-blue-yonder: hsla(216, 33%, 68%, 1);
  --text-carolina-blue: hsla(199, 89%, 49%, 1);
  --text-shadow-blue: hsla(217, 24%, 59%, 1);
  --text-slate-gray: hsla(217, 17%, 48%, 1);

  /** Gradient colors */
  --gradient-1: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%);
  --gradient-2: linear-gradient(90deg, #0ea5ea, #0bd1d1 51%, #0ea5ea);
  --gradient-3: linear-gradient(0deg, #000d1a, transparent);

  /** Border colors */
  --border-wild-blue-yonder: hsla(216, 33%, 68%, 1);
  --border-prussian-blue: hsla(216, 33%, 20%, 1);
  --border-white: hsl(0, 0%, 100%);
  --border-white-alpha-15: hsla(0, 0%, 100%, 0.15);

  /** Default colors */
  --white: hsl(0, 0%, 100%, 1);
  --black: hsl(0, 0%, 0%, 1);

  /**
   * TYPOGRAPHY
   */

  /** Font family */
  --font-primary: 'Noto Sans', sans-serif;

  /** Font size */
  --fontSize-1: 2.9rem;
  --fontSize-2: 2.0rem;
  --fontSize-3: 1.8rem;
  --fontSize-4: 1.6rem;
  --fontSize-5: 1.5rem;
  --fontSize-6: 1.4rem;
  --fontSize-7: 1.2rem;
  --fontSize-8: 1.3rem;

  /** Font weight */
  --weight-medium: 500;
  --weight-semiBold: 600;
  --weight-bold: 700;
  --weight-extraBold: 800;

  /** Line height */
  --lineHeight-1: 1.3;
  --lineHeight-2: 1.5;
  --lineHeight-4: 1.5;

  /**
   * BOX SHADOW
   */

  --shadow-1: 0 8px 20px 0 hsla(0, 0%, 0%, 0.05);
  --shadow-2: 0px 3px 20px hsla(180, 90%, 43%, 0.2);

  /**
   * BORDER RADIUS
   */

  --radius-6: 6px;
  --radius-8: 8px;
  --radius-16: 16px;
  --radius-48: 48px;
  --radius-circle: 50%;
  --radius-pill: 200px;

  /**
   * SPACING
   */

  --section-padding: 70px;

  /**
   * TRANSITION
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.05, 0.83, 0.52, 0.97);

}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
   background-color: var(--bg-oxford-blue-2);
  color: var(--white);
}

.section.features {
  padding-block: var(--section-padding);
  text-align: center;
  background-color: var(--bg-oxford-blue-2);
}

.section-title::after {
  content: "";
  display: block;
  width: 360px;
  height: 3px;
  background-color: var(--text-carolina-blue);
  margin: 16px auto 0;
  border-radius: 2px;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 0 1rem;
}

.wrapper {
  margin-top: 2rem;
  text-align: left;
}

.accordion {
  width: 100%;
  padding: 18px 24px;
  background-color: var(--bg-oxford-blue);
  color: var(--text-alice-blue);
  font-size: var(--fontSize-7);
  font-weight: var(--weight-semiBold);
  border-radius: var(--radius-16);
  border: 1px solid var(--border-prussian-blue);
  border-left: 4px solid var(--text-carolina-blue);
  border-right: 4px solid var(--text-carolina-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-block-end: 12px;

  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.25s ease,
    color 0.35s ease;
}

.accordion {
  border-left: 4px solid var(--text-carolina-blue);
  border-right: 4px solid var(--text-carolina-blue);
}

.accordion i {
  font-size: 1.5rem;
  color: var(--text-alice-blue);
  transition: transform 0.55s ease, color 0.55s ease;
}



.accordion.active i {
  transform: rotate(180deg);
  color: var(--bg-oxford-blue);
}

.accordion:is(:hover, .active) {
  background-image: var(--gradient-2);
  box-shadow: 0 0 0 1px var(--bg-oxford-blue);
}

.active,
.accordion:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.accordion.active {
  box-shadow: 0 8px 20px rgba(53, 146, 255, 0.25);
}

.panel {
  display: none;
  padding: 20px 24px;
  background-color: var(--bg-oxford-blue-2);
  border-radius: 0 0 var(--radius-16) var(--radius-16);
  border: 1px solid var(--bg-carolina-blue);
  border-top: none;
}

.panel p,
.panel p {
  color: var(--text-alice-blue);
  font-size: var(--fontSize-7);
  line-height: var(--lineHeight-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: var(--font-primary);
  font-size: 19px;
}

/* Optional Style for Button -- Accent-blue gradient for return home button */
.btn {
  background-image: linear-gradient(
    135deg,
    var(--text-carolina-blue),
    var(--bg-prussian-blue)
  );
  color: var(--text-alice-blue);
}

/* Linear Gradient Style for Hover Effects on Button */
.btn:is(:hover, :focus-visible) {
  background-image: linear-gradient(
    65deg,
    var(--bg-wild-blue-yonder),
    var(--text-carolina-blue)
  );
}

.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;
}