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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
}

.navigation {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}
.navigation .nav-btn {
  padding: 8px 16px;
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.navigation .nav-btn:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}
.navigation .nav-btn:active {
  transform: translateY(0);
}

.portfolio-container {
  width: 100%;
  position: relative;
}

.portfolio-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portfolio-section .section-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.portfolio-section .section-mutli {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.portfolio-section .section-mutli .multi-section-image {
  width: 100%;
  height: fit-content;
  object-fit: cover;
  display: block;
}

.overlay-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: 10;
}
.overlay-content .overlay-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.overlay-content .overlay-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.95;
}

.light {
  position: absolute;
  width: 0.55vw;
  height: 0.55vw;
  background-color: yellow;
  border-radius: 50%;
  box-shadow: 0 0 7px 2px yellow;
}

.light-band {
  transform: translateX(0);
}
.light-band.animated {
  transform: translateX(3.1575vw);
}

#home .overlay-content a {
  position: absolute;
}
#home .overlay-content .apropos-card,
#home .overlay-content .projects-card {
  height: 15.75vw;
  top: 20.8vw;
}
#home .overlay-content .apropos-card {
  left: 19.05vw;
  width: 11.83vw;
}
#home .overlay-content .projects-card {
  left: 67.55vw;
  width: 11.8vw;
}
#home .overlay-content .apropos-btn,
#home .overlay-content .projects-btn {
  width: 11.84vw;
  height: 2.94vw;
  top: 43.23vw;
  left: 43.35vw;
  border-radius: 500px;
}
#home .overlay-content .projects-btn {
  top: 46.95vw;
}

#branding .scrolling-banner {
  position: absolute;
  top: 62.5%;
  left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#branding .banner-track {
  display: flex;
  animation: scrollBanner 30s linear infinite;
  will-change: transform;
}
#branding .banner-image {
  height: 5.7vw;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@keyframes scrollBanner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}
#packaging {
  overflow: hidden;
}
#packaging .scrolling-banner {
  margin: 0 auto;
  margin-top: 18.8vw;
  width: fit-content;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}
#packaging .banner-track {
  display: flex;
  flex-direction: column;
  height: 300%;
  animation: scrollBannerVertical 30s linear infinite;
  will-change: transform;
}
#packaging .banner-image {
  width: 5.7vw;
  height: auto;
  min-height: 0;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  vertical-align: top;
}
#packaging .levitation-animation {
  position: absolute;
  width: 60vw;
  bottom: -1vw;
  right: -5vw;
}

#motion .video-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 5.8vw;
  top: 23.92vw;
  right: 5.8vw;
  bottom: 10.8vw;
  z-index: 10;
}
#motion .video-container:hover .video-controls {
  opacity: 1;
}
#motion .motion-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#motion .video-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 40px;
  backdrop-filter: blur(8px);
  z-index: 20;
  opacity: 0;
  transition: opacity ease-in-out 0.3s;
}
#motion .video-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
#motion .video-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}
#motion .video-btn:active {
  transform: scale(0.98);
}
#motion .video-btn .video-btn-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
}
#motion .video-btn .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
#motion .video-btn-play-pause[data-state=paused] .icon-play,
#motion .video-btn-play-pause[data-state=playing] .icon-pause {
  opacity: 1;
}
#motion .video-btn-mute[data-state=muted] .icon-volume-off,
#motion .video-btn-mute[data-state=unmuted] .icon-volume-on {
  opacity: 1;
}
#motion .video-btn .icon-restart {
  opacity: 1;
}

#network .left-iphone-container,
#network .right-iphone-container {
  position: absolute;
  width: 24.9vw;
  height: 53.69vw;
  border-radius: 32px;
  overflow: scroll;
  padding-bottom: 4.5vw;
}
#network .left-iphone-container.-fixed,
#network .right-iphone-container.-fixed {
  overflow: hidden;
  pointer-events: none;
}
#network .left-iphone-container::-webkit-scrollbar,
#network .right-iphone-container::-webkit-scrollbar {
  display: none;
}
#network .left-iphone-container {
  top: 89vw;
  left: 21.7vw;
}
#network .right-iphone-container {
  top: 96.4vw;
  left: 54vw;
  height: 54vw;
  border-radius: 27px;
}
#network .top-iphone,
#network .bottom-iphone {
  position: absolute;
}
#network .top-iphone {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
}
#network .bottom-iphone {
  bottom: 0;
  width: 100%;
}
#network .left-iphone-image,
#network .right-iphone-image {
  width: 100%;
}
#network .scroll-finger-hint {
  position: absolute;
  top: 115vw;
  left: 65vw;
  width: 4vw;
  min-width: 28px;
  max-width: 44px;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 15;
  animation: fingerScroll 2.5s ease-in-out infinite reverse;
  transition: opacity 0.3s ease;
}
#network .scroll-finger-hint.finger-hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
}
#network .finger-icon {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fingerScroll {
  0%, 100% {
    transform: translateY(0) scale(1.5);
    opacity: 0.5;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(6vw);
    opacity: 1;
  }
  80% {
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes scrollBannerVertical {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-56.2476vw);
  }
}
.portfolio-section .overlay-content {
  opacity: 1;
}

.first-plan {
  z-index: 10;
}

/*# sourceMappingURL=styles.css.map */
