body {
  background-color: #5475C7;
  position: relative;
  margin-top: 80px;
  font-family: 'Poppins', sans-serif;
}

nav {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  z-index: 3; 
  display: flex;
  align-items: center;
}

nav a {
  color: #FBE0F1;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  transition: transform 0.3s ease, color 0.3s ease; 
}

nav a:hover {
  transform: scale(1.2); 
  color: #7596E0;
}

.home-btn {
  color: #FBE0F1;
  margin-right: 15px;
  text-decoration: none;
  font-weight: 500;
  padding: 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: rgb(38, 67, 155, 0.5);
  color: #FBE0F1;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(38, 67, 155, 0.9);
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #FBE0F1;
  padding: 10px;
  text-decoration: none;
  display: block;
  font-family: 'Poppins', sans-serif;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
  display: block;
}

h1 {
  color: #FBE0F1;
  font-size: 38.6px;
  position: fixed; /* Fix position relative to the viewport */
  top: 19%;
  left: 1.6%; 
  margin: 0; /* Remove unnecessary margins */
  text-align: right;
  z-index: 2; /* Ensure it's above other content */
}

h3 {
  color: #FBE0F1;
  font-size: 87px;
  position: fixed;
  top: 6%; 
  left: 1.5%; 
  margin: 0; 
  text-align: left;
  z-index: 2; */
}

p {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #FBE0F1;
  margin-left: 22px;
  text-align: center;
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}

.left-column {
  flex: 1;
  display: flex;
  flex-direction: column; /* Stacks the images vertically */
  align-items: flex-end;
}

.left-column .image-container {
  margin-right: 20px; /* Adds spacing between the images and the Spotify boxes */
}

.right-column {
  flex: 1; /* Makes the right column take available space */
}

.spotify-player-container {
  max-width: 600px; /* Increase the maximum width */
  width: 100%;      /* Ensure it stretches to its container's width */
  margin-left: auto; /* Aligns to the right */
  margin-right: 20px; /* Adds space on the right side */
  margin-bottom: 20px; /* Adds spacing between boxes */
  padding: 10px;
  background-color: #FBE0F1; /* Optional: dark background */
  border: 1px solid #FBE0F1; /* Optional: border for distinction */
  border-radius: 15px; /* Optional: additional styling */
}


.image-container {
  position: relative;
  display: inline-block;
  width: 500px;
  height: 500px;
  cursor: pointer;
  margin-top: 30px;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.5s ease;
}

#overlay-image {
  opacity: 0;
  z-index: 1;
}

.active #overlay-image {
  opacity: 1;
}

.active #original-image {
  opacity: 0.5;
}

#overlay-image.custom-size {
  width: 95%;
  height: auto;
  object-fit: contain;
  top: 30%;
  left: 1%;
}

.image-container:hover #original-image {
  transform: scale(1.1);
}

.image-container:hover #overlay-image {
  transform: scale(1);
}

.description-box {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgb(117, 150, 224, 0.8);
  color: #FBE0F1;
  padding: 10px;
  border-radius: 5px;
  width: 200px;
  height: 50px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 2;
  overflow-y: auto;
}

.image-container.active .description-box {
  opacity: 1;
  transform: translateY(0);
}

.custom-box {
  width: 200px;
  top: 30px;
  left: 80%;
  transform: translateX(-50%);
}

.description-box::-webkit-scrollbar {
  width: 8px;
}

.description-box::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

.description-box::-webkit-scrollbar-thumb {
  background: rgba(164, 187, 255, 0.5);
  border-radius: 4px;
}

.description-box::-webkit-scrollbar-thumb:hover {
  background: rgba(164, 187, 255, 0.7);
}

.row {
  position: relative; /* Ensure pseudo-element aligns with the row */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.row::before {
  content: ''; /* Required for pseudo-elements */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #DCB4CC 0%, #5475C7 100%);
  opacity: 0.5; /* Adjust for a subtle effect */
  z-index: -1; /* Ensure it stays behind row content */
  transform: skewY(-5deg); /* Adds a slanted effect for the stripe */
}


.left-column .image-container {
  width: 250px;   /* Smaller width */
  height: 350px;  /* Smaller height */
  margin-bottom: 20px; /* Adds space between images */
}

.left-column .image-container img {
  width: 100%; /* Ensures the image fits within the container */
  height: 100%; /* Ensures the image fits within the container */
}