/* 1. Overall */
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* 2. The General Layout */
.container {
  max-width: 85%;
  margin: 0 auto;
}

@media (max-width: 1375px) {
  .container {
    max-width: 90%; /* Adjust max-width for medium screens */
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 95%; /* Adjust max-width for smaller screens */
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 90%; /* Full width for very small screens */
    padding: 0 auto; /* Optional: Reduce padding on very small screens */
  }
}

/* 3. Typography */

h1 {
  /* 72px */
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -5%;
}

h2 {
  /* 42px */
  font-size: 2.625rem;
  line-height: 1.3;
  margin: 0 0;
  letter-spacing: -1.12px;
  color: #4b0082;
  /* display: inline-block; */
}

h3 {
  font-size: 2.25rem; /* 36px */
  line-height: 1.3;
  display: inline-block;
}

h4 {
  font-size: 2rem; /* 32px */
  line-height: 1.4;
  display: inline-block;
}

h5 {
  font-size: 1.5rem; /* 24px */
  line-height: 1.5;
  margin: 0 0;
  font-weight: normal;
}

h6 {
  font-size: 1.25rem; /* 20px */
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.5px;
  display: inline-block;
}

p {
  font-size: 1rem; /* 16px */
  line-height: 1.5; /* 24px */
  margin: 0 0;
}

.larger-p {
  font-size: 1.125rem; /* 18px */
  line-height: 1.5;
  margin: 0 0;
}

a {
  text-decoration: none;
}

.white {
  color: white;
}

.purple {
  color: #4b0082;
}

@media (max-width: 1000px) {
  h2 {
    font-size: 2.5rem; /* 40px */
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3.75rem; /* 60px */
  }

  h2 {
    font-size: 2.25rem; /* 36px */
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3rem; /* 48px */
  }

  h2 {
    font-size: 2rem; /* 32px */
  }

  .larger-p {
    font-size: 1rem;
    line-height: 1.3;
  }
}

/* Graphical */
/* .feature-icon {
  display: flex;
  flex-direction: column;
  line-height: normal;
  width: 18%;
  margin-left: 0;
}
@media (max-width: 991px) {
  .feature-icon {
    width: 100%;
  }
}
.icon {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 4.5rem;
  align-self: stretch;
  margin: auto 0;
}

@media (max-width: 991px) {
  .icon {
    margin-top: 40px;
  }
} */

/* 3. Buttons Section */

.button {
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 32px; /*in correspondence with Material Design 3*/
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}

.filled-button {
  background-color: #ffd700;
  color: #4b0082;
}

.empty-button {
  background-color: white;
  color: #4b0082;
  border: #4b0082 solid 1px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}

/* .apply-button {
  background-color: #ffd700;
  border: none;
  color: black;
  font-weight: 700;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

.empty-button {
  background-color: white;
  border: #ffd700 solid 3px;
  color: black;
  font-weight: 700;
  padding: 12px 29px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
} */
