/* CSS Document */
/* CSS Document */
@font-face {
  font-family: "UniformCondensed";
  src: url("../css/fonts/Condensed-Regular/uniformcondensed-regular-webfont.woff2");
  font-weight: normal;
}
@font-face {
  font-family: "UniformCondensed";
  src: url("../css/fonts/Condensed-Bold/uniformcondensed-bold-webfont.woff2");
  font-weight: bold;
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body, td, th {
  background-color: #1E1E1E;
  color: #F2EDE8;
  margin: 0;
  padding: 0;
  font-family: "UniformCondensed", sans-serif;
  font-weight: normal;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Termina", sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  line-height: 3.75rem;
}

.wrapper {
  margin: 0;
  position: relative;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 3rem;
}
nav .logo {
  flex: 1;
  font-family: "Termina", sans-serif;
  text-transform: uppercase;
}
nav ul {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
nav li {
  display: block;
}
nav li + li {
  margin: 0 0 0 3rem;
}
nav a {
  border-radius: 1rem;
  color: #F2EDE8;
  cursor: pointer;
  display: block;
  font-weight: bold;
  padding: 1rem 1.5rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease;
}
nav a:hover {
  background-color: rgba(0, 0, 0, 0.35);
}

footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 2rem 4rem;
}
footer span {
  flex: 1;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: uppercase;
}
footer span + span {
  text-align: right;
}

.button-group {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.button {
  flex: 1;
  background-color: #333;
  border: none;
  border-radius: 2rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.5rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
}
.button:hover {
  background-color: #555;
}

.homepage #hero {
  height: 80vh;
  max-height: 1080px;
}
.homepage #hero::before {
  background-image: linear-gradient(transparent 40%, #1E1E1E);
  background-size: cover;
  background-position: center center;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.homepage #hero .background::before {
  content: none;
}

#intro {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.25;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translateY(-50%);
  width: 30%;
}

.homepage section {
  max-width: 1728px;
  margin: 0 auto;
  padding: 4rem;
}
.homepage section h2 {
  margin: 0 0 4rem;
  text-align: center;
}

#hero {
  overflow: hidden;
  position: relative;
}
#hero .background {
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  will-change: transform;
  width: 100%;
}
#hero .background img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .background::before {
  background-image: linear-gradient(90deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.5) 40%);
  background-size: cover;
  background-position: center center;
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: 0;
}
#hero .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  max-width: 1728px;
  margin: 0 auto;
  padding: 10rem 4rem 4rem;
  position: relative;
  z-index: 1;
}
#hero .container > div {
  flex: 1;
}
#hero .final-artwork {
  flex: 1;
}
#hero .final-artwork img {
  border-radius: 2rem;
  box-shadow: 0 1.5rem 1.5rem -0.75rem rgba(0, 0, 0, 0.25);
  display: block;
  width: 100%;
}
#hero .project-type {
  color: #fff;
  display: block;
  font-size: 1rem;
  font-weight: bold;
  opacity: 0.65;
  text-transform: uppercase;
}
#hero p {
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.5;
}

.work-categories li {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1.5rem;
}
.work-categories a {
  display: block;
  color: #F2EDE8;
  font-size: 2rem;
  font-weight: bold;
  padding: 1.5rem;
  text-decoration: none;
}

.project-description {
  background-image: linear-gradient(#1e1e1e, #242424);
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 0 4rem -3rem rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  max-width: 1728px;
  margin: 0 auto;
  padding: 4rem;
}
.project-description > div {
  flex: 1;
}
.project-description p {
  font-size: 1.5rem;
  line-height: 1.66;
}
.project-description p.note {
  font-size: 1rem;
  font-weight: bold;
}
.project-description ul {
  font-size: 1.25rem;
  line-height: 1.66;
  padding-left: 4rem;
}
.project-description ul li {
  margin: 0 0 0.5rem;
}

.gallery ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gallery li {
  flex: 1 1 22%;
}
.gallery p {
  color: #666;
  text-align: center;
}
.gallery a {
  border-radius: 1.5rem;
  color: #F2EDE8;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.5s ease;
}
.gallery a:hover {
  transform: translateY(-8px);
}
.gallery .badge {
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2rem;
  box-shadow: 0.5rem 0.5rem 1rem -0.25rem rgba(0, 0, 0, 0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  padding: 0.5rem 0.75rem;
  position: absolute;
  top: 1rem;
  left: 1rem;
  text-transform: uppercase;
}
.gallery img {
  border-radius: 1.5rem;
  display: block;
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
}

@media (max-width: 1856px) {
  .gallery li {
    flex: 1 1 30%;
  }
}
@media (max-width: 1410px) {
  #intro {
    font-size: 3rem;
  }
  #hero .container {
    flex-direction: column;
    padding: 5rem 1.5rem 1.5rem;
  }
  #hero .final-artwork {
    margin: 0 2rem 2rem;
    max-width: 640px;
    order: 1;
  }
  #hero .final-artwork img {
    border-radius: 1rem;
  }
  .project-intro {
    max-width: 960px;
    order: 2;
  }
  .project-intro .project-type, .project-intro h1 {
    text-align: center;
  }
}
@media (max-width: 1088px) {
  h1 {
    font-size: 1.5rem;
    line-height: 1.35;
  }
  nav {
    padding: 0.5rem;
  }
  nav .logo {
    font-size: 0.75rem;
  }
  nav a {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }
  .homepage #hero {
    height: 50vh;
  }
  #intro {
    font-size: 1.25rem;
    line-height: 1.25;
    left: 50%;
    width: 40%;
  }
  #intro br {
    display: none;
  }
  .featured-work {
    padding: 2rem;
  }
  .featured-work h2 {
    font-size: 1rem;
    margin: 0 0 2rem;
  }
  #hero p {
    font-size: 1.25rem;
  }
  .project-intro {
    max-width: 100%;
  }
  .project-description {
    flex-direction: column;
    padding: 1.5rem;
  }
  .project-description p {
    font-size: 1rem;
  }
  .gallery ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  footer {
    padding: 2rem;
  }
  footer span {
    font-size: 0.375rem;
  }
}/*# sourceMappingURL=style.css.map */