/* Existing styles remain unchanged */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  height: 100vh;
  background: linear-gradient(
    135deg,
    #004B21,
    #830000,
    #000D66,
    #B1360E,
    #2E0E0E,
    #CC9710
  );  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Gradient animation remains the same */

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

/* Container styles */
.container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Image container styles */
.image-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Quadrant overlay styles */
.quadrant {
  position: absolute;
  width: 50%;
  height: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s, outline 0.3s;
  text-decoration: none;
}

.top-left {
  top: 0;
  left: 0;
}
.top-right {
  top: 0;
  right: 0;
}
.bottom-left {
  bottom: 0;
  left: 0;
}
.bottom-right {
  bottom: 0;
  right: 0;
}

.quadrant:hover,
.quadrant:focus {
  outline: 3px solid #333;
  background-color: rgba(255, 255, 255, 0);
}

/* Existing footer styles */
footer.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0);
  font-size: 1rem;
  color: #ffffff;
  z-index: 1000;
}

/* New fixed links section below the image */
#links-section {
  position: fixed;
  bottom: 50px; /* Adjust this value if needed to sit above the footer */
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px; /* Space between links */
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 999; /* Just below the footer */
}

#links-section a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

#links-section a:hover,
#links-section a:focus {
  background-color: rgba(255, 255, 255, 0.3);
}

.resume-link {
  position: fixed;
  bottom: 60px; /* Adjust slightly above footer if needed */
  right: 20px; /* Positioned at the far right */
  background-color: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
  z-index: 1001; /* Above footer */
}

.resume-link:hover,
.resume-link:focus {
  background-color: rgba(255, 255, 255, 0.3);
}
