/* -----CSS Reset----- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Kumbh Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.35;
  overflow-x: hidden;
  overflow-y: auto;
  background-image: radial-gradient(73% 147%, #eadfdf 59%, #ece2df 100%),
    radial-gradient(
      91% 146%,
      rgba(255, 255, 255, 0.5) 47%,
      rgba(0, 0, 0, 0.5) 100%
    );
  background-blend-mode: screen;
  color: #212121;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: unset;
  text-decoration: none;
}

.container {
  max-width: 80rem;
  width: calc(100% - 1.5rem);
  margin: 0 auto;
}

/* Header */
.header {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url('../images/masthead-image-eyelash.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 45rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  --mask: radial-gradient(
        45.07px at 50% calc(100% - 62.5px),
        #000 99%,
        #0000 101%
      )
      calc(50% - 50px) 0/100px 100%,
    radial-gradient(45.07px at 50% calc(100% + 37.5px), #0000 99%, #000 101%)
      50% calc(100% - 25px) / 100px 100% repeat-x;
  -webkit-mask: var(--mask);
  mask: var(--mask);
  width: 100%;
}

.header-content {
  max-width: 72rem;
  width: 100%;
  padding: 0 25px;
}

.header-title {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-top: 1.5rem;
  text-shadow: 4px 3px 0 #7a7a7a;
}

.header-title > span {
  color: #212121;
  text-shadow: none;
}

.header-subtitle {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #212121;
  background-color: #635741;
  padding: 5px 15px;
  width: fit-content;
  color: #ffffff;
  box-shadow: 10px 10px rgba(0, 0, 0, 0.15);
}

.header-btn-link {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.85rem;
  width: 15rem;
  padding: 5px;
  background-color: #212121;
  color: #ffffff;
  font-size: 1.8rem;
  border: 2px solid transparent;
  font-weight: 500;
  line-height: 1;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.header-btn-link:hover {
  transform: translateY(-3px);
}

.header-btn-link:active,
.header-btn-link:focus {
  outline-color: #ffffff;
}

.header-btn-link > svg {
  fill: #ffffff;
  width: 2.8rem;
  height: 2.8rem;
}

/* Information-Section */
.info {
  margin-top: 5rem;
}

.info-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  background-color: #212121;
  color: #ffffff;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.info-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.info-content {
  margin-top: 3.5rem;
}

.info-content-title {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  padding: 5px 15px;
  border: 5px double #212121;
  width: fit-content;
  margin: 0 auto;
}

.info-card {
  padding: 25px;
  border-radius: 5px;
  background-color: #ffffff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  margin-top: 3.5rem;
  position: relative;
}

.info-card-title {
  font-size: 2rem;
  color: #635741;
  font-weight: 700;
  position: relative;
  margin-top: 1.5rem;
  padding-bottom: 5px;
  margin-left: 20px;
  width: fit-content;
  border-bottom: 3px double #635741;
}

.info-card-body {
  margin-top: 2.5rem;
  padding-left: 20px;
  border-left: 3px solid #635741;
}

.info-card-text {
  margin-bottom: 1.5rem;
}

.info-card-text:last-child {
  margin-bottom: 0;
}

/* Footer */
.footer {
  background-color: #212121;
  color: #ffffff;
  padding: 25px 0;
  margin-top: 5rem;
}

.footer-text {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.35rem;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
}

.footer-text > svg {
  width: 1.6rem;
  height: 1.6rem;
}

@media (max-width: 800px) {
  .header {
    height: 40rem;
  }

  .header-title > span {
    color: #ffffff;
    text-shadow: inherit;
  }

  .header-content {
    padding: 0 15px;
  }

  .info-card {
    padding: 15px;
  }

  .info-card-title {
    text-align: center;
  }
}

@media (max-width: 500px) {
  .header-subtitle {
    font-size: 1.8rem;
    padding: 5px 10px;
    box-shadow: 8px 8px rgba(0, 0, 0, 0.15);
  }

  .header-title {
    font-size: 3.5rem;
  }

  .info-title {
    font-size: 2rem;
  }

  .info-subtitle {
    font-size: 1.6rem;
  }

  .info-card-title {
    margin-left: 0;
  }

  .info-card-body {
    padding-left: 10px;
  }
}
