* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sucrosebold;
  background-color: #5d04d9;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, max-content) 30px repeat(2, max-content);
  grid-template-areas:
    nav
    header
    bar
    main
    footer;
  height: 100%;
}

header {
  grid-area: 2/ 1 / 2 / 1;
  display: flex;
}

main {
  grid-area: 4 / 1 / 4 / -1;
  margin: 0;
  padding: 0;
  margin-bottom: 10%;
  height: 100%;
}

h1 {
  color: white;
  font-size: clamp(2em, 4vw, 4vw);
  margin: 0;
}

h2 {
  font-size: 2em;
  padding: 0;
  margin: 0;
}

h3 {
  color: white;
  font-size: 1.4em;
  padding: 0;
  margin: 0;
}

p {
  color: white;
  font-size: 1.2em;
  padding: 0;
  margin: 0;
}

.green-bg {
  background-color: #66d91a;
  border-radius: 20px;
  color: white;
}

.bar {
  grid-area: 3 / 1 / 3 / -1;
  width: 96%;
  height: 30px;
  background-color: #66d91a;
  border-radius: 0 15px 15px 0;
  margin-right: 4%;
}

a {
  text-decoration: none;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!NAV */
nav {
  /* border: 2px solid red; */
  display: flex;
  margin: 0 12%;
  grid-area: 1 / 1 / 1 / -1;
  justify-content: space-between;
  z-index: 1;
}

.secondary-logo {
  width: 100px;
  margin-top: 10px;
}

nav ul {
  width: 560px;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 2px solid red; */
}

nav li a {
  color: #66d91a;
  padding: 5px 20px;
  font-size: 1.5em;
}
nav li a:hover {
  color: #d10fd9;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!INDEX */
.index main {
  display: grid;
  grid-template-columns: 5% repeat(5, 1fr) 5%;
  grid-template-rows: 30px repeat(8, 0.2fr);
}

.index header {
  grid-area: 1 / 1 / 3 / -1;
  height: 100vh;
  display: grid;
  grid-template-rows: 1fr 30%;
}
.logo {
  grid-area: 2 / 1 / 3 / -1;
  padding: 1%;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}
.logo svg {
  overflow: visible;
  width: 55%;
  min-width: 460px;
  fill: #66d91a;
}

#hero-image {
  grid-area: 1 / 1 / -1 / -1;
  background-image: url(images/hero_image.png);
  background-size: auto 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  overflow: visible;
  transition: 0.5s;
}

#announcements {
  grid-area: 1 / 1 / 1 / -1;
  background-color: #d10fd9;
  height: 60%;
  align-self: self-end;
  margin-left: 10%;
  padding-left: 35%;
  padding-right: 5%;
  overflow: hidden;
  align-items: center;
  display: flex;
}

#album {
  grid-area: 3 / 2 / 6 / 5;
  width: 70%;
  justify-self: center;
  transition: 0.5s;
  min-width: 400px;
}

#album:hover {
  transform: scale(1.5);
}

#headphones {
  margin-top: 3%;
  grid-area: 2 / 2 / 5 / 7;
  width: 80%;
  justify-self: center;
  /* border: 2px solid red; */
}

#machine {
  grid-area: 5 / 2 / 9 / 7;
  /* border: 2px solid red; */
  /* padding: 15%; */
  justify-self: center;
  width: 45vw;
  max-width: 1000px;
}

#volume {
  grid-area: 7 / 2 / 8 / 7;
  justify-self: center;
  align-self: self-end;
}
#instructions {
  grid-area: 7 / 2 / 8 / 7;
  align-self: flex-end;
  justify-self: center;
  color: white;
}

#uhh {
  grid-area: 8 / 1 / 8 / -1;
  text-align: center;
  /* border: 2px dashed grey; */
  margin-left: 5%;
  padding-right: 5%;
  border-radius: 20px 0 0 20px;
}

#review-grid {
  grid-area: 9 / 1 / 9 / -1;
  display: grid;
  /* border: 2px dashed grey; */
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 300px;
  gap: 70px;
}

.review {
  background-color: #d10fd9;
  height: 100%;
  display: flex;
  padding: 5vw;
  align-items: center;
}

#review-1 {
  grid-area: 9 / 1 / 10 / 4;
  border-radius: 0 20px 20px 0;
  margin-right: 15%;
}

#review-2 {
  grid-area: 9 / 4 / 10 / 8;
  text-align: right;
  border-radius: 20px 0 0 20px;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!PAGES */
.page main {
  display: flex;
  justify-content: center;
}
.page header {
  height: 200px;
  justify-content: center;
  align-items: center;
  padding: 2% 10%;
}
.page header img {
  width: 100%;
  max-height: 100px;
}

/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!FOOTER */
footer {
  grid-area: 5 / 1 / -1 / -1;
  display: flex;
  margin: 5% 0;
  justify-content: space-evenly;
  flex-wrap: wrap;
  color: #66d91a;
}

.footer-left {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, max-content);
  width: 50%;
  row-gap: 5vh;
  margin: 3%;
}

.footer-text {
  grid-row: 1;
  align-self: center;
}

