body {
  background: #000;
  font-family: 'Manrope', sans-serif;
  margin: 0;
  color: white;
}

/* HORIZONTAL BAR */
.work-bar {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;

  padding: 15px 35px;
  width: fit-content;
  max-width: 90vw;

  background-color: #f9f9f9;
  border-radius: 50px;

  z-index: 900;
}

.work-filter {
  background: none;
  border: none;
  color: #636363;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.work-filter.active,
.work-filter:hover {
  color: rgb(0, 0, 0);
}

/* GRID */
.work-grid {
  padding: 200px 80px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 60px;
}

.work-item {
  cursor: pointer;
  transition: transform 0.4s ease;
}

.work-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.work-item:hover img {
  transform: scale(1.05);
}

/* CAPTION */
.work-caption {
  margin-top: 15px;
}

.work-caption h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.work-caption p {
  font-size: 14px;
  color: #aaa;
  margin-top: 5px;
}

/* VIDEO OVERLAY */
.video-overlay {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9999;
}

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

#videoPlayer {
  max-width: 90%;
  max-height: 85%;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .work-bar {
    gap: 25px;
    padding: 12px 25px;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .work-bar {
    top: 120px;
    width: 92vw;
    max-width: 92vw;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 12px 20px;
    gap: 20px;

    scrollbar-width: none;
  }

  .work-bar::-webkit-scrollbar {
    display: none;
  }

  .work-grid {
    grid-template-columns: 1fr;
    padding: 200px 20px 100px;
  }
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #ffffff;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.4s;
}

/* Mobile Nav */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    color: #ffffff;
  }

  .contact-button {
    display: none;
  }
}

/* Footer */
.footer {
  width: 100%;
  padding: 30px 20px;
  display: flex;
  justify-content: center;
}

.footer-content {
  display: flex;
  gap: 150px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-content img.footer-logo {
  height: 60px;
  margin-right: 20px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f9f9f9;
  font-family: 'Manrope', sans-serif;
}
.footer-link p {
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  color: #f9f9f9;
  font-weight: 400;
}
/* 👉 Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-link {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .gradient-text {
    font-size: 14px;
    text-align: center;
  }
}