@font-face {
  font-family: 'Neue Power Ultra';
  src: url('../fonts/NeuePower-Ultra.ttf') format('truetype');
}

@font-face {
  font-family: 'Neue Power Medium';
  src: url('../fonts/NeuePower-Medium.ttf') format('truetype');
}

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

body {
  font-family: 'Neue Power Ultra', sans-serif;
  background-color: #fff;
  color: #000;
  overflow-x: hidden;
  margin-bottom: 50px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  z-index: 1000;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo img {
  height: 1.5rem;
  width: auto;
}

.logo-text {
  font-family: 'Neue Power Medium', sans-serif;
  font-size: 1.1rem;
  color: #000;
  margin-left: 20px;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  text-align: left;
}

.contact-link {
  font-size: 1.1rem;
  color: #000;
  text-decoration: none;
  font-family: 'Neue Power Medium', sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  position: absolute;
  right: 20px;
}

.contact-link:hover {
  color: #aaa;
}

.banner-image {
  width: 90%;
  max-width: 2000px;
  height: 800px;
  object-fit: cover;
  display: block;
  margin: 130px auto 30px auto;
  object-position: 50% 20%;
}

.project-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0 5%;
}

.project-images img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.banner-video {
  width: 90%;
  max-width: 2000px;
  height: 800px;
  object-fit: cover;
  display: block;
  margin: 30px auto;
}

.three-items {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5%;
  margin-top: 30px;
}

.three-items img,
.three-items video {
  width: 32%;
  height: auto;
}

.section-spacing {
  margin-bottom: 30px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  fill: white;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-image {
    height: auto;
    aspect-ratio: 16 / 9;
    margin-top: 120px;
  }

  .project-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project-images img,
  .three-items img,
  .three-items video {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .contact-link {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 1.3rem;

  }
}
