@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

*,
::after,
::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  color: white;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}
h1 {
  font-size: 75px;
  text-transform: capitalize;
}
h2 {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 35px;
}
h3 {
  font-size: 30px;
  text-transform: capitalize;
}
h4 {
  font-size: 25px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
}

/* Background Image */
.bg-img {
  background-image: url("/images/first-home-img.JPG");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: block;
  position: relative;
}

/* NAVBAR */
.navbar {
  height: 5rem;
  width: 100vw;
  max-width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: none;
  z-index: 3;
}
/* white navbar on scroll */
.navbar-scroll {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s linear;
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  /* border: solid 1px blue; */
}
.nav {
  list-style-type: none;
  display: flex;
  background: transparent;
  gap: 20px;
  max-width: 100%;
}
.nav a {
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  margin-left: 20px;
  border-radius: 10px;
  transition: 0.3s ease-in-out all;
  color: white;
}

.nav a:hover {
  background: #9d7ab2;
  color: white;
  padding: 8px 10px;
}
.nav-logo {
  font-size: 2rem;
  position: relative;
}
.logo {
  height: 4.5rem;
  border-radius: 50%;
}
.nav-btn {
  background: transparent;
  border: none;
  color: #9d7ab2;
  font-size: 2.25rem;
  cursor: pointer;
  position: absolute;
  top: 18%;
  right: 2%;
}
/* nav media queries */
/* spacing */
@media screen and (max-width: 1130px) {
  .nav-container {
    max-width: 900px;
  }
}
@media screen and (max-width: 930px) {
  .nav-container {
    max-width: 750px;
  }
}
@media screen and (max-width: 775px) {
  .nav-container {
    max-width: 750px;
  }
}
/* hide nav links */
@media screen and (max-width: 775px) {
  .nav {
    visibility: hidden;
  }
}
/* hide nav button on bigger screen */
@media screen and (min-width: 775px) {
  .nav-btn {
    display: none;
  }
}
@media screen and (max-width: 390px) {
  .logo {
    height: 2.75rem;
  }
}
/* END OF NAVBAR */
/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
  background: #f1f5f8;
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
  text-transform: uppercase;
  transform: translateX(100%);
  transition: all 0.2s linear;
}
.sidebar-container {
  position: relative;
  max-width: 100%;
  height: 90vh;
}
.sidebar-links {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 0;
}

.sidebar-links a {
  display: block;
  text-decoration: none;
  font-size: 40px;
  font-weight: bold;
  color: black;
  padding: 1.5rem;
  transition: all 0.2s linear;
}
.sidebar-links a:hover {
  color: #dd4055;
  padding-left: 0.25rem;
}
.side-close-btn {
  position: absolute;
  top: 0;
  right: 5%;
  background: none;
  border: transparent;
  color: rgb(242, 156, 156);
  font-size: 3.5rem;
  cursor: pointer;
  transition: all 0.2s linear;
}
.close-btn:hover {
  color: #bb2525;
}
.show-sidebar {
  transform: translate(0);
}
.sidebar-socials {
  text-align: center;
  font-size: 2rem;
  cursor: pointer;
  margin: 2rem;
}

#instagram {
  color: black;
  padding-inline: 2rem;
}

#instagram:hover {
  color: #dd4055;
}
.hide-nav {
  visibility: hidden;
}
/* END OF SIDEBAR */
/* HEADER */
.hero {
  height: calc(100vh - 60px);
  display: flex;
  justify-content: center;
  padding-top: 90px;
  color: hsl(212, 33%, 89%);
}
.hero-banner {
  max-width: 1100px;
  min-height: 100%;
}
.paragraph-container {
  min-height: 60px;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-evenly;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}
.hero-banner h1 {
  margin-bottom: 2rem;
}
.hero-banner p {
  max-width: 75%;
  font-size: 20px;
}
.hero-underline {
  position: absolute;
  left: 0;
  background: hsl(212, 33%, 89%);
  width: 3rem;
  height: 0.15rem;
}

