@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');

:root {
  --black-currant: #10082F;
  --huckle-berry: #494558;
  --tangerine: #E4572E;
  --turmeric: #F2C94C;
  --olivine: #A8C686;
  --honey-dew: #F0F8EA;
  --utility--white: #FFFFFF;
  --utility--black: #000000;
  --utility--black-overlay: #000000;
  --styling--silver: #E2E9FF;
  --styling--gold: #FFEDCB;
}

html {
  font-family: 'Inter', sans-serif !important;
  line-height: 1.5rem !important;
  font-size: 1rem !important;
  scroll-behavior: smooth !important;
  color: var(--black-currant) !important;
}

body {
  background-color: #F0F8EA;
}

h1 {
  font-weight: 500 !important;
  font-size: 3rem !important;
  line-height: 3.5rem !important;
  letter-spacing: -0.04em !important;
}

h2 {
  font-weight: 700 !important;
  font-size: 2rem !important;
  line-height: 2.5rem !important;
  letter-spacing: -0.04em !important;
}

h3 {
  font-weight: 700 !important;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

h4 {
  font-weight: 700 !important;
  font-size: 1.125rem !important;
  line-height: 1.5rem !important;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button {
  border: none;
}

.hamburger {
  width: 24px;
  height: 24px;
  position: relative;
  margin: auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 10px;
}

.hamburger span:nth-child(4) {
  top: 20px;
}

.hamburger.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.hamburger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* components */
.heading-description {
  font-weight: 400 !important;
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

.form-input {
  width: 100%;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(240, 248, 234, 0.6);
}

.form-input:focus {
  background-color: white;
  border: 2px solid var(--black-currant);
}

.form-input.form-input-error {
  border: 2px solid var(--tangerine);
}

.form-error-message {
  margin-top: 0.25rem;
  color: var(--tangerine);
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  display: block;
}


.menu-item {
  padding: 0 1rem;
  font-weight: bold;
  line-height: 2;
}

.menu-item:hover {
  color: var(--tangerine);
}

.menu-item-mobile {
  display: block;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: bold;
  line-height: 2;
}

.menu-item-mobile:hover {
  color: var(--tangerine);
}

.button {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--turmeric);
}

.button:hover {
  background-color: var(--tangerine);
}

.button:focus {
  box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.button-lg {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--turmeric);
  font-size: 1.125rem;
  line-height: 1.25;
}

.button-lg:hover {
  background-color: var(--tangerine);
}

.button-lg:focus {
  box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.button-secondary-lg {
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  line-height: 1.25;
  box-shadow: inset 0 0px 0px 2px var(--turmeric);
  color: var(--turmeric);
}

.button-secondary-lg:hover {
  background-color: var(--tangerine);
  box-shadow: none;
  color: var(--black-currant);
}

.button-secondary-lg:focus {
  background-color: var(--tangerine);
  box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.25);
  color: var(--black-currant);
}

.button-menu {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
  background-color: var(--tangerine);
  color: white;
  font-weight: bold;
  line-height: 1.25;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}


.why-us-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 16rem;
}

.why-us-icon-wrapper {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  width: 8rem;
  height: 8rem;
  background: var(--black-currant);
}

.why-us-title {
  margin-bottom: 0.5rem;
  text-align: center;
  color: var(--tangerine);
}

.why-us-desc {
  padding: 0 0.5rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 2rem;
}

.feature-card {
  border-radius: 1rem;
  border: 2px solid var(--honey-dew);
  padding: 3rem;
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.25);
}

.feature-card-title {
  margin-bottom: 0.5rem;
  color: var(--tangerine);
}

.feature-card-desc {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

.feature-card-amount {
  margin-bottom: 1.5rem;
}

.feature-card-amount span {
  line-height: 2rem;
}

.feature-card-amount span:nth-child(1) {
  font-size: 1.25rem;
  font-weight: bold;
}

.feature-card-amount span:nth-child(2) {
  font-size: 2.5rem;
  font-weight: bold;
}

.feature-card-amount span:nth-child(3) {
  font-size: 1.125rem;
}

.feature-list {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.feature-list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.feature-list-item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  pointer-events: none;
}

/* sections */
.navbar {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background-color: var(--turmeric);
  transition: all;
}

.hero-section {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/images/hero-image.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

/* utils */
.text-separating-shadow {
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}

.form-raising-shadow {
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.25);
}

@media (min-width: 1024px) {
  .feature-card {
    padding-right: 6rem;
  }
}