@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Anton", sans-serif;
}

a {
  text-decoration: none;
}

/* ================= PAGE ================= */
.page {
  background-color: #000;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* ================= NAV BAR ================= */
.NavigationBar {
  height: auto;
  width: auto;
  background-color: rgba(110, 110, 110, 0.295);
  border-radius: clamp(8px, 1vw, 12px);

  display: flex;
  justify-content: center;
  align-items: center;

  position: fixed;
  bottom: clamp(10px, 3vh, 24px);
  padding: clamp(6px, 2vw, 15px);

}

/* NAV LIST — equal distribution */
.NavigationBar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
}

/* ================= NAV ITEM ================= */
.NavigationBar ul li.icon {
  flex: 1; /* ✅ equal slots */
  display: flex;
  justify-content: center;

}

.NavigationBar ul li.icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  gap: clamp(6px, 2vw, 14px);

  padding: clamp(10px, 1.2vw, 18px);

  cursor: pointer;
  background: transparent;
  color: #edc688;
  mix-blend-mode: black;

  transition: all 0.4s ease-in-out;
  overflow: hidden;
  width: 100%;
  max-width: clamp(56px, 10vw, 140px);
}


/* ================= ICON ================= */
.in_icon {
  width:  clamp(36px, 4vw, 72px);
  height: clamp(36px, 6vw, 96px);
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}

/* ================= LABEL ================= */
.label_nav {
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  justify-content: center;
  align-items: center;

  font-size: clamp(1px, 2vw, 25px);
  padding-right: clamp(8px, 1.5vw, 16px);
  margin: 0;
  color: #000;

  transition: all 0.4s ease-in-out;
}

/* ================= HOVER BEHAVIOR ================= */
.NavigationBar ul li.icon a:hover {
  background-color: #edc688;
  max-width: clamp(120px, 22vw, 200px);
  border-radius: clamp(10px, 1vw, 50px); /* ✅ pushes neighbors */
}

/* ICON HIDES */
.NavigationBar ul li.icon a:hover svg {
  opacity: 0;
  width: 0;
  margin: 0;
  transform: translateX(-20px);
}

/* LABEL EXPANDS */
.NavigationBar ul li.icon a:hover .label_nav {
  opacity: 1;
  max-width: 100%;
  justify-content: center;
  align-content: center;
  
}

/* ================= HOME SECTION ================= */
.home {
  height: clamp(80px, 15vh, 120px);
  display: flex;
  justify-content: center;
}

/* FILLED TEXT */
.bg,
.fg {
  position: absolute;
  text-align: center;

  font-size: clamp(64px, 16vw, 240px);
  padding: 0px 0px 0px 110px;
  bottom: clamp(40dvh, 45dvh, 55dvh);
  transform: scaleY(2.8);
  transform-origin: center;
  transform-box: fill-box;
}

/* SOLID TEXT */
.bg {
  color: #ffffff;
}

/* HOLLOW TEXT */
.fg {
  color: transparent;
  -webkit-text-stroke: clamp(0.25px, 0.08vw, 0.6px) #ffffff;
}


/* ================= IMAGE ================= */
.home img {
  position: relative;
  width: auto;
  height: clamp(60vh, 70vh, 100vh);
  top: clamp(60px, 30vh, 100vh);

  pointer-events: none;
  user-select: none;
}

/* ================= MOBILE (Samsung S20) ================= */
@media (max-width: 999px) {
  .bg, .fg {
    bottom: clamp(68dvh, 72dvh, 80dvh);
    transform: scaleY(2.8);
  }
    .NavigationBar ul li.icon a svg {
    width: 20vw;
    height: 20vw;
  }

}

/* ================= TABLET (iPad) ================= */
@media (min-width: 1000px) and (max-width: 1199px) {
  .bg, .fg {
    bottom: clamp(55dvh, 65dvh, 72dvh);
    transform: scaleY(2.8);
  }
    .NavigationBar ul li.icon a svg {
    width: clamp(32px, 5vw, 44px);
    height: clamp(32px, 5vw, 44px);
  }

}

/* ================= LAPTOP (1231 × 732) ================= */
@media (min-width: 1200px) {
  .bg, .fg {
    bottom: clamp(42dvh, 46dvh, 52dvh);
    transform: scaleY(1.8);
  }
    .NavigationBar ul li.icon a svg {
    width: clamp(26px, 3vw, 32px);
    height: clamp(26px, 3vw, 32px);
  }
}