.hero-btn {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  width: 11rem;
  height: 4.5rem;
  font-size: 30px;
  padding: 15px;
  margin-top: 1rem;
  background: #9d7ab2;
  color: white;
  border: none;
  border-radius: 10px;
  transition: all 0.2s linear;
  cursor: pointer;
}
.hero-btn:hover {
  background: white;
  color: #9d7ab2;
  border: solid 2px #9d7ab2;
}
/* hero media queries */
@media screen and (max-width: 1130px) {
  .hero-banner {
    max-width: 900px;
  }
}
@media screen and (max-width: 930px) {
  .hero-banner {
    max-width: 750px;
  }
}
@media screen and (max-width: 775px) {
  .hero-banner {
    max-width: 750px;
  }
}
@media screen and (max-width: 760px) {
  .hero-banner {
    text-align: center;
  }
  .paragraph-container {
    flex-direction: column;
  }
  .hero-underline {
    visibility: hidden;
  }
  .nav-logo {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 575px) {
  h1 {
    font-size: 60px;
  }
}
@media screen and (max-width: 430px) {
  .hero {
    padding-top: 30px;
  }
}

/* END OF HEADER */
/* ABOUT */
#about {
  min-height: 100vh;
  max-width: 100%;
  color: black;
  background: #fff;
}
.about-container {
  display: grid;
  place-items: center;
  grid-template-columns: 100px 300px 150px 1fr;
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
}
.about-text {
  height: 90%;
  justify-self: stretch;
}
/* about image */
.about-img-container {
  position: relative;
}
.about-img {
  position: relative;
  height: 65vh;
  width: 700px;
  border-radius: 5%;
}
.about-img-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0.25rem solid #9d7ab2;
  top: 2rem;
  right: -2rem;
  border-radius: 5%;
}
.about-vids-container {
  height: inherit;
  overflow: hidden;
}
.arrow {
  background: #9d7ab2;
  color: white;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 10px;
  font-size: 2rem;
  cursor: pointer;
}

.about-vids {
  display: flex;
  width: 300px;
  height: 600px;
}
.about-vid {
  height: inherit;
  width: inherit;
}

.about-small {
  border-bottom: dotted 2px #9d7ab2;
  max-width: 70px;
}
.about-text h5 {
  text-transform: capitalize;
  margin-bottom: 2px;
}

.about-text p {
  max-width: 700px;
  color: hsl(210, 22%, 49%);
}
h2 span {
  text-transform: capitalize;
}

/* about media queries */

@media screen and (max-width: 935px) {
  .right {
    grid-area: next;
  }
  .left {
    grid-area: prev;
  }
  .about-vids-container {
    grid-area: video;
  }
  .about-text {
    grid-area: team;
  }
  .about-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      ". team ."
      "prev video next";
  }
  .about-text {
    height: 100%;
    width: 300px;
  }
  .about-img-container::before {
    visibility: hidden;
  }
}
@media screen and (max-width: 430px) {
  .about-img-container {
    min-width: 300px;
  }
  .arrow {
    padding: 0.15rem 0.25rem;
    font-size: 1.5rem;
  }
}
/* END OF ABOUT */
/* EVENT SECTION */
.event-section {
  background: #f4f7fa;
  min-height: calc(100vh - 1rem);
  max-width: 100%;
  color: black;
  padding-bottom: 1rem;
}
/* TABS */
.tab-container {
  text-align: center;
}
.tab-title {
  text-align: center;
  position: relative;
  border: solid 1px transparent;
}
.tab-underline {
  text-decoration: underline;
}
.tab {
  background: none;
  border: none;
  cursor: pointer;
}
.tab :hover {
  text-decoration: underline;
}
.tab h4 {
  font-size: 20px;
}
@media screen and (max-width: 760px) {
  .underline {
    top: 0;
    left: 50%;
  }
}

.event-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.event-container li {
  list-style-type: none;
}
.single-event {
  border: solid 5px black;
  max-width: 350px;
  width: 350px;
  background: #f4f7fa;
  min-height: 600px;
  margin-top: 1rem;
  border-radius: 5%;
}

