/* === Background Styling === */
.landingBackground::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/images/SpaceForCG.webp"); /* Change as needed */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(3px);
  opacity: 0.9;
  z-index: -2;
}

.landingBackground::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 25vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
  z-index: -1;
  pointer-events: none;
}

/* === Main Heading === */
h2 mark {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

/* === Navigation Pie Container === */
.circle-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
}

.pie-container {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
}

.pie-slice {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.pie-slice button {
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.pie-slice button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* === Footer === */
footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
}

/* === Background Transitions (from JS hover) === */
.cover-bg::before {
  background-image: url("assets/images/SpaceForR.webp");
}

.career-bg::before {
  background-image: url("assets/images/spaceForCL.webp");
}

.resume-bg::before {
  background-image: url("assets/images/SpaceForCG.webp");
}

