@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
}

a {
  color: white;
  text-decoration: none;
}

main {
  height: 100%;
  width: 100%;
  display: flex;
  color: white;
}

main #hero a {
  background-color: #FFC107;
  padding: 0.5rem 1rem;
  display: block;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  transition: .3s filter;
}

main #hero a:hover {
  filter: brightness(60%);
}

@media (max-width: 660px) {
  main div.sidebar {
    padding: 2rem 1.25rem;
  }
}

/* INDEX */
main#index {
  justify-content: end;
  background: url("../images/bg.png") center;
  background-size: cover;
}

main#index .sidebar {
  max-width: 520px;
  justify-content: center;
  background: transparent;
  position: static;
}

/* SIDEBAR */
.sidebar {
  background: black;
  min-height: 100vh;
  height: 100%;
  max-width: 400px;
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: fixed;
}

.sidebar h1 {
  font-size: 5rem;
  line-height: 5rem;
}

.sidebar p {
  font-size: 1.3rem;
  line-height: 2rem;
}

/* SECTION */
section {
  width: 100%;
  background: #141414;
  padding: 3.5rem 1.7rem 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100%;
  gap: 1rem;
  margin-left: 400px;
}

section h2 {
  padding-bottom: 2px;
  border-bottom: 3px #FFC107 solid;
}

section #content {
  flex: 1;
}

section .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #6C757D;
}

section .nav .left {
  display: flex;
  align-items: center;
  gap: 3rem;
}

section .nav .atual {
  color: #0D6EFD;
  text-decoration: underline;
}

section .nav .right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* SUMMARY */ 
section .summary {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
}

section .summary .summary-item {
  display: flex;
  flex-direction: column;
  max-width: 180px;
  width: 100%;
}

section .summary .summary-item img {
  border-radius: 10px 10px 0px 0px;
}

section .summary .summary-item span {
  background-color: #FFC107;
  width: 100%;
  border-radius: 0px 0px 5px 5px;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
  padding: .3rem 0;
}

/* BIRDS */
main#birds #content {
  display: flex;
  flex-wrap: wrap;
}

section .birds {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 400px;
}

section .bird-item ul {
  list-style-position: inside;
  margin-left: 1rem;
} 

/* PARROT */
main#parrot #content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

main#parrot .sidebar p {
  font-size: 1.1rem;
  line-height: 1.8rem;
}

main#parrot .video {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 1rem;
}

main#parrot .video iframe {
  width: 100%;
}

main#parrot .recommendation {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

main#parrot .recommendation div {
  display: flex;
  gap: 1rem;
}

main#parrot .recommendation div img {
  border-radius: 10px;
  max-width: 150px;
  width: 100%;
}