/* Dynamic background: animated geometric shapes + gradients */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #212121;
}

.dynamic-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none;
 background: radial-gradient(ellipse at top right, #A7C4A055, transparent 80%),
            radial-gradient(ellipse at 40% 60%, #B08D5722, transparent 70%);

  animation: bgMove 10s linear infinite alternate;
}
@keyframes bgMove {
  0% {
    background-position: top right, 40% 60%;
  }
  100% {
    background-position: bottom left, 20% 80%;
  }
}

/* Brand Colors */
.text-bronze { color: #B08D57; }
.text-sage { color: #7C9C7D; }
.bg-sage { background-color: #7C9C7D !important; }
.bg-sage-light { background-color: #A7C4A0 !important; }
.bg-dark { background-color: #212121 !important; }
.btn-bronze {
  background-color: #B08D57;
  color: #fff;
  border: none;
  transition: box-shadow 0.2s, background 0.2s;
}
.btn-bronze:hover {
  background-color: #DAA520;
  color: #fff;
  box-shadow: 0 0 10px #B08D5777;
}
.border-bronze {
  border: 2px solid #B08D57 !important;
}
input.bg-sage, textarea.bg-sage, select.bg-sage {
  background-color: #A7C4A0 !important;
  color: #212121 !important;
  border: 1px solid #B08D57;
}
input.bg-sage:focus, textarea.bg-sage:focus, select.bg-sage:focus {
  outline: none;
  box-shadow: 0 0 0 2px #B08D5733;
}

.card.bg-dark {
  border-radius: 1rem;
  box-shadow: 0 6px 24px #21212199;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  h1, .display-5 { font-size: 2rem; }
  .card-title { font-size: 1.1rem;}
}


.profile-img {
  width: 320px !important;
  height: 320px !important;
  max-width: 95vw;
  border-radius: 18px;
  box-shadow: 0 4px 24px #21212144;
  border: 3px solid #B08D57;
  background: #7C9C7D;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}