/* ---GENERAL--- */

* {
  font-family: "Outfit", sans-serif;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: right;
  background-image: linear-gradient(to right, black, #146c94);
}

a {
  text-decoration: none;
}

/* ---TOP NAV--- */

#logo {
  font-size: 24px;
  font-weight: 700;
  color: black;
}

#thinFont {
  font-weight: 300;
}

header {
  background-color: #f6f1f1;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
}

ul {
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}

li {
  list-style: none;
}

.navbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10em 0 10em;
}

.nav-menu {
  font-weight: 700;
  font-size: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.nav-menu a {
  color: #19a7ce;
  transition: 0.7s ease;
}

.nav-menu a:hover {
  color: #146c94;
}

/*-----HAMBURGER-----*/
.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #19a7ce;
}

.youAreHere {
  color: #146c94;
}

/* ---BODY--- */

h1 {
  margin: 0;
  padding: 0;
  font-weight: 900;
  color: #19a7ce;
  font-size: 30px;
}

h2 {
  margin: 0;
  padding: 40px 0 0 0;
  font-weight: 900;
  color: #19a7ce;
  font-size: 30px;
}

/* ul li {
  padding-left: 2rem;
  background-image: url(star.svg);
  background-position: 0 0;
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
} */

.genre {
  font-weight: 900;
  margin-top: 0;
}

.slug {
  font-weight: 900;
}

.blurb {
  margin: 0 0 30px 0;
}

#portrait {
  max-width: 100%;
  padding-top: 140px;
}

/* -----BUTTON----- */
.amzButton {
  background-color: #19a7ce;
  border-radius: 28px;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: "Outfit";
  font-size: 16px;
  font-weight: 600;
  width: 135px;
  padding: 15px 42px;
  text-decoration: none;
  text-align: center;
}
.amzButton:hover {
  background-color: #146b94;
}
.amzButton:active {
  position: relative;
  top: 1px;
}

/*-----CONTAINER-----*/

.container {
  display: flex;
  justify-content: center;
  /* height: 100vh; */
}

#blockOne {
  display: flex;
  justify-content: center;
}

/* -----TXT LEFT IMG RIGHT----- */

#textLeft {
  display: flex;
  flex-direction: column;
  width: 434px;
  /* height: 546px; */
  padding: 80px 50px 0px 0px;
}

/* ul.a {
  list-style-type: square;
  color: green;
} */

#textLeft p {
  color: white;
  margin: 0;
  padding: 20px 0 0 0;
}

#imgRight {
  display: flex;
  flex-direction: column;
  /* height: 675px; */
}

/* -----TEXT RIGHT IMG LEFT------ */

#textRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 80px 0px 0px 0px;
  text-align: right;
}

#textRight p {
  color: white;
  width: 434px;
}
#lineHeightAdjust {
  line-height: 1em;
  padding: 0 0 5px 0;
}

#imgLeft {
  display: flex;
  align-items: center;
  height: 541px;
}

/* ---LISTS--- */

.visibleList li {
  margin-left: 1rem;
  color: white;
  padding: 20px 0 0 0;
  list-style: disc;
  list-style-position: outside;
  padding-left: 1rem;
}

#bottomListPadding {
  padding: 0 0 60px 0;
}

/* ---FOOTER--- */

.footer {
  padding: 0 10em 0 10em;
  height: 4em;
  background-color: #f6f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

#copyright {
  color: #19a7ce;
  font-size: 8px;
  padding: 8px 0 0 0;
}

#bottomNavMiddle {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

#bottomNavMiddle a {
  color: #19a7ce;
  transition: 0.7s ease;
}

#bottomNavMiddle a:hover {
  color: #146c94;
}

#socialMediaIcons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#socialMediaIconsWhite {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#socialMediaIconsWhite li {
  display: flex;
  padding: 10px 0 0 0;
}

.socTxt {
  color: white;
  padding: 0 0 0 10px;
}
/* @media (max-width: 920px) {
  .container {
    padding: 0 2em 0 2em;
  }

  .container {
    padding: 4em 2em 7em 2em;
    height: 1000px;
  }

  #blockOne {
    display: flex;
  }

  #logo {
    font-size: 20px;
    line-height: 1em;
  }

  .topNav {
    padding: 0 1.5em 0 1.5em;
    align-items: center;
  }

  #topNavRight {
    font-weight: 700;
    font-size: 18px;
    margin-left: auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
  }

  .footer {
    padding: 1em 1em 1em 1em;
    height: 6em;
    flex-direction: column-reverse;
  }

  #bottomNavMiddle {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    display: flex;
    gap: 20px;
  }

  #portrait {
    max-width: 100%;
    padding: 0;
  }

  #textLeft {
    width: 300px;
    padding: 0 4em 0 0;
  }
} */

@media (max-width: 871px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #f6f1f1;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 1;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .navbar {
    padding: 0 2em 0 2em;
  }

  .container {
    padding: 0 2em 0 2em;
  }

  .container {
    padding: 4em 2em 4em 2em;
    /* height: 1000px; */
  }

  #blockOne {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }

  #logo {
    font-size: 20px;
    line-height: 1em;
  }

  .footer {
    padding: 0.5em 0.5em 0.5em 0.5em;
    height: 3em;
    flex-direction: column-reverse;
    justify-content: center;
  }

  #bottomNavMiddle {
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    display: flex;
    gap: 20px;
  }

  #portrait {
    max-width: 100%;
    padding: 0;
  }

  #textLeft {
    width: 300px;
    padding: 0;
  }
}
