/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'BankGothic', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Landing Page */
.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px; /* Allow some space on small screens */
  height: 100vh;
  text-align: center;
}

.logo {
  width: 100%;
  max-width: 40vw;   /* Responsive size */
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
  transform: translateY(0);
}

@font-face {
  font-family: 'BankGothic';
  src: url('fonts/BankGothic.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.brand-name {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-family: 'BankGothic', sans-serif;
  cursor: pointer;
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(0.6, 0.05, 0.4, 1),
    opacity 0.5s ease-out,
    font-size 0.5s ease-out,
    letter-spacing 0.5s ease-out;
}

.brand-name.visible {
  opacity: 1;
}

/* Inspire Section */
.inspire {
  padding: 60px 20px;
  background: #111;
}

.inspire h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

/* Gallery Masonry Layout */
.gallery {
  column-count: 7;
  column-gap: 15px;
  padding: 10px;
}

.img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: visible; /* Allow zoom to extend outside the box */
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  position: relative;
}

/* Blur others on hover */
.gallery:hover .gallery-img:not(:hover) {
  filter: blur(5px);
  transform: scale(0.95);
  opacity: 0.6;
}

/* Zoom and bring to front */
.gallery-img:hover {
  transform: scale(1.07);
  z-index: 10;
  filter: none;
  opacity: 1;
}

/* Lightbox overlay */
.image-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.image-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.image-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

/* Dim other images */
.gallery.dimmed img:not(.active-image) {
  opacity: 0.2;
  pointer-events: none;
}


@media (max-width: 600px) {
  .logo {
    max-width: 90vw;
  }
}

/* Responsive Layout */
@media (max-width: 1920px) {
  .gallery {
    column-count: 6;
  }
}
@media (max-width: 1500px) {
  .gallery {
    column-count: 5;
  }
}
@media (max-width: 900px) {
  .gallery {
    column-count: 3;
  }
}
@media (max-width: 500px) {
  .gallery {
    column-count: 2;
  }
}
@media (max-width: 350px) {
  .gallery {
    column-count: 1;
  }
}

body.about-page {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: 'BankGothic', sans-serif;
}

.about-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-height: calc(100vh - 140px); /* leave space for video + breathing */
}

.about-page-content {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.about-left {
  width: 60%;
  display: flex;
  align-items: flex-start; /* ⬅ Align to top */
  justify-content: center;
  position: relative; /* For z-index layering */
  z-index: 1;
}
.about-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.workflow-panel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.workflow-panel h1 {
  margin-bottom: 30px;
  margin-top: 40px
}

.workflow-item {
  margin-bottom: 25px;
  width: 65%;
  font-size: 1.4rem;
}

.workflow-item small {
  color: #ccc;
  font-size: 1rem;
}

.about-right h1 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.workflow-item span {
  display: block;
  margin-bottom: 10px;
}
.bar {
  background: #444;
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.fill {
  height: 100%;
  background: #0cf;
  transition: width 0.5s ease;
}

.photo-mask-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 32vw;
  margin-top: 40px;
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
}

.about-photo.base {
  filter: grayscale(100%);
  position: relative;
  z-index: 1;
}

.about-photo.hover-layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;

  -webkit-mask-image: radial-gradient(circle 0px at -9999px -9999px, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(circle 0px at -9999px -9999px, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.reach-section {
  margin: 60px auto 40px;
  text-align: center;
  padding: 0 20px;
}

.reach-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 30px;
  font-family: 'BankGothic', sans-serif;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.5s ease;
  filter: brightness(0.6);
}

.social-icons a:hover img {
  transform: scale(1.3);
  filter: brightness(1);
}

/* Video wrapper */
.experience-strip-wrapper {
  margin-top: 40px;
  padding-bottom: 20px;
  background: #000000;
  z-index: 2;
  position: relative;
}

.experience-title {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-family: 'BankGothic', sans-serif;
}

/* Responsive Video */
.experience-strip {
  width: 100%;
  max-height: 100px;
  height: auto;
  object-fit: cover; /* ⬅ No cropping */
  display: block;
  pointer-events: none;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.3);
}


@keyframes scroll-strip {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
