/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.3px


--- 02 COLORS

- Primary: #e67e22
- Tints:
#fdf2e9
#fae5d3
#eb984e

- Shades: 
#cf711f
#45260a

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  line-height: 1;
  font-weight: 400;
  color: #555;
  background-color: #fdf2e9;
  font-family: "Permanent marker", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.trophy-text {
  display: flex;
}

.trophy-icon {
  width: 4rem;
  height: 4rem;
  margin-right: 3.6rem;
}

.header {
  width: 100%;
  background-color: #fae5d3;
  text-align: center;
  display: flex;
  padding: 3.2rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.primary {
  letter-spacing: 0.3rem;
  font-size: 3.6rem;
}

.secondary {
  font-size: 2.6rem;
}

/*Navigation*/
.nav-list {
  display: flex;
  gap: 5rem;
  list-style-type: none;
}

.nav-links {
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
}

/* Links */
a:link,
a:visited {
  text-decoration: none;
  color: #555;
  font-weight: 600;
  padding: 2rem 0;
}

a:hover,
a:active {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 2rem 0;
}

.link-underline {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #444;
}
/****************/
/* Mobile nav */
/****************/

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #555;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/****************/
/* Section intro */
/****************/

.intro-section {
  padding: 5rem 0;
}

.recordfish-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.7rem;
}

.margin-bottom {
  margin-bottom: 2rem;
}

.margin-top {
  margin-top: 4rem;
}

.images-diploma {
  display: flex;
  gap: 9rem;
}

.image-diploma {
  height: 46rem;
  width: 30rem;
  border: 1px solid #777;

  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.fish-species-available {
  font-size: 1.5rem;
  padding: 0 4rem;
}

/****************/
/* Section form */
/****************/

.how-to-circles {
  display: flex;

  gap: 4rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.how-to-circle {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
  justify-content: center;
  align-items: center;
  background-color: #fffefd;
  padding: 1.6rem;
  border-radius: 15px;
  text-align: center;
  font-size: 1.6rem;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.numbers {
  font-size: 2rem;
}

.form-section {
  padding: 2rem 0;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-text-div {
  padding-bottom: 1rem;
}

.form-text {
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.form {
  display: flex;
  flex-direction: column;
  row-gap: 2.7rem;
  margin-bottom: 4rem;
  padding: 2rem 6rem;
  border: 9px solid #fff;
}

.form-div {
  margin: 2rem 0;
}

.form-fields {
  display: flex;
  column-gap: 3rem;
  /* row-gap: 8rem; */
  justify-content: space-between;
  align-items: center;
}

.form-labels {
  font-size: 1.6rem;
}

.input-fields,
.select-field {
  min-height: 3rem;
  border-radius: 4px;
  border: 1.5px solid #444;
  padding: 1rem;
  width: 18rem;
  background-color: #fffefd;
}

.input-fields::placeholder,
.select-field::placeholder {
  color: #999;
  font-family: sans-serif;
}

.choose-color {
  width: 18rem;
}

.send-btn {
  height: 4rem;
  border-radius: 8px;
  background-color: rgb(89, 192, 89);
  border: 1.5px solid #777;
  box-shadow: 5px 5px 10px #999;
  font-family: "Permanent marker", sans-serif;

  font-size: 2rem;
  letter-spacing: 0.2rem;
}

/****************/
/* Section about */
/****************/

.about-section,
.contact-section {
  padding: 3rem 0;
}

.about-text,
.contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-paragraph,
.contact-paragraph {
  width: 50%;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 200;
}

/*Footer*/
.footer {
  margin-top: auto;
  background-color: #fae5d3;
  padding: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.footer-div {
  display: flex;
  align-items: center;
}
