@import url("css2.css");

body,
html {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Sour Gummy", sans-serif;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;

  display: flex;
  align-items: center;
}

#blob-path {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  height: 100vh;
  min-width: 10000000px;
}

.blob-block {
  position: relative;
  text-align: center;
  width: 250px;
}

.block {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background-color: black;
  background-size: cover;
  background-position: center;
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: 10px;
  padding: 8px;
  font-size: 15px;
  color: #333;
  text-align: left;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.details div {
  padding-radius: 4px;
  padding-top: 4px;
}

.read-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.875rem;
}
.read-more-btn:hover {
  color: #1e40af; /* Tailwind text-blue-800 */
}

/* Angled Blob Button Styles */
.button-container {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 20; /* Ensure it appears above other content */
}

.angled-button {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg); /* Tilted appearance */
  background-color: #ff69b4; /* Cute pink */
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angled-button:hover {
  transform: rotate(-5deg) scale(1.05); /* Slight zoom */
  box-shadow: 0px 8px 20px rgba(255, 105, 180, 0.5);
}

.icon {
  margin-right: 0.5rem;
}

.icon-image {
  width: 24px;
  height: 24px;
  animation: blob-bounce 1.5s infinite; /* Blob bounce effect */
}

.text {
  font-weight: bold;
  font-family: "Sour Gummy", sans-serif; /* Cute font */
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Blob Bounce Animation */
@keyframes blob-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Button Styles for Each Block */
.block-button {
  position: absolute;
  top: -60px;
  right: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  margin-top: 10px;
  background-image: url("blobshape.gif"); /* Blob Shape GIF */
  background-size: cover;
  background-position: center;
  border: none;
  text-decoration: none;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: rem;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blob-text {
  position: absolute;
  font-family: "Sour Gummy", sans-serif; /* Cute font */
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

#blob-path::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff69b4, #6a5acd, #48d1cc);
  background-size: 300%;
  z-index: -1;
  animation: gradient-move 5s infinite linear;
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Custom Scrollbar */
.custom-scrollbar {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2); /* Light background */
  border-radius: 5px;
  overflow: hidden;
}

.scroll-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px; /* Initial thumb width */
  height: 100%;
  background: rgba(255, 255, 255, 0.8); /* Thumb color */
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.scroll-thumb:hover {
  background: rgba(255, 255, 255, 1); /* Highlighted thumb color */
}
