/* Global Styles */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 10px;
}
body {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Nav Bar Styles */

.nav-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 73px;
  display: flex;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 5;
}
.nav-bar .nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}
.nav-bar .logo {
  width: 6.5rem;
  padding: 0;
}
.nav-bar .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.nav-links div a {
  text-decoration: none;
  color: white;
  font-size: 1.4rem;
  padding: 1.5rem;
  font-weight: 300;
}
.nav-links div a:hover {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.7rem;
}
.nav-links div a.active {
  font-weight: 500;
}
.collapse {
  animation: collapse 0.5s ease forwards;
}
.open {
  animation: open 0.5s ease forwards;
}
@keyframes collapse {
  from {
    opacity: 1;
    top: 0;
  }
  to {
    opacity: 0;
    top: 73px;
  }
}
@keyframes open {
  from {
    opacity: 0;
    top: 73px;
  }
  to {
    opacity: 1;
    top: 0;
  }
}

/* Front Page Styles */

#front::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  animation-name: overlay;
  animation-duration: 4s;
  animation-timing-function: ease-in;
}
link[rel="icon"] {
  border-radius: 50%;
}
@keyframes overlay {
  from {
    background-color: rgba(0, 0, 0, 1);
  }
  to {
    background-color: rgba(0, 0, 0, 0.4);
  }
}
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  width: 100vw;
}
.coming-soon {
  user-select: none;
}
.coming-soon h2 {
  font-size: 2.5rem;
  user-select: none;
}
.front-title {
  font-size: 3.2rem;
  font-weight: 300;
  padding: 3rem;
  margin-top: 1rem;
}
.logo {
  width: 35rem;
  margin: 0;
}

/* Photo Page Styles */

.pics-body,
.about-body {
  background-color: rgb(40, 40, 40);
}
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  top: 10rem;
  justify-content: center;
  align-items: center;
}
div.title {
  position: relative;
  top: 8rem;
  font-size: 5.5rem;
}
div.title h1 {
  font-size: 3rem;
  font-weight: 300;
  padding: 1.5rem;
}
.event-pic {
  width: 80%;
  margin: 1.5rem auto;
  border-radius: 1.2rem;
}
.main-content picture {
  display: flex;
  justify-self: center;
  align-self: center;
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}
#myBtn:hover {
  background-color: #555;
}
/* About Page Styles */
.about-main {
  height: 100vh;
  width: 90vw;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  position: relative;
  top: 7rem;
}
.about-title {
  font-size: 3rem;
  font-weight: 300;
  word-spacing: 3.5rem;
  text-align: center;
  position: relative;
  top: 0.5rem;
  margin-bottom: 3rem;
}
.selfie::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  width: 100%;
  height: 80%;
  z-index: -1;
  transform: translateY(-50%);
  border-bottom-left-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.selfie {
  display: flex;
  align-self: center;
  margin-bottom: 2rem;
}
.selfie img {
  width: 35rem;
}
.sub-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sub-block .who-title {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.8rem;
  text-align: center;
}
.sub-block .sub-title {
  font-size: 1.7rem;
  padding: 1rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.about-text {
  text-align: center;
  width: 90%;
}
.about-text p {
  font-size: 2rem;
  margin-bottom: 2rem;
  line-height: 3rem;
  font-weight: 200;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.social-links a {
  position: relative;
}
.social-links a img {
  width: 5rem;
  margin: 2rem;
}
#full-pic {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  visibility: hidden;
  z-index: 33;
}
.full-pic {
  max-width: 90%;
  max-height: 90%;
  /* padding: 0.75rem; */
}
.prev,
.next {
  width: 3rem;
  user-select: none;
}
.prev {
  margin-left: 1rem;
  position: absolute;
  top: 50%;
  left: 0;
}
.next {
  margin-right: 3rem;
  position: absolute;
  top: 50%;
  right: 0;
}

@media only screen and (max-width: 950px) {
  .full-pic {
    max-width: 80%;
    max-height: 80%;
  }
}

@media only screen and (max-width: 600px) {
  .main-content {
    display: grid;
    grid-template-columns: 1fr;
  }
  .full-pic {
    max-width: 75%;
    max-height: 75%;
  }
}

@media only screen and (max-width: 500px) {
  body > div.about-main > h3 {
    font-size: 2rem;
    word-spacing: 2rem;
  }
  .selfie img {
    width: 18rem;
  }
  .selfie::after {
    height: 50%;
  }
  .sub-block .who-title {
    font-size: 2rem;
    font-weight: 400;
  }
  .sub-block .sub-title {
    font-size: 1.2rem;
  }
  .about-text p {
    font-size: 1.5rem;
    line-height: 2.7rem;
    font-weight: 300;
  }
  .social-links a img {
    width: 4rem;
    margin: 1.5rem;
  }
  .full-pic {
    max-width: 70%;
    max-height: 70%;
  }
  .next {
    margin-right: 1rem;
  }
}

@media only screen and (max-width: 300px) {
  .full-pic {
    max-width: 60%;
    max-height: 60%;
  }
  .next {
    margin-right: 1rem;
  }
}
