* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --artPrimary: #b782a3;
  --artSecondary: #707f77;
  --corpPrimary: #375445;
  --corpHighlight: #7f7f7f;
  --corpSecondary: #570337;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 5px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background: var(--artPrimary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--corpPrimary);
  border-radius: 10px;
}

/* Main Flex Layout */
.mainLandingFlex {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
}

body {
  background-color: var(--artSecondary);
}

/* Landing Header */
.landingHeader {
  display: flex;
  flex-direction: row;
  padding: 0 10em;
  justify-content: space-between;
  width: 100%;
  background: var(--artPrimary);
  border-radius: 40% 0 0% 50%;
}

.socials {
  margin: 6em 0;
}

.logoImg {
  height: 150px;
  width: 500px;
  order: 1;
  margin: 1.9em 5em;
}

.navBar {
  font-family: 'Raleway', sans-serif;
  font-optical-sizing: auto;
  font-weight: 450;
  font-style: normal;
  order: 2;
  margin: 4rem 0;
}

.navItems {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  width: 25em;
  height: 3.25em;
  background-color: var(--corpHighlight);
  border-radius: 15px;
  justify-content: space-around; /* Distribute space evenly */
}

.navLink {
  margin: 0.75em auto;
  text-decoration: none;
  color: white;
  padding: 5px;
}

.navLink:hover {
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 5px;
}

.navItem {
  font-size: 1.25em;
}

/* Media Queries */

/* Laptop (Max Width: 1440px) */
@media (max-width: 1440px) {
  .landingHeader {
    padding: 0 8em;
    border-radius: 35% 0 0% 40%;
  }
  .logoImg {
    width: 400px;
    height: 130px;
    margin: 1.5em 4em;
  }
}

/* Laptop (Max Width: 1024px) */
@media (max-width: 1024px) {
  .landingHeader {
    padding: 0 6em;
    border-radius: 30% 0 0% 35%;
  }
  .logoImg {
    width: 350px;
    height: 110px;
    margin: 1.2em 3em;
  }
  .navBar {
    margin: 3rem 0;
  }
  .navItems {
    width: 18em;
    height: 2.5em;
  }
  .navItem {
    font-size: 1.1em;
  }
}

/* Tablet (Max Width: 768px) */
@media (max-width: 768px) {
  .mainLandingFlex {
    flex-direction: column;
    height: auto;
  }

  .socials {
    margin: 3em 0;
  }

  .landingHeader {
    flex-direction: column;
    align-items: center;
    padding: 1em;
    border-radius: 0;
  }
  .logoImg {
    width: 300px;
    height: 90px;
    margin: 1em;
  }
  .navItems {
    flex-direction: column;
    width: 15em;
    height: auto;
    align-items: center;
    padding: 1em 0;
  }
  .navItem {
    font-size: 1em;
    text-align: center;
  }
}

/* Mobile (Max Width: 480px) */
@media (max-width: 480px) {
  .landingHeader {
    padding: 0.5em;
    text-align: center;
  }

  .socials {
    margin: 2em 0;
  }

  .logoImg {
    width: 250px;
    height: 75px;
    margin: 0.5em;
  }
  .navItems {
    width: 15em;
    flex-direction: column;
    height: auto;
  }
  .navItem {
    font-size: 0.9em;
    padding: 5px 0;
  }
  .navLink {
    padding-left: 0;
  }
}
