/* Scroll To Top Button */
.scroll-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4B286D; /* Brand Purple */
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, background 0.2s ease;
  z-index: 999;
}

.scroll-btn:hover {
  background: #856800; /* Accent Mustard */
}

#scroll-up {
  display: none;
}

/* Buttons */
.btn-brand {
  border: 3px solid #856800;
  color: #4B286D;
  background: white;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-brand:hover {
  background: #856800;
  color: white;
}

/* Links */
.link-brand {
  color: black;
  transition: color 0.2s ease;
}

.link-brand:hover {
  color: #4B286D;
}

/* Section Divider */
.section-divider {
  height: 2px;
  width: 100%;
  background: #E0E0E0;
  border-radius: 999px;
  margin: 60px 0;
}

/* Scrollbars */
html {
  scrollbar-width: thin;
  scrollbar-color: #4B286D #E0E0E0;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #E0E0E0;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #4B286D;
  border-radius: 10px;
  border: 3px solid #E0E0E0;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #856800;
}
