/* Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  color: white;
  background-color: black;
  overflow-x: hidden;
}

/* Background Image */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../allImages/projectsImages/projects wallpaper.png') no-repeat center center/cover;
  z-index: -1;
}

/* Layout */
.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

.project-box {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Headings */
h1 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 40px;
}

h2 {
  text-align: center;
  font-size: 2em;
  margin-top: 0;
}

/* Princess Peach Image */
.project-box img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  border-radius: 15px;
  padding: 10px;
}

.project-box img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px #ffffff) brightness(1.2);
}

/* Video Icon Links */
.video-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.video-links a {
  margin: 10px;
}

.video-links img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
  border-radius: 15px;
  padding: 10px;
}

.video-links img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px #ffffff) brightness(1.2);
}

/* Dynamic Text Transition */
#dynamicHeading,
#dynamicDescription {
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: translateY(0);
}

#dynamicHeading.fade-out,
#dynamicDescription.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.description-text {
  font-size: 1rem;
  color: #fff;
  margin-top: 10px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
