:root {
  /* typography */
  --body-font-style: "Righteous", sans-serif;
  --header-font-style: "Roboto", sans-serif;
  --cursive-font-style: "Nanum Pen", cursive;

  /* Headings */
  --font-size-heading1: clamp(2rem, 4vw + 1rem, 3.5rem);
  --font-size-heading2: clamp(1.5rem, 3.5vw + 0.75rem, 3rem);
  --font-size-heading3: clamp(1.25rem, 3vw + 0.75rem, 2.5rem);
  --font-size-heading4: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
  --font-size-heading5: clamp(1.25rem, 4vw + 1rem, 4rem);
  --font-size-heading6: clamp(1rem, 1vw + 0.5rem, 1.2rem);

  /* Paragraph */
  --font-size-paragraph: clamp(0.875rem, 1vw + 0.5rem, 1rem);

  /* Line heights */
  --line-height-heading1: clamp(2.25rem, 5vw + 1rem, 4rem);
  --line-height-heading2: clamp(1.75rem, 4vw + 0.75rem, 3.5rem);
  --line-height-heading3: clamp(1.5rem, 3.5vw + 0.5rem, 2.875rem);
  --line-height-heading4: clamp(1.7rem, 3vw + 0.5rem, 2.25rem);
  --line-height-heading5: clamp(1.5rem, 5vw + 1rem, 4.5rem);
  --line-height-heading6: clamp(1.25rem, 2.5vw + 0.5rem, 1.75rem);

  /* Body sizes */
  --body1: clamp(1rem, 1vw + 0.025rem, 1rem);
  --body2: clamp(1rem, 1vw + 0.25rem, 1.125rem);
  --body3: clamp(1rem, 1.5vw + 0.25rem, 1.25rem);
  --body4: clamp(0.9rem, 1vw + 0.025rem, 1rem);
  --b4footer: clamp(0.5rem, 1vw + 0.25rem, 0.75rem);
  --body5: clamp(0.5rem, 1vw + 0.25rem, 0.75rem);

  /* Body line-heights */
  --line-height-body1: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  --line-height-body2: clamp(1rem, 2vw + 0.5rem, 1.75rem);
  --line-height-body3: clamp(1.25rem, 2.5vw + 0.5rem, 2rem);
  --line-height-b4footer: clamp(0.75rem, 1.5vw + 0.25rem, 1.25rem);
  --line-height-body5: clamp(0.75rem, 1.5vw + 0.25rem, 1.25rem);

  /* colors */
  --red-shade: #ff3300;
  --red-accent: #fd8d70;
  --white: #ffffff;
  --black: #000000;
  --text-color-gray: #858585;
  --gradient: linear-gradient(180deg, var(--red-shade, #f30) 0%,  #000 100%);
}

* {
  padding: 0;
  margin: 0;

  box-sizing: border-box;
}

body {
  width: 100%;

  background: var(--black);
  color: var(--white);

  scroll-behavior: smooth;
}

header {
  width: 100%;

  display: flex;
  flex-direction: row;

  align-items: center;
  justify-content: center;

  padding: 1em 1em;
}

nav {
  width: 1400px;

  display: flex;
  flex-direction: row;

  align-items: center;
  justify-content: space-between;

  /* background-color: aquamarine; */
}

nav img {
  width: 140px;
}

.navBtns {
  list-style-type: none;

  display: flex;
  flex-direction: row;

  align-items: center;
  justify-content: center;

  gap: 1.5em;
}

.navBtns li a {
  text-decoration: none;

  color: var(--white);

  font-family: var(--header-font-style);
  font-size: var(--body1);

  transition: 0.5s all;
}

.navBtns li a:hover {
  color: gray;
}

.navBtns li button {
  padding: 0.8em 1.5em;

  font-family: var(--header-font-style);
  font-size: var(--body1);
  font-weight: 500;

  background: #1c1c1c;
  border-radius: 6px;
  border: 0.5px solid var(--text-color-gray);

  transition: 0.5s all;

  color: var(--white);
}

.navBtns li button:hover {
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.menu {
  display: none;
}

section {
  padding: 3.5em 0em 0 0em;

  display: flex;
  flex-direction: row;

  align-items: center;
  justify-content: center;
}

.heroSection {
  width: 100%;
}

.centered {
  width: 100%;

  padding: 0em 1em;
}

.flexWrapCenter {
  width: 100%;
  display: flex;
  flex-direction: row;

  align-items: center;
  justify-content: center;
}

.heroTextContent {
  width: 100%;

  display: flex;
  flex-direction: column;

  /* align-items: center; */
  /* justify-content: center; */

  gap: 1em;
}

.heroHead {
  width: 100%;
  font-family: var(--body-font-style);
  font-size: var(--font-size-heading3);
  font-weight: 400;

  letter-spacing: 0.03em;

  text-align: center;
}

.heroParagraph {
  font-family: var(--header-font-style);
  font-size: var(--body3);
  font-weight: 450;

  color: var(--text-color-gray);

  text-align: center;

  line-height: 1.5em;
}

.FeghasForm {
  width: 100%;
}

.FormComponent {
  width: 100%;
  background-color: var(--white);

  padding: 3em 1.5em;

  border-radius: 10px;

  font-family: var(--header-font-style);
}

form {
  width: 100%;

  display: flex;
  flex-direction: column;

  font-family: var(--header-font-style);
  font-weight: 500;
  /* gap: 2em; */
}

form > * {
  font-size: var(--font-size-heading6);
  font-weight: 500;
}

form label {
  padding-bottom: 0.4em;

  color: var(--black);

  /* margin-bottom: 1em; */
}

.InputText {
  width: 100%;

  border: none;
  border-bottom: 1px solid var(--text-color-gray);

  font-size: var(--font-size-heading6);
  font-weight: 500;

  padding: 1em 0.1em;

  margin-bottom: 2em;
}

.input:focus {
  outline: none;
}

option {
  background: none;
}

#SelectInput,
#SelectInput2 {
  border: none;
  border-bottom: 1px solid var(--text-color-gray);

  padding: 1em 0.1em;

  margin-bottom: 2em;
}

.FormBtn {
  width: fit-content;
  padding: 0.6em 1.4em;

  background: var(--white);

  border: 1px solid var(--red-shade);
  border-radius: 5px;

  font-family: var(--header-font-style);
  font-size: clamp(1.2rem, 1vw, 1rem);
  font-weight: 500;

  transition: 0.5s all;
}

.FormBtn:hover {
  background: var(--black);
  color: var(--white);
}

.regClosed{
  background-color: red;

  padding: 1em;

  font-family: var(--body-font-style);
  font-size: var(--font-size-heading1);
}

@media (max-width: 576px) {
  .menu {
    width: 50px;
    aspect-ratio: 1/1;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 0.45em;

    border-radius: 50px;

    background-color: #1e1e1e;
  }

  .line {
    width: 25px;
    height: 2px;

    background-color: var(--white);

    border-radius: 100px;
  }
}

footer {
  width: 100%;

  display: flex;
  flex-direction: row;

  align-items: center;
  justify-content: center;

  margin-top: 3.5em;
}

.logoAndLinks {
  width: 100%;

  display: flex;
  flex-direction: row;

  flex-wrap: wrap;

  align-items: flex-start;
  justify-content: space-between;

  gap: 1.5em;
}

.logoAndLinks > * {
  /* flex-basis: calc(100% / 4); */
  flex-grow: 1;

  min-width: 250px;

  /* background-color: red; */

  /* outline: 1px solid red; */
}

.footerLogo {
  width: 150px;
}

.footLinks {
  width: 260px;
  /* max-width: 250px; */

  list-style-type: none;

  /* background-color: purple; */
}

.footLinks li,
a {
  text-decoration: none;
  color: var(--text-color-gray);

  font-family: var(--header-font-style);
  font-size: var(--body4);
  font-weight: 400;

  margin-bottom: 1em;
}

.footLinks li:nth-child(1) {
  color: var(--white);
  font-weight: 500;
}

.newsLetter {
  width: 24%;
  min-width: 250px;
  max-width: 400px;

  /* background-color: purple; */
}

.newsLetter p {
  font-family: var(--header-font-style);
  font-size: var(--font-size-heading4);
  font-weight: 500;
}

.inputWrap {
  width: 100%;

  position: relative;
}

.inputWrap label {
  position: absolute;
  top: -99999px;
}

.inputWrap input {
  width: inherit;
  padding: 1.5em;

  border: 1px solid var(--red-shade);
  border-radius: 10px;

  margin-top: 0.5em;

  font-family: var(--header-font-style);
}

.inputWrap button {
  position: absolute;
  top: calc((100% / 2) / 2);
  right: 1em;

  border-radius: 5px;
  border: 1px solid var(--red-shade);

  padding: 0.8em 1em;

  font-family: var(--header-font-style);

  transition: 0.5s all;
}

.inputWrap button:hover {
  background-color: var(--black);
  color: var(--white);

  cursor: pointer;
}

.copyrightAndHandles {
  width: 100%;

  border-top: 1px solid var(--text-color-gray);

  margin-top: 3em;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 1em;

  padding: 1em 0em;
}

.copyrightText {
  font-family: var(--header-font-style);
  font-size: var(--body4);

  text-align: center;
}

.handles {
  width: fit-content;
}

.handles img {
  width: 22px;
}

@media (min-width: 800px) {
  .centered {
    width: 100%;
    max-width: 1280px;

    padding: 0;
    margin: 0 2.5em;
  }

  section {
    padding: 6em 0 0 0;
  }

  .heroTextContent {
    width: 60%;
    min-width: 250px;
  }

  .FormComponent {
    width: 100%;

    max-width: 900px;
  }

  .fourGroup {
    width: 100%;

    display: flex;
    flex-direction: row;

    flex-wrap: wrap;

    align-items: center;
    justify-content: space-between;

    /* background-color: red; */
  }

  .fourGroup > * {
    width: 45%;
    min-width: 200px;
  }

  footer {
    margin-top: 6em;
  }

  .logoAndLinks {
    width: 100%;

    padding-top: 8em;

    border-top: 0.2px solid var(--text-color-gray);
  }

  .copyrightAndHandles {
    margin-top: 3em;

    flex-direction: row;

    justify-content: space-between;

    padding: 4em 0em;
  }
}
