@font-face {
  font-family: 'dilemma-sans';
  src: url('../fonts/dilemma-sans-bold.otf') format('opentype');
  font-style: normal;Courier Prime
}

@font-face {
  font-family: 'Courier Prime';
  src: url('../fonts/Courier Prime.ttf') format('truetype');
  font-style: normal;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'dilemma-sans';
  width: 100%;
}

/* HEADER */
header {
  height: 13vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #212c1c;
}

.img-logo {
  width: 8vw;
}

/* HERO */
.section-main {
  position: relative;
  height: 90vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f4f1df;
}

/* Desktop Image */
.bg-desktop {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

/* Mobile Image */
.bg-mobile {
  display: none;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

/* Content */
.content-center {
  position: absolute;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
  width: 90%;
}

.content-center h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: #000;
}

.content-center p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #000;
  font-family: 'Courier Prime';
}

.content-center button {
  padding: 0.9em 1.7em;
  font-size: 1.3rem;
  border: 1px solid black;
  border-radius: 0em;
  background: #f4f1df;
  color: #000;
  cursor: pointer;
  font-weight: bold;
}

/* FEATURES */
.section-extra {
  width: 100%;
  padding: 8vh 5vw;
  background: #f9fafb;
}

.flex-box {
  display: flex;
  justify-content: center;
  gap: 3vw;
  max-width: 90vw;
  margin: 0 auto;
}

.box {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  width: 30%;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.box:hover {
  transform: translateY(-0.5rem);
}

.icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 2rem;
  border-radius: 1.2rem;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon img {
  width: 2.2rem;
  height: 2.2rem;
}

.box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #111827;
}

.box p {
  font-size: 1rem;
  line-height: 1.6em;
  color: #6b7280;
}

/* FOOTER */
footer {
  height: 7vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: #000;
}

footer a {
  color: #fff;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .section-main {
    height: 85vh;
  }

  .bg-desktop {
    display: none;
  }

  .content-center {
    padding: 0.8rem;
    width: 100%;
  }

  .bg-mobile {
    display: block;
  }

  .img-logo {
    width: 31vw;
  }

  .content-center h1 {
    font-size: clamp(2.3rem, 4vw, 3rem);
  }

  .content-center p {
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
  }

  .content-center button {
    padding: 0.9em 1.5em;
    font-size: 1.3rem;
  }

  .flex-box {
    flex-direction: column;
    gap: 4vh;
  }

  .box {
    width: 100%;
  }
}