  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fff;
  }


  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 12px;
    position: fixed;
    top: 0;
    z-index: 1000;
    /* background: #ffffff21; */
    backdrop-filter: blur(2px);
  }


  
.hero {
  width: 100%;
  max-width: 1600px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0px auto;
  margin-top: 40px;
  overflow: hidden;
}

.hero {
  flex-direction: row; /* NEW: image left + text right */
}

/* LEFT SIDE */
.hero-left {
  flex: 0 0 40%;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  z-index: 2;
}

.black-rectangle {
  width: 120px;
  height: 15px;
  background: #000;
  margin-bottom: 10px;
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #000;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease forwards;
}

.hero-left p {
  max-width: 550px;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease forwards 0.3s;
}

.down-arrow {
  margin-top: 0px;
  font-size: 1.8rem;
  color: #000;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease forwards 0.6s;
  transition: transform 0.3s ease;
}

.down-arrow:hover {
  transform: translateY(10px);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RIGHT SIDE */
.hero-right {
  flex: 0 0 60%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  padding-right: 80px; 
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.image-wrapper img {
  width: auto;
  max-width: 80%;
  max-height: 95%;
  object-fit: contain;
  object-position: right center;
  display: block;
  /* Fade bottom of image */
  mask-image: linear-gradient(to top, transparent 0%, black 40%);
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 25%);
}

/* RESPONSIVE STYLES */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: 100vh;
    justify-content: flex-end;
    background: url('/img/hikari-bl-2.png') center/contain no-repeat;
    position: relative;
    background-color: #fff;
  }

  .hero {
    flex-direction: column; /* Mobile stays image as background + text on top */
  }


  .hero-right {
    display: none;
  }

  .hero-left {
    /* position: absolute; */
    bottom: 50px;
    left: 30px;
    right: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    border-radius: 10px;
  }

  .hero-left h1 {
    font-size: 2rem;
    color: #000;
    text-shadow: 0 2px 10px rgba(255,255,255,0.8);
  }

  .hero-left p {
    color: #222;
    font-size: 1rem;
    text-shadow: 0 1px 6px rgba(255,255,255,0.7);
  }

  .black-rectangle {
    width: 100px;
    height: 12px;
    background: #000;
  }

  .down-arrow {
    font-size: 1.6rem;
  }
}






.draggable-section {
  width: 100%;
  max-width: 1600px;
  margin: 80px auto;
  overflow: hidden;
  position: relative;
  padding: 40px 20px;
}

.draggable-wrapper {
  display: flex;
  gap: 20px;
  /* cursor: pointer; */
  flex-wrap: nowrap;
  transform: translateX(100%); /* Start from right */
  transition: transform 0.1s linear;
}

/* .draggable-wrapper.active {
  cursor: grabbing;
} */

.draggable-box {
  flex: 0 0 450px;
  height: 500px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: grayscale(100%);
  transition: all 0.5s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
}

/* Hover to color */
.draggable-box:hover {
  filter: grayscale(0%);
  transform: scale(1.2);
}

/* Gradient overlay */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0, 1), transparent 100%);
  color: #fff;
}

.overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-height: 3.6em; /* 3 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2em;
}

.draggable-box a{
  margin-top: 12px;
  color: #fff;
  padding: 5px 10px;
  border: 1px solid #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: .2s ease-in-out;
}

.draggable-box a:hover{
color: #333;
background-color: #fff;
}

/* SLIDE UP ANIMATION ON SCROLL */
.draggable-box.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .draggable-box { flex: 0 0 300px; height: 420px; }
}

@media (max-width: 768px) {
  .draggable-box { flex: 0 0 250px; height: 350px; }

  .overlay{
    padding: 12px;
  }

  .overlay h2{
    font-size: 1.5rem;
  }
  .overlay p{
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .draggable-box { flex: 0 0 180px; height: 300px; }
  .hero-left{
    margin-top: 2000px;
  }
}





.credits{
  max-width: 85%;
  margin: 10px auto;
  align-items: center;
  text-align: right;
  justify-content: center;
  font-size: 12px;
}



.credits a{
  font-size: 13px;
  font-weight: bolder;
  color: purple;
  text-decoration: none;
}