/* BUTTON */


.button-org {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-orange);
  padding: 1em 2em;
  border: none;
  color: white;
  font-size: 1.2em;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  border-radius: 100px;
}

.button-org span {
  position: relative;
  pointer-events: none;
  z-index: 2;
  position: relative;
}

.button-org::before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #e65100, transparent);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
}

.button-org:hover::before {
  --size: 400px;
}






.button-gray {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-white);
  border: none;
  color: var(--color-dark);
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.button-gray span {
  position: relative;
  pointer-events: none;
}

.button-gray::before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, var(--color-gray), transparent);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
}

.button-gray:hover::before {
  --size: 150px;
}







.button-black {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-dark);
  border: none;
  color: var(--color-white);
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.button-black span {
  position: relative;
  pointer-events: none;
}

.button-black::before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #282828, transparent);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
}

.button-black:hover::before {
  --size: 150px;
}




.button-org-mute {

  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--color-orange);
  /* border: solid 1px  var(--color-pure-white); */
  color: var(--color-white);
  cursor: pointer;
  outline: none;
  overflow: hidden;
}

.button-org-mute span {
  position: relative;
  pointer-events: none;
}

.button-org-mute::before {
  --size: 0;
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #e65100, transparent);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: width .2s ease, height .2s ease;
}

.button-org-mute:hover::before {
  --size: 150px;
}



/* MENU */

/* ===== MENU ICON ===== */
#icon {

  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 1;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.icon-style {
  width: 40px;
  position: relative;
}

.line {
  width: 100%;
  height: 5px;
  background: var(--color-dark);
  margin: 6px 0;
  border-radius: 6px;
  transition: all 0.25s ease;
}


/* Hamburger Animation */
.a {
  transform: rotate(45deg) translate(2px, 1px);
  background: var(--color-dark);
  margin-bottom: -2px;
}

.b {
  opacity: 0;
}

.c {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--color-dark);
  margin-bottom: -2px;
}

/* ===== BLACK SLIDE ===== */
#black {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-dark);
  z-index: 2;
  transition: all 0.25s ease-in-out;
}

#black.show {
  left: 0;
}

/* ===== ORANGE SLIDE ===== */
#orange {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-orange);
  z-index: 3;
  transition: all 0.25s ease-in-out;
}

#orange.show {
  left: 0;
  transition-delay: 0.1s;
  /* small delay for quick follow */
}

/* ===== WHITE FULL MENU ===== */
nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-pure-white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}

nav.show {
  left: 0;
  transition-delay: 0.2s;
  /* slightly after orange */
}





/* GET IN TOUCH */


.new-line {
  width: 40px;
  height: 5px;
  background: none;
  margin: 6px 0;
  border-radius: 4px;
  transition: all 0.5s ease-in-out;
}


/* Hamburger animation */

#new-line1.open {
  transform: rotate(45deg) translate(4px, 3px);
  background: var(--color-pure-white);
  margin-bottom: -2px;
}

#new-line2.open {
  opacity: 0;
}

#new-line3.open {
  transform: rotate(-45deg) translate(10px, -10px);
  background: var(--color-pure-white);
  margin-bottom: -2px;
}



/* PRELOADER */

:root {
  --color-background: rgb(60, 66, 55);
  --color-foreground: rgb(230, 225, 215);
  --color-accent: rgb(200, 180, 160);
  --font-primary: "Inter", sans-serif;
  --font-secondary: "IBM Plex Mono", monospace;
  --margin: 32px;
  --gutter: 16px;
}



.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to top, #0a0a0a, #111011, #161516, #1b191a, #201d1e);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

.progress-container {
  width: 360px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--color-orange);
}

.percentage {
  position: absolute;
  bottom: 40px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 20rem;
  line-height: 0.8;
  color: #201d1e;
  opacity: 0.4;
}

.text-container {
  height: auto;
  position: relative;
  overflow: hidden;
  margin: 0px 0;
  width: 430px;
  text-align: center;
}

.loading-text {
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--color-foreground);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  position: absolute;
  width: 100%;
  text-align: center;
}

.loading-text.initial {
  transform: translateY(0);
}

.loading-text.complete {
  transform: translateY(100%);
}

.loading-text .char {
  display: inline-block;
}

.content {
  padding: var(--margin);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-foreground);
  background: var(--color-background);
  visibility: hidden;
  z-index: 1;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.content p {
  font-size: 1.2rem;
  overflow: hidden;
}

.content .char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

/* Add these classes for the stagger animation */
.preloader-item {
  opacity: 1;
  transform: translateY(0);
}


/* ===== FLASH LAYERS (bottom → top) ===== */
.flash-black,
.flash-orange {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
}

