@import url("https://fonts.googleapis.com/css2?family=Alata&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
:root {
  --White:hsl(0, 0%, 100%);
  --Black:hsl(0, 0%, 0%);
  --Grey-200:hsl(0, 0%, 85%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

.hero-content {
  width: 100vw;
  height: 100vh;
}

.header {
  z-index: 1000;
}

.logo-container {
  z-index: 1000;
}

.header .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}

.main-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* Navigation styling */
.nav-links {
  display: none;
}
.nav-links.active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  background-color: var(--Black);
  padding: 150px 30px 30px;
  z-index: 100;
}

.nav-links.active {
  width: 100%; /* Slide in when active */
}

.nav-link {
  display: block;
  margin: 20px 0;
  color: var(--White);
  text-decoration: none;
  font-size: 2rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  position: relative;
  font-size: 16px;
}

/* Overlay background */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 90;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Close button inside nav menu */
.close-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.main-background {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
}

.main-background picture {
  position: relative;
}

.main-background picture source, .main-background picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-background .main-background-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--White);
  font-family: "Alata", sans-serif;
  font-weight: 200;
  border: 2px solid var(--White);
  font-size: 3.5rem;
  padding: 1rem 2rem;
  text-transform: capitalize;
  line-height: 1.1;
}

.immersive-experiences-section, .creations {
  padding: 2rem;
}

.immersive-experiences-section img, .creations img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.immersive-experiences-section {
  margin: 1rem 0;
}

.immersive-experiences-section .immersive-experiences-img {
  margin-bottom: 1.5rem;
}

.immersive-experiences-section .immersive-experiences {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.immersive-experiences h2 {
  font-weight: 300;
  color: var(--Black);
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.immersive-experiences p {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  color: var(--Black);
  font-size: 1.2rem;
  line-height: 1.5;
}

.creations {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.creations h2 {
  font-weight: 300;
  color: var(--Black);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.creations figure {
  position: relative;
  margin-bottom: 1.5rem;
}

.creations figure img {
  filter: brightness(0.7);
}

.creations figcaption {
  position: absolute;
  top: 30%;
  left: 5%;
  color: var(--White);
  font-size: 1.5rem;
  font-family: "Alata", sans-serif;
  font-weight: 200;
  text-transform: capitalize;
  width: 100px;
}

.creations .see-all {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 3rem;
  background-color: var(--White);
  color: var(--Black);
  border: 2px solid var(--Black);
  cursor: pointer;
}

.creations .see-all a {
  text-decoration: none;
  color: var(--Black);
  font-size: 1.5rem;
  letter-spacing: 5px;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
  background-color: var(--Black);
}

footer * {
  margin-bottom: 1.2rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--White);
  font-size: 1.2rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  margin: 0.5rem 0;
}

.social-media {
  display: flex;
  gap: 1rem;
}

.footer-text {
  color: var(--Grey-200);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none !important;
  }
  .nav-links {
    display: flex;
    z-index: 101;
  }
  .nav-link {
    margin: 0 1rem;
    font-size: 1rem;
  }
  .close-nav {
    display: none;
  }
  .overlay {
    display: none;
  }
  .main-background .main-background-caption {
    font-size: 5rem;
    padding: 2rem 4rem;
    left: 30%;
    top: 60%;
    transform: translate(-30%, -60%);
  }
  .immersive-experiences-section {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 3rem 6rem;
  }
  .immersive-experiences-section .immersive-experiences-img {
    position: relative;
  }
  .immersive-experiences {
    width: 43%;
    position: absolute;
    left: 41%;
    top: 140%;
    background-color: var(--White);
    padding: 2rem;
  }
  .creations {
    align-items: unset;
  }
  .creations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 6rem;
  }
  .creations figcaption {
    position: absolute;
    top: 80%;
    left: 30%;
    font-size: 2rem;
    width: fit-content;
  }
  .creations .see-all {
    width: 30%;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */