/* FOOTER */

.footer-section {
  position: relative;
  color: rgb(213, 237, 235);
  overflow: hidden;
  background: #cbcbcb; /* dark base to avoid white bleeding */
  margin: 24px;
  box-shadow: 0 0 16px  rgb(0, 0, 0, 0.5);
  border-radius: 0px;
}

/* Base gradient blob styling */
.footer-gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  filter: blur(80px);
  opacity: 1;
  pointer-events: none;
  will-change: transform;
  transition: transform 1.5s ease-in-out;
}

/* Individual colored layers with rgba fade-outs */
.layer1 {
  background: radial-gradient(circle at 10% 40%, rgb(254, 243, 120) 0%, rgba(254, 243, 120) 60%);
}
.layer2 {
  background: radial-gradient(circle at 90% 30%, rgb(91, 115, 179) 0%, rgba(91, 115, 179) 60%);
}
.layer3 {
  background: radial-gradient(circle at 30% 80%, rgba(169, 76, 62) 0%, rgba(169, 76, 62) 40%);
}
.layer4 {
  background: radial-gradient(circle at 10% 20%, rgb(91, 115, 179) 0%, rgba(91, 115, 179) 10%);
}
/* Optional: Add a 5th layer for richer coverage */
.layer5 {
  background: radial-gradient(circle at 5% 10%, rgb(75, 75, 69) 0%, rgb(70, 69, 58) 5%);
}

.layer6 {
  background: radial-gradient(circle at 25% 20%, rgba(169, 76, 62) 0%, rgba(169, 76, 62) 10%);
}

/* Optional: soft top fade gradient */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;

  z-index: 1;
  pointer-events: none;
}

/* Footer content layout */
.footer-name-wrapper {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.footer-name {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  font-size: 3rem;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}

.footer-nav li a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-nav li a:hover {
  text-decoration: underline;
}

.linkedin-icon img {
  filter: brightness(0) invert(1);
  vertical-align: baseline;
  transition: transform 0.3s ease;
}

.linkedin-icon:hover img {
  transform: scale(1.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .footer-section .row > .col-12 {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .footer-name-wrapper {
    align-items: flex-start;
    width: 100%;
  }

  .footer-name {
    text-align: left;
    font-size: 2.5rem;
  }

  .linkedin-icon {
    margin-top: 0.5rem;
  }
}
