/* ── Brand Typography ──────────────────────────────────────── */

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* ── Brand Button System ───────────────────────────────────── */

/* Gold — primary action (Donate, final confirmations) */
.btn-gold {
  background-color: #FBC02D;
  color: #1A1A1A;
  border: none;
  border-radius: 8px;
}
.btn-gold:hover,
.btn-gold:focus {
  background-color: #e0ad28;
  color: #1A1A1A;
}

/* Purple — secondary action (Create, Edit, View, Continue) */
.btn-purple {
  background-color: #6A1B9A;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
}
.btn-purple:hover,
.btn-purple:focus {
  background-color: #5a1685;
  color: #FFFFFF;
}

/* Outline Purple — neutral action (Cancel, Back, Close) */
.btn-outline-purple {
  background-color: #FFFFFF;
  border: 1px solid #6A1B9A;
  color: #6A1B9A;
  border-radius: 8px;
}
.btn-outline-purple:hover,
.btn-outline-purple:focus {
  background-color: #6A1B9A;
  color: #FFFFFF;
}

/* ── Badge Utilities ───────────────────────────────────────── */

/* Brand purple badge — replaces Bootstrap bg-primary on notification "New" badges */
.bg-brand-purple {
  background-color: #6A1B9A !important;
  color: #FFFFFF;
}

/* ── Navigation Links ──────────────────────────────────────── */

/* Used for profile page navigation items (Campaigns, Donors, etc.) */
.pfp-nav-link {
  color: #6A1B9A;
  font-weight: 500;
  text-decoration: none;
}
.pfp-nav-link:hover {
  color: #4a148c;
  text-decoration: underline;
}

/* ── Background ────────────────────────────────────────────── */

/*deep purple gradient*/
/*body {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f7f0fb 25%,
    #e4d3f5 50%,
    #b085d5 75%,
    #6a1b9a 100%
  );
  min-height: 100vh;
}*/

/*light purple gradient*/

body {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #f7f0fb 100%
  );
  min-height: 100vh;
}

/* PFP Card Styles */
.pfp-card-width {
  max-width: 700px;
  width: 100%;
}

.pfp-card-border {
  border-radius: 0.75rem;
}

/* Avatar placeholder size utilities */
.avatar-sm {
  width: 64px;
  height: 64px;
}

.avatar-lg {
  width: 200px;
  height: 200px;
}

/* Admin card — translucent white, larger radius */
.card-admin-light {
  border-radius: 1rem;
  background-color: #ffffffcc;
}

/* Text formatting utility */
.text-pre-wrap {
  white-space: pre-wrap;
}


/* Example: Make navbar transparent */
.navbar {
  background-color: transparent !important;
}

.navbar .nav-link {
  color: #8e24aa;
  transition: color 0.3s ease, font-weight 0.3s ease;
}

.navbar .nav-link:hover {
  color: #4a148c; /* a richer, darker purple */
  font-weight: 600;
}

.btn-purple-outline {
  color: #6a1b9a;
  border: 2px solid #6a1b9a;
  background-color: white;
  border-radius: 2rem;
  padding: 0.75rem 2rem;
  font-size: 1.25rem;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

.btn-purple-outline:hover {
  background-color: #6a1b9a;
  color: white;
}

.custom-search {
  border: 2px solid #9c4dcc;
  color: #4a0072;
}

input.form-control.custom-search {
  background-color: #ffffff;
}

.custom-search::placeholder {
  color: #a175c6;
}

.custom-search:focus {
  box-shadow: 0 0 0 0.2rem rgba(156, 77, 204, 0.2);
  outline: none;
}

/* Thermometer */

#countdown-wrap {
  width: 100%;
  height: 25px;
  padding: 20px;
  font-family: arial;
  max-width: 650px;
 
}
#goal {
  font-size: 30px;
  text-align: right;
  color: green;
}
@media only screen and (max-width: 640px) {
  #goal {
    text-align: center;
  }
}
#glass {
  width: 100%;
  height: 10px;
  background: #c7c7c7;
  border-radius: 10px;
  float: left;
  overflow: hidden;
}
#progress {
  float: left;
  height: 10px;
  background: #6a1b9a;
  z-index: 333;
}
.goal-stat {
  display: block;
  padding: 10px;
  float: left;
  margin: 0;
  color: black;
}
@media only screen and (max-width: 640px) {
  .goal-stat {
    width: 50%;
    text-align: center;
  }
}
.goal-number,
.goal-label {
  display: block;
}

/* .donate-button — retired in Pass 2; replaced by .btn-gold with Bootstrap utilities */

/* home page steps */

.pfp-step-card {
  background: #ffffff;
  border: 2px solid #6A1B9A !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.2s ease;
}

.pfp-step-card:hover {
  transform: translateY(-4px);
  box-shadow:
          0 10px 24px rgba(0, 0, 0, 0.08),
          0 0 0 3px rgba(106, 27, 154, 0.2);
}

.pfp-steps-desktop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 0;
  align-items: center;
}

.pfp-step-card-desktop {
  min-height: 156px;
}

.pfp-step-arrow-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pfp-arrow-text {
  display: inline-block;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 700;
  color: #6A1B9A;
}

.pfp-arrow-down {
  display: inline-block;
  width: 5px;
  height: 40px;
  background-color: #6A1B9A;
  position: relative;
}

.pfp-arrow-down::after {
  content: "";
  position: absolute;
  left: -6px;
  bottom: -2px;
  width: 16px;
  height: 16px;
  border-left: 5px solid #6A1B9A;
  border-bottom: 5px solid #6A1B9A;
  transform: rotate(-45deg);
}

/* Practice Highlight for Campaign Show */

.pfp-practice-highlight {
  font-size: 1.10rem;
}