.flash-orange {
  background: var(--color-orange);
  z-index: 100000;
  bottom: -130%;
  transition: all 0.6s ease-in-out;
  height: 100%;
}

.flash-black {
  background: var(--color-dark);
  z-index: 100001;
  height: 100%;
  bottom: -100%;
  transition: all 0.2s ease-in-out;
  border-top: var(--color-dark) 1px solid;
}

.loading-logo {
  width: 180px;
  margin-bottom: 30px;
}

.text-loading {
  color: var(--color-pure-white);
  ;
  font-size: 28px;
  font-weight: 100;
}


/* FLASH */


.hover-bounce {

  transition: transform 0.3s ease;
}

/* Infinite bounce on hover */
.hover-bounce:hover {
  animation: bounce 0.6s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}




.works-image {
  position: relative;
}

/* Hover circles wrapper */
.hover-effect {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* makes it not block hover */
}

.works-image:hover .hover-effect {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
}

.circle {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid white;
  border-radius: 50%;
  transition: all 0.5s ease;
}

.circle.left {
  transform: translate(0px, 0);
}

.circle.right {
  transform: translate(0px, 0);
}

/* On hover, move apart */
.works-image:hover .circle.left {
  transform: translate(-20px, 0);
}

.works-image:hover .circle.right {
  transform: translate(20px, 0);
}

/* Optional center dots */
.dots {
  display: flex;
  gap: 4px;
  z-index: 1;
}

.dot {
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
}









/* Client logo */
@keyframes slide {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 1px;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 100px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
}

.logo_items {
  display: flex;
  animation: slide 23s linear infinite;
}

.logo_items img {
  height: 150px;
  margin: 0 10px;
  filter: brightness(0) saturate(100%);
  /* make logo black */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.logo_items img:hover {
  filter: none;
  /* show original color */
  transform: scale(1.05);
}

.logos:hover .logo_items {
  animation-play-state: paused;
}



/* 
Flash TEXT */
.flash-text {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  height: 17vh;
  border-bottom: solid 1px var(--color-gray);
  /* margin-top: 80px; */

}

.flash-text:before,
.flash-text:after {
  position: absolute;
  top: 0;
  content: '';
  width: 100px;
  height: 100%;
  z-index: 2;
}

.flash-text:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff);
}

.flash-text:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
}

.marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;

}

.marquee-content {
  display: flex;
  animation: scrollText 60s linear infinite;
  list-style: none;
  padding: 0;
  margin: 0px;
  margin-top: 6px;
}

.marquee ul {
  display: flex;
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  max-height: 100%;
  white-space: nowrap;
  font-size: 6rem;
  font-weight: 700;
  margin: 0px 5rem;
  color: var(--color-dark);
  ;
}

.marquee-content li span {
  color: var(--color-orange);
  margin: 0px 25px;
}


/* Infinite scrolling keyframes */
@keyframes scrollText {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
/* .marquee:hover .marquee-content {
animation-play-state: paused;
} */







/* home products */


.section-zoom .works-text {
  text-align: left;
}

.section-zoom .works-image {
  height: 200px;
  border-radius: 0px;
}

.section-zoom .works-text h4 {
  font-size: 1.3rem;
  margin-top: -15px;
}

.section-zoom .works-text h6 {
  font-size: 0.8rem;
  bottom: 5px;
}

.section-zoom .controls .liker {
  font-size: 0.8rem;
}

.section-zoom .activity {
  font-size: 0.8rem;
}

.section-zoom .controls .liker i {
  font-size: 0.8rem;
}

.section-zoom .controls {
  gap: 15px;
  margin-top: -5px;
  padding-top: 5px;
  border-top: solid 1px var(--color-gray);
}

.section-zoom .catery h2 {
  font-size: 0.8rem;
}




/* SECTION 1: Sticky Zoom Area */
.section-zoom {
  overflow-x: clip;
  position: relative;

}

.zoom-wrapper {}

.columns-wrapper {
  display: flex;
  gap: 20px;

  width: 100%;
}

.masonry {
  display: flex;
  gap: 20px;

  width: 100%;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* transition: transform 0.2s linear; */
}

.column img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* SECTION 2: Next content */
.section-next {

  background: #302121;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}



.section-zoom.is-sticky {
  height: 155vh;
  overflow: hidden;
}

.zoom-btm {}

.product-link {
  padding: 4rem 0px;
  text-align: center;
}



.section-zoom .circle {

  width: 60px;
  height: 60px;

}

.section-zoom .works-image:hover .circle.left {
  transform: translate(-15px, 0);
}

.section-zoom .works-image:hover .circle.right {
  transform: translate(15px, 0);
}