/* ======================
Global
====================== */
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: #000;
}

.theme-wrapper {
  width: 100vw;
}

/* ======================
Typography
====================== */
.font-poppins {
  font-family: "Poppins", sans-serif;
}

.font-roboto {
  font-family: "Roboto", sans-serif;
}
.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

/* ======================
Helpers
====================== */
.is-flex {
  display: flex;
}

.hidden {
  display: none;
}

.expand {
    max-height: 300px !important;
}

/* ======================
Navigation
====================== */
header {
  justify-content: space-evenly;
  border-bottom: 1px solid black;
  padding-bottom: 1em;
  padding-top: 1em;
  flex-direction: column;
}

.menu {
  flex-direction: column;
  text-align: center;
  line-height: 4;
}

.logo {
  display: block;
  color: #000;
  align-self: center;
}

.logo img {
  width: 75px;
  padding: 10px;
}

.menu {
  flex-basis: 50%;
  justify-content: space-between;
  margin: 5vw 5vw 0 5vw;
}

.menu-item {
  border-bottom: 2px solid transparent;
  padding-bottom: 0.25em;
  transition: 1s ease;
  font-size: 0.75em;
}

.menu-item:hover {
  border-bottom: 2px solid black;
}

/* ======================
Hamburger
====================== */

.gn {
    transition: max-height 0.75s ease;
    max-height: 0;
}

.hamburger{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    margin: 1em;
    overflow: hidden;
}
.hamburger:hover{
    cursor: pointer;
}

.hamburger .icon-wrap {
    position: relative:
    height: 100%;
    width: 100%;
}
.hamburger .icon-wrap > div {
    position: absolute;
    height: 0.25em;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
}

.hamburger::before,
.hamburger::after,
.icon-wrap > div {
    transition: 0.5s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    height: 0.25em;
    width: 100%;
    right: 0;
    background: #000;
}

.hamburger::before {
    top: 0;
}
.hamburger::after {
    bottom: 0;
}

.hamburger.toggled .icon-wrap > div {
    width: 0;
}

.hamburger.toggled::before{
    transform-origin: center;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.hamburger.toggled::after{
    transform-origin: center !important;
    bottom: 50%;
    transform: translateY(50%) rotate(45deg) !important;
}

/* ======================
Section One
====================== */
.hero {
  position: relative;
  background-image: url(./images/galaxy.jpeg);
  background-size: cover;
  background-position: center;
  height: 80vw;
}

.hero h1 {
  position: absolute;
  font-family: "Poppins", sans-serif;
  font-size: 10vw;
  margin-left: 0.5em;
  color: #fff;
  text-align: left;
  text-transform: capitalize;
  bottom: 0;
  margin-bottom: 20px;
}

.hero img {
  width: 30%;
  right: 6vw;
  top: 6vw;
  position: absolute;
}

/* ======================
Cta
====================== */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 4em 0 3em 0;
}
.cta a {
  display: block;
  text-align: center;
  color: #000;
  padding: 1em 1.5em;
  border: 1px solid #000;
  border-radius: 5px;
  width: 45vw;
  margin: 1em 0;
  font-size: 0.75em;
}

.cta a:hover {
  color: #fff;
  background: rgb(62, 61, 61);
  transition: 1s ease;
}
/* ======================
About
====================== */
.about {
  margin-top: 4em;
  text-align: center;
}
.about img {
  width: 42vw;
}

.about p {
  width: 80vw;
  line-height: 1.5;
  margin: auto;
}

.about h2 {
  font-size: 2em;
  margin: 1em auto;
}

/* ======================
Tickets
====================== */
.tix-price {
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  border: 3px solid #000;
  border-radius: 50%;
  transition: 1s ease;
  margin: 2em 0 2em 0;
  width: 50vw;
  height: 50vw;
}

.tix-price:hover {
  background: rgb(213, 213, 213);
}

.tickets {
  margin-top: 5em;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.tickets h2 {
  font-size: 2em;
  text-align: center;
  margin: 1em auto;
}
.tickets img {
  width: 25%;
  margin: auto;
}
.tix-price img {
  margin: 0;
  width: 50%;
}
.tix-price h4 {
  font-size: 1em;
  margin-bottom: -10%;
}
.tix-price p {
  font-size: 0.5em;
}
.tix-price:first-of-type p {
  margin-top: -10%;
}
/* ======================
Reviews and Testimonials
====================== */

.review {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 1em;
}

.review-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 80%;
}

.review-wrap > blockquote {
  margin-inline: 1em;
  margin-top: 1em;
}

.review-wrap > cite {
  margin-inline: auto 3em;
}

.testimonial-icon {
  display: block;
  margin: auto;
  width: 45%;
  max-width: 300px;
}
.testimonials h2 {
  font-size: 2em;
  text-align: center;
}


/* ======================
Footer
====================== */
.socials {
  max-width: 100vw;
  justify-content: space-evenly;
  margin-bottom: 1em;
  padding-top: 1em;
  border-top: 1px solid black;
}

.social-link {
  display: block;
  width: 10%;
}

footer {
  padding: 1em;
}

footer p {
  text-align: center;
}

/* ======================
=========================
=========================
Queries
=======================
======================
====================== */

@media (min-width: 576px) {
  .menu {
    margin-top: 3vw;
  }
}

@media (min-width: 768px) {
  .gn {
    flex-direction: row;
  }
  .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .hero {
    height: 60vw;
  }
  .tix-price {
    padding: 1.5em;
    width: 40vw;
    height: 40vw;
    max-width: 300px;
    max-height: 300px;
  }
  .tix-price h4 {
    font-size: 2em;
    margin-bottom: 0;
  }
  .tix-price p {
    font-size: 1em;
    margin-top: 0;
  }
  .cta {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .cta a {
    font-size: 1em;
  }
  .about h2 {
    font-size: 3em;
  }
  .about p {
    font-size: 1.5em;
  }
  .tickets {
    padding-top: 8em;
  }
  .tix-links {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
  }
  .testimonials {
    padding-top: 8em;
  }
  .review-wrap > blockquote {
    margin-top: 0;
  }
  .review {
    display: flex;
  }
  .review-wrap {
    flex-direction: row;
  }
  .review img,
  .tickets img {
    width: 200px;
  }
  .social-link{
    width: 5%;
    max-width: 50px;
  }
}

@media (min-width: 992px) {
  .hero {
    height: 42vw;
  }
  .hero img {
    width: 20%;
  }
  .hero h1 {
    font-size: 7vw;
  }
  .hamburger{
    display: none;
  }
  header{
    flex-direction: row;
  }
  .logo{
    margin-left: 1em;
  }
  .gn {
    max-height: fit-content;
    flex: 1;
    margin-left: 20em;
  }
  .menu {
    flex-direction: row;
    line-height: 1;
  }
}

@media (min-width: 1200px) {
  .menu {
    font-size: 1.5em;
  }
  .cta a {
    font-size: 1em;
  }
  .hero {
    height: 32vw;
  }
  .cta {
    margin: 2em 0 3em 0;
  }
  .hero h1 {
    margin-bottom: 10px;
  }
  .heading-wrap{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
  }
  .testimonial-icon {
    margin: 0;
    transform: rotate(30deg);
  }
  .tix-links {
    margin-top: 4em;
  }
  .tix-pic {
    transform: rotate(20deg)
  }
  .moon-pic {
    width: 200px !important;
  }
}
