* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --artPrimary: #b782a3;
  --artSecondary: #707f77;
  --corpPrimary: #375445;
  --corpHighlight: #7f7f7f;
  --corpSecondary: #570337;
}

::-webkit-scrollbar {
  width: 10px;
  height: 2px;
}

::-webkit-scrollbar-track {
  background: var(--corpPrimary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--corpSecondary);
  border-radius: 10px;
  transition: background-color 0.3s ease; /* Smooth transition for scrollbar */
}

.mainLandingFlex {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
}

body {
  background-color: var(--corpPrimary);
}

.landingHeader {
  display: flex;
  flex-direction: row;
  padding: 0 10em;
  justify-content: space-between;
  width: 100%;
  background-color: white;
}

.socials {
  margin: 6em 0;
}

.logoImg {
  height: 200px;
  width: 300px;
  order: 1;
  transition: width 0.3s ease, height 0.3s ease; /* Smooth logo resizing */
}

.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 (max-width: 1024px) {
  .landingHeader {
    flex-direction: column;
    align-items: center;
    padding: 1em;
  }

  .socials {
    margin: 3em 0;
  }

  .navItems {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navBar {
    margin: 2rem 0;
  }
  .logoImg {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .socials {
    margin: 1em 0;
  }

  .navItems {
    flex-direction: column;
    height: auto;
    gap: 1em;
    width: 15em;
  }
  .navItem {
    font-size: 1.1em;
  }
  .navLink {
    padding: 10px 0;
  }
}
