*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --main-white: #efefef;
  --main-black: #161616;
  --accent-red: #ff0000;
  --accent-dark-gray: #292929;
  --hover-red: rgba(255, 0, 0, 0.7);
}

html {
  position: absolute;
  font-family: "Lato", sans-serif;
  color: var(--main-black);
  background-color: var(--main-white);
  height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

header {
  max-height: fit-content;
  border-bottom: var(--accent-red) solid 2px;
  padding-bottom: 0.5rem;
  width: 100%;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#banner-img-container > a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--main-black);
}

#banner-img-container > a > img {
  height: 180px;
}
#banner-text {
  font-size: 3rem;
  color: var(--accent-red);
  font-weight: 400;
  /* font-family: "Parisienne", cursive; */
  font-family: "Rock Salt", cursive;
}

#banner-nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* margin-right: 20px; */
  padding-right: 20px;
}

#banner-nav-container > p {
  padding: 0 10px;
  font-size: 1.2rem;
}

#banner-nav-container > p > a {
  color: #fff;
  text-decoration: none;
  background-color: var(--accent-red);
  padding: 5px 12px;
  border-radius: 15px;
}
#banner-nav-container > p > a:hover {
  background-color: var(--hover-red);
  cursor: pointer;
}

#banner-nav-container > p > a.active {
  background-color: var(--main-white);
  color: var(--accent-red);
  border: var(--accent-red) solid 1px;
}
#banner-nav-container > p > a.active:hover {
  background-color: var(--main-white);
  color: var(--accent-red);
  border: var(--accent-red) solid 1px;
}

.active {
}

#home-pic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
}

#home-pic-container > img {
  width: 75%;
  height: auto;
  padding: 0.8rem 0;
}

footer {
  position: relative;
  bottom: 0;
  width: 100%;
  background-color: var(--main-white);
  padding-bottom: 20px;
  text-align: center;
  border-top: var(--accent-red) solid 2px;
  padding: 0.8rem 0;
}

#socials {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 0.8rem;
  margin-left: 1rem;
}

.icon {
  height: 30px;
}

.icon:hover {
  cursor: pointer;
}

#bio {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "pic-1 text-1" "text-2 pic-2" "pic-3 text-3";
  gap: 0.8rem;
  padding: 0.8rem 0;
  justify-items: center;
  align-items: center;
}
.pic-1 {
  grid-area: pic-1;
}
.text-1 {
  grid-area: text-1;
}
.pic-2 {
  grid-area: pic-2;
}
.text-2 {
  grid-area: text-2;
}
.pic-3 {
  grid-area: pic-3;
}
.text-3 {
  grid-area: text-3;
}
.bio-pic {
  height: 300px;
}

.bio-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

#contact-form-container > form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding: 0.8rem 0;
}

#thank-you-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  padding: 0.8rem 0;
  gap: 0.8rem;
}

#thank-you-container > img {
  width: 300px;
}

#shows {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding: 0.8rem 0;
  gap: 0.8rem;
}

.show {
  width: 100%;
  display: grid;
  grid-template-areas:
    "pic date"
    "pic location"
    "pic link";
  gap: 0.8rem;
  padding: 0.8rem 0;
  justify-items: center;
  align-items: center;
  border-bottom: var(--accent-red) solid 2px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.show-date {
  grid-area: date;
  justify-self: start;
  font-size: larger;
  font-weight: bold;
}
.show-location {
  grid-area: location;
  justify-self: start;
}

.show-link {
  grid-area: link;
  justify-self: start;
}

.show-image {
  grid-area: pic;
  height: 150px;
}

#pics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem 0;
  justify-items: center;
  align-items: center;
}

#pics > img {
  width: 80%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 650px) {
  nav {
    width: 100%;
    flex-direction: column;
    gap: 0.8rem;
  }
  #banner-text {
    font-size: 2rem;
  }
  #bio {
    display: flex;
    flex-direction: column;
  }
  #pics {
    grid-template-columns: 1fr;
  }
}
