@import "./reset.css";

:root {
  --red: #af2525;
  --navy: #083d77;
  --yellow: #f4d35e;
  --white: #ebebd3;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body, html {
  overflow-x: hidden;
  background-color: var(--white);
}
h1, h2, h3, h4, p, a, input, pre, textarea {
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: black;
  font-size: clamp(16pt, 1rem, 22pt);
}
.button {
  color: var(--white);
  background-color: var(--red);
  width: fit-content;
  height: fit-content;
  margin: auto;
  border-radius: 5px;
  padding: 8px 25px;
}
.button:hover {
  opacity: 0.8;
}
.content {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 0 10vw;
}
.title {
  font-weight: 700;
  font-size: clamp(22pt, 2.5rem, 28pt);
}
/* Main Header */
.mainHeader {
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
}
.mainHeaderLogoContainer {
  height: fit-content;
  align-items: center;
  display: flex;
  column-gap: 10px;
}
.mainHeaderLogo {
  height: 65px;
  width: auto;
  
  @media screen and (max-width: 768px) {
    height: 50px;
    width: auto;
  }
}
.desktopNav {
  display: flex;
  align-items: center;
  column-gap: 25px;

  @media screen and (max-width: 768px) {
    display: none;
  }
}
.navItem {
  display: flex;
  align-items: center;
  height: 35px;
  width: 110px;
  text-align: center;
  justify-content: center;
}
.navItem:hover {
  opacity: 0.8;
}
.navDropdownContainer {
  width: 110px;
  text-align: center;
  height: 12pt;
}
.navDropdownTitle {
  cursor: pointer;
  display: flex;
  column-gap: 5px;
  justify-content: center;
  align-items: center;
}
.navDropdownTitle:hover {
  opacity: 0.8;
}
.navDropdownMenu {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: center;

  padding-top: 25px;
  z-index: 5;
}
.navDropdownItem {
  font-size: 10pt;
  width: 180px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--white);
  border-radius: 5px;
  background-color: var(--red);
}
.navDropdownItem:hover {
  opacity: 0.8;
}

/** Home Page **/
#landing-page {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
}
#landing-page > div {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  text-align: center;
}

/* Hide the Dropdown */
.hidden {
  display: none;
}