.hide-event {
  display: none;
}
/* title container */
.title-container {
  background: #292929;
  border-radius: 3%;
  display: flex;
  justify-content: center;
  position: relative;
}
.title-container h5 {
  display: block;
  position: absolute;
  top: 50%;
  text-transform: capitalize;
  color: hsl(212, 33%, 89%);
}
.single-event-title {
  height: 100px;
  color: white;
  font-size: 1.5rem;
}
.event-underline {
  background: #9d7ab2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 0.25rem;
}
/* text container */
.event-desc {
  padding-inline: 10px;
  height: calc(100% - 160px);
}
.event-desc-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 90%;
}
.event-desc-container p {
  color: hsl(210, 22%, 49%);
  height: 100%;
}
.date-time-rsvp {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.date-time {
  text-align: center;
}
/* event button */
.rsvp-btn {
  text-transform: capitalize;
  padding: 15px;
  width: 67%;
  height: 3.5rem;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  background: #9d7ab2;
  color: white;
  border: none;
  border-radius: 10px;
  transition: all 0.2s linear;
  cursor: pointer;
}

@media screen and (max-width: 1055px) {
  .event-container {
    justify-content: center;
    gap: 1rem;
  }
}
/* END OF EVENT SECTION */

/* RSVP FORMS */
.rsvp-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.rsvp-overlay-container {
  position: relative;
}
#rsvp-form {
  z-index: 5;
  transition: all 0.2s linear;
  background: white;
}
.x-container {
  position: absolute;
  top: 0;
  right: -2rem;
}
.form-close-btn {
  position: absolute;
  background: none;
  border: transparent;
  color: rgb(242, 156, 156);
  font-size: 3.5rem;
  cursor: pointer;
  transition: all 0.2s linear;
  z-index: 6;
}
.form-close-btn:hover {
  color: #bb2525;
}
.hide-rsvp {
  display: none;
}

/* form popup media queries */
@media screen and (max-width: 835px) {
  #rsvp-form {
    width: 450px;
    height: 515px;
  }
}
@media screen and (max-width: 615px) {
  #rsvp-form {
    width: 312px;
    height: 575px;
  }
}
@media screen and (max-width: 480px) {
  #rsvp-form {
    width: 100vw;
    height: 80vh;
    margin-top: 20vh;
  }
  .x-container {
    top: 10%;
    right: 15%;
  }
}
/* FOOTER */
.footer {
  background: #292929;
  height: 20vh;
  color: white;
}
.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.container-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  width: 100%;
}
.footer-title {
  height: 100%;
  border-right: solid 1px gray;
  width: 15rem;
}
/* footer nav */
.footer-links {
  list-style-type: none;
  height: 100%;
  display: flex;
  padding-left: 0;
  gap: 2rem;
}

.footer-links a {
  text-decoration: none;
  color: white;
  font-size: 1.25rem;
}
.footer-links a:hover {
  color: gray;
}
/* footer social media */
.socials-container {
  font-size: 15px;
  display: flex;
  flex-direction: column;
  max-width: 375px;
  margin: 0 auto;
}
.insta {
  display: inline-block;
}
.insta a {
  cursor: pointer;
  font-size: 2rem;
  color: white;
}
.email :first-child {
  color: white;
  font-size: 1rem;
}
/* footer copyright */
.copyright-section {
  font-size: 20px;
  text-transform: capitalize;
}
.copyright {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1130px) {
  .footer-container {
    max-width: 900px;
    gap: 0;
  }
}
@media screen and (max-width: 930px) {
  .footer-container {
    max-width: 750px;
  }
}
@media screen and (max-width: 775px) {
  .footer {
    height: 40vh;
  }
  .footer-container {
    max-width: 750px;
  }
  .container-1 {
    flex-direction: column;
    gap: 0;
  }
  .insta {
    margin: 0 auto;
  }
  .footer-title {
    height: 90px;
    text-align: center;
    border-right: none;
    border-bottom: solid 1px gray;
  }
}
@media screen and (max-width: 375px) {
  .copyright-section {
    font-size: 16px;
  }
}

/* END OF FOOTER */
