/* PAGE SETUP */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: rgba(217, 237, 247, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: url('stephanie.png') 16 16, auto;
  overflow: hidden;
  font-family: sans-serif;
  position: relative;
}

/* BIG BACKGROUND TEXT */
.background-text {
  position: absolute;
  top: 8%; /* 👈 this is the sweet spot for slight overlap */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(122, 174, 216, 0.2);
  user-select: none;
  pointer-events: none;
  line-height: 0.9;
  white-space: nowrap;
  font-size: 12vw;
  z-index: 0; /* keep it behind icons */
}

.float-text {
  display: inline-block;
  animation: None;
}

/* main name size */
.background-text {
  font-size: 12vw; /* large name text */
}



/* ICON ROW (CENTERED LINE) */
.icon-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
  transform: translateY(30px); /* move icons down */
}


/* ICON STYLE */
.icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* Float container (handles gentle up/down motion) */
.icon-float {
  animation: gentle-float 4s ease-in-out infinite;
}

/* Make icons grow slightly on hover */
.icon-link:hover .icon-img {
  transform: scale(1.15);
}

.icon-img {
  width: 80px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease-in-out; /* smooth grow */
}

/* Label under each icon */
.icon-label {
  text-align: center;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(84, 144, 196, 0.3); 
  text-transform: lowercase;
  letter-spacing: 0.05em;
  animation: gentle-float 4s ease-in-out infinite;
}

/* make FRIEND bigger */
.friend-link .icon-img {
  width: 100px;
}

/* CURSORS */
.about-link:hover {
  cursor: url('iris.png') 16 16, auto;
}

.rosso-link:hover {
  cursor: url('littlepencil.png') 28 21, auto;
}

.friend-link:hover {
  cursor: url('alien.png') 18 40, auto;
}

.about-link .icon-float,
.about-link .icon-label {
  animation-duration: 3.6s;
  animation-delay: 0s;
}

.rosso-link .icon-float,
.rosso-link .icon-label {
  animation-duration: 4.4s;
  animation-delay: 0.4s;
}

.friend-link .icon-float,
.friend-link .icon-label {
  animation-duration: 3.9s;
  animation-delay: 0.8s;
}


/* FLOATING ANIMATION */
@keyframes gentle-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}


/* Center everything on the page */
.page-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}