.rat {
  width: 20%;
  align-self: center;
}

.socials {
  grid-row: 2;
}

.socials ul {
  list-style-type: none;
  display: flex;
  gap: 5%;
  padding: 0;
  margin: 0;
}
.socials li {
  width: 100%;
  max-width: 70px;
}
.socials a {
  display: block;
}

.creds {
  grid-row: 3;
  font-size: 0.8em;
}

.rat-attack:hover {
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  0% {
    rotate: 0deg;
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    rotate: 360deg;
  }
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!TOUR PAGE */
.tour-container {
  /* grid-area: 2 / 2 / -1 / 7; */
  line-height: 0.8;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 1300px;
  padding: 5%;
  align-self: center;
}

.tour-event {
  display: flex;
  width: 100%;
  flex-direction: row;
  color: #66d91a;
  gap: 12%;
}

.tour-desc {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-template-rows: 1fr 1.5fr;
  width: 100%;
}

.tour-month {
  grid-area: 1 / 1 / 1 / 1;
  font-size: 2.3em;
  text-align: center;
  align-self: flex-end;
}
.tour-day {
  grid-area: 2 / 1 /2 /1;
  font-size: 4em;
  margin-bottom: -5px;
  text-align: center;
}
.tour-venue {
  grid-area: 1 / 2 / 1 /2;
  align-self: self-end;
  font-size: 1.8em;
  margin-left: 6px;
  margin-bottom: 3px;
}

.box {
  display: flex;
  grid-area: 2 / 2;
  align-items: center;
  padding: 6px;
  width: 100%;
}
.tour-location {
  font-size: 1.8em;
}

.gettix {
  width: 200px;
  align-self: self-end;
  font-size: 1.5em;
  color: white;
  border-radius: 20px;
  background-color: #d10fd9;
  text-align: center;
  padding: 12px;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!ABOUT PAGE */

#about-grid {
  display: grid;
  grid-template-columns: 5% 1fr 1fr 0.75fr 0.75fr 5%;
  grid-template-rows: 0.5fr 0.5fr 0fr 1fr;
  width: 100%;
}

#pink-stripe {
  grid-area: 2 /1 / 2 / 5;
  background-color: #d10fd9;
  margin-bottom: 1px;
}

#summary {
  grid-area: 4 / 2 / 5 / 6;
  margin: auto;
  padding: 3%;
  background-color: #d10fd9;
  border-radius: 20px;
}

#the-og-img {
  grid-area: 1/ 2 / 1 /2;
  width: 80%;
  align-self: end;
}

#the-og-name {
  grid-area: 1/ 2/ 1 /2;
}

#the-og-bio {
  grid-area: 2/ 2/ 3 /2;
}

#squiggy-img {
  grid-area: 1/ 3/ 1 /4;
  width: 100%;
  align-self: end;
}
#squiggy-name {
  grid-area: 1/ 3/ 1 /4;
}

#squiggy-bio {
  grid-area: 2/ 3/ 3 /4;
}

#together {
  grid-area: 1 / 4 / 3 / 6;
  width: 100%;
  align-self: end;
  justify-self: center;
  max-width: 740px;
}

.member-img {
  justify-self: center;
}
.bio {
  padding: 30px 15%;
  color: white;
}

.nametag {
  align-self: end;
  /* width: 240px; */
  text-align: center;
  justify-self: center;
  padding: 10px 20px;
  margin-bottom: -20px;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!STORE PAGE */
.store-flex {
  grid-area: 2 / 2 / -1 / 3;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 5% 10%;
}
.store-item {
  /* border: 2px dashed grey; */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 70px;
  padding: 2%;
  max-width: 500px;
}

.label {
  grid-area: 2 / 1 / 2 /3;
  display: flex;
  flex-direction: column;
  padding: 0 10%;
}

.store-img-bg {
  grid-area: 1 / 1 / 1 /1;
}

.store-item img {
  grid-area: 1 / 1 / 1 /1;
  width: 100%;
  align-self: center;
}

@media only screen and (max-width: 1100px) {
  #about-grid {
    grid-template-rows: 0.5fr 0.5fr 1fr 1fr;
    grid-template-columns: 0 1fr 1fr 0fr 0fr 0;
  }

  #together {
    grid-area: 3 / 1 / 4 / 6;
    width: 100%;
    align-self: center;
    justify-self: center;
    max-width: 600px;
  }
}

@media only screen and (max-width: 860px) {
  .footer-left {
    width: 100%;
    text-align: center;
    margin-bottom: 5%;
  }

  #hero-image {
    margin-top: 40%;
  }
  .socials ul {
    justify-content: space-evenly;
  }
  nav {
    flex-wrap: wrap;
    margin: 0%;
    justify-content: center;
  }
  nav ul {
    width: 100%;
    margin-top: 20px;
  }
  .secondary-logo {
    margin: 0%;
    padding-top: 3%;
  }
  .tour-container {
    grid-area: 2 / 1 / -1 / -1;
  }

  .tour-event {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  #album {
    grid-area: 3 / 2 / 5 / 7;
    align-self: center;
  }
}
