/* Body gradient animation */
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(
    270deg,
    #ffffff,
    #f8f9fa,
    #f0f4f8,
    #e8f0f2,
    #f5f7fa
  );
  background-size: 800% 800%;
  animation: gradientShift 35s ease infinite;
  font-family: "Poppins", sans-serif;
}

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

/* Home container overlay for opacity/blur */
.home-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  z-index: 1;
  padding-top: 80px;
  /* Optional: semi-transparent overlay to soften background */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

/* Navigation */
.home-container .nav-item {
  display: flex;
}

.home-container .nav-item a {
  color: #00897b;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  font-family: Arial, sans-serif;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-container .nav-item a:hover {
  color: #006d61;
  transform: scale(1.05);
  text-shadow: 0 2px 8px rgba(0, 137, 123, 0.3);
}

.home-container .nav-item a.active {
  color: #006d61;
}

/* Navigation menus */
.home-container .navigation-menu {
  position: relative;
  z-index: 1000;
  color: #efefee;
  font-size: 40px;
  font-family: monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

/* Animation wrapper */
.animation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Home animation */
.home-animation {
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 1/1;
}

.home-container .navigation-menu-2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 137, 123, 0.1);
  padding: 15px 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.home-container .navigation-menu-2 ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Back section */
.back {
  height: 244px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 137, 123, 0.15);
}

/* Title */
.title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00897b, #006d61);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* Optional: responsive adjustments */
@media (max-width: 1200px) {
  .home-animation {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .home-container .navigation-menu-2 {
    margin-left: 20px;
    margin-top: 20px;
  }

  .home-animation {
    max-width: 450px;
  }

  .animation-wrapper {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .home-animation {
    max-width: 350px;
  }

  .home-container .nav-item a {
    font-size: 30px;
  }
}
