@charset "utf-8";

/* =========================================================
   STVM Booster Membership Site
   Base Stylesheet

   Purpose:
   Provides the global Booster Club visual style used by all
   membership signup and renewal pages.
   ========================================================= */


/* =========================================================
   1. Theme Variables
   ========================================================= */

:root {
  --booster-green: #005643;
  --booster-green-dark: #003f32;
  --booster-green-light: #0b7058;

  --booster-gold: #aa9d71;
  --booster-gold-light: #d8cfaa;
  --booster-gold-dark: #7e734f;

  --booster-white: #ffffff;
  --booster-off-white: #f7f5ef;
  --booster-light-gray: #eeeeee;
  --booster-mid-gray: #666666;
  --booster-dark-gray: #222222;

  --booster-success: #1f7a4d;
  --booster-warning: #9a6a00;
  --booster-error: #b42318;

  --page-max-width: 1100px;
  --card-max-width: 760px;

  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 18px;

  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.16);

  --font-main: Arial, Helvetica, sans-serif;
}


/* =========================================================
   2. Global Page Setup
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-main);
  color: var(--booster-dark-gray);
  background:
    linear-gradient(rgba(0, 86, 67, 0.92), rgba(0, 63, 50, 0.96)),
    var(--booster-green);
}

a {
  color: var(--booster-green);
}

a:hover {
  color: var(--booster-green-dark);
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font-family: inherit;
}


/* =========================================================
   3. Page Layout
   ========================================================= */

.page-shell {
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 32px 20px;
}

.page-header {
  text-align: center;
  color: var(--booster-white);
  margin-bottom: 28px;
}

.page-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.page-subtitle {
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--booster-gold-light);
}

.content-card {
  width: 100%;
  max-width: var(--card-max-width);
  margin: 0 auto 24px;
  padding: 28px;
  background: var(--booster-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  border-top: 8px solid var(--booster-gold);
}

.content-card-wide {
  max-width: var(--page-max-width);
}

.card-title {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: var(--booster-green);
}

.card-subtitle {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--booster-mid-gray);
}

.section-title {
  margin: 28px 0 12px;
  font-size: 1.25rem;
  color: var(--booster-green);
}

.centered-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.page-footer-note {
  margin-top: 28px;
  text-align: center;
  color: var(--booster-gold-light);
  font-size: 0.95rem;
}


/* =========================================================
   4. Hero / Landing Page
   ========================================================= */

.hero-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px 32px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.96));
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--booster-gold);
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--booster-gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--booster-green);
}

.hero-title span {
  display: block;
}

.hero-text {
  max-width: 660px;
  margin: 20px auto 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--booster-dark-gray);
}


/* =========================================================
   5. Forms
   ========================================================= */

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
  color: var(--booster-green-dark);
}

.form-help {
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--booster-mid-gray);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 13px;
  font-size: 1rem;
  border: 1px solid #cccccc;
  border-radius: var(--border-radius-sm);
  background: var(--booster-white);
  color: var(--booster-dark-gray);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 3px solid rgba(170, 157, 113, 0.35);
  border-color: var(--booster-gold-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  line-height: 1.4;
}

.checkbox-row input {
  margin-top: 3px;
}


/* =========================================================
   6. Buttons
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background-color 0.12s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary {
  color: var(--booster-white);
  background: var(--booster-green);
}

.btn-primary:hover {
  color: var(--booster-white);
  background: var(--booster-green-dark);
}

.btn-gold {
  color: var(--booster-green-dark);
  background: var(--booster-gold);
}

.btn-gold:hover {
  color: var(--booster-green-dark);
  background: var(--booster-gold-light);
}

.btn-secondary {
  color: var(--booster-green);
  background: var(--booster-off-white);
  border: 1px solid var(--booster-gold);
}

.btn-secondary:hover {
  color: var(--booster-green-dark);
  background: var(--booster-gold-light);
}

.btn-danger {
  color: var(--booster-white);
  background: var(--booster-error);
}

.btn-link {
  padding: 0;
  min-height: auto;
  border-radius: 0;
  color: var(--booster-green);
  background: transparent;
  text-decoration: underline;
}

.btn-link:hover {
  box-shadow: none;
  transform: none;
}


/* =========================================================
   7. Message / Alert Panels
   ========================================================= */

.message {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: var(--border-radius-md);
  line-height: 1.45;
}

.message-info {
  background: #eef7f4;
  color: var(--booster-green-dark);
  border-left: 5px solid var(--booster-green);
}

.message-warning {
  background: #fff7e0;
  color: var(--booster-warning);
  border-left: 5px solid var(--booster-gold);
}

.message-error {
  background: #fff0ee;
  color: var(--booster-error);
  border-left: 5px solid var(--booster-error);
}

.message-success {
  background: #edf8f1;
  color: var(--booster-success);
  border-left: 5px solid var(--booster-success);
}


/* =========================================================
   8. Search Results / Lists
   ========================================================= */

.result-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.result-card {
  padding: 18px;
  border: 1px solid var(--booster-light-gray);
  border-radius: var(--border-radius-md);
  background: var(--booster-off-white);
}

.result-card-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.result-title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--booster-green);
}

.result-meta {
  margin: 6px 0 0;
  color: var(--booster-mid-gray);
  font-size: 0.95rem;
}


/* =========================================================
   9. Membership Level / Gift Cards
   ========================================================= */

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.option-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 22px;
  border: 2px solid var(--booster-light-gray);
  border-radius: var(--border-radius-lg);
  background: var(--booster-white);
  box-shadow: var(--shadow-soft);
}

.option-card:hover {
  border-color: var(--booster-gold);
}

.option-card-title {
  margin: 0 0 8px;
  color: var(--booster-green);
  font-size: 1.35rem;
}

.option-card-price {
  margin: 10px 0;
  font-size: 2rem;
  font-weight: 800;
  color: var(--booster-gold-dark);
}

.option-card-text {
  margin: 0 0 16px;
  line-height: 1.45;
  color: var(--booster-mid-gray);
}

.option-card-actions {
  margin-top: auto;
}

.option-card-image-wrap {
  width: 100%;
  min-height: 190px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--booster-off-white);
  border: 1px solid var(--booster-light-gray);

  display: flex;
  align-items: center;
  justify-content: center;
}

.option-card-image {
  width: 100%;
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.option-card-selectable {
  cursor: pointer;
}

.option-card-selectable:focus {
  outline: 3px solid rgba(170, 157, 113, 0.45);
  outline-offset: 3px;
}

.option-card-main {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.option-card-gift-intro {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--booster-light-gray);
  color: var(--booster-green-dark);
  font-weight: 700;
  text-align: center;
}

.option-card-gift-message {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin-top: 10px;
  margin-bottom: 16px;
  padding: 14px 16px;

  border-radius: var(--border-radius-md);
  background: rgba(170, 157, 113, 0.18);
  border: 2px solid var(--booster-gold);
  color: var(--booster-green-dark);
  font-weight: 700;
  line-height: 1.45;
}

.option-card-gift-message p {
  margin: 0;
}

.option-card-gift-message-warning {
  background: #fff7e0;
  color: var(--booster-warning);
  border-color: var(--booster-gold);
}

/* =========================================================
   10. Cart / Review Summary
   ========================================================= */

.summary-list {
  display: grid;
  gap: 16px;
  margin: 20px 0;
}

.summary-item {
  padding: 20px;
  border-radius: var(--border-radius-lg);
  background: var(--booster-white);
  border: 2px solid rgba(170, 157, 113, 0.55);
  box-shadow: var(--shadow-soft);
}

.summary-item-title {
  margin: 0 0 6px;
  color: var(--booster-green);
  font-size: 1.15rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  border-bottom: 1px solid #dddddd;
}

.summary-line:last-child {
  border-bottom: 0;
}

.summary-label {
  color: var(--booster-mid-gray);
}

.summary-value {
  font-weight: 700;
  text-align: right;
}

.total-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--border-radius-md);
  background: var(--booster-green);
  color: var(--booster-white);
}

.total-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 1.35rem;
  font-weight: 800;
}

.pricing-breakdown {
  margin-top: 18px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: #f3efe2;
  color: var(--booster-green-dark);
  border: 1px solid rgba(170, 157, 113, 0.65);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(170, 157, 113, 0.45);
}

.pricing-row-header {
  background: rgba(170, 157, 113, 0.24);
  font-weight: 800;
  color: var(--booster-green-dark);
}

.pricing-row-discount {
  background: rgba(0, 86, 67, 0.04);
  color: var(--booster-green-dark);
  font-style: italic;
}

.pricing-discount-label {
  text-align: left;
  white-space: nowrap;
}

.pricing-row-total {
  grid-template-columns: 1fr;
  padding: 16px;
  background: var(--booster-green);
  color: var(--booster-white);
  border-bottom: 0;
}

.pricing-total-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 1.45rem;
  font-weight: 800;
}

.pricing-label {
  text-align: left;
}

.pricing-qty {
  text-align: center;
}

.pricing-amount {
  text-align: right;
  font-weight: 700;
}

.pricing-divider {
  height: 2px;
  background: var(--booster-gold);
}


/* =========================================================
   11. Utility Classes
   ========================================================= */

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--booster-mid-gray);
}

.text-green {
  color: var(--booster-green);
}

.text-gold {
  color: var(--booster-gold-dark);
}

.hidden {
  display: none !important;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mb-0 {
  margin-bottom: 0;
}


.loading-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  padding: 18px;
  border-radius: var(--border-radius-md);
  background: var(--booster-off-white);
  color: var(--booster-green-dark);
  font-weight: 700;
}

.loading-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid var(--booster-gold-light);
  border-top-color: var(--booster-green);
  border-radius: 50%;
  animation: booster-spin 0.8s linear infinite;
}

@keyframes booster-spin {
  to {
    transform: rotate(360deg);
  }
}

.empty-results {
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--border-radius-md);
  background: var(--booster-off-white);
  border: 1px solid var(--booster-light-gray);
  color: var(--booster-mid-gray);
  text-align: center;
}

.gift-option-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.gift-option-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}


.gift-option-content {
  display: block;
  padding: 18px 20px;
  border: 2px solid var(--booster-light-gray);
  border-radius: var(--border-radius-md);
  background: var(--booster-white);
  color: var(--booster-green-dark);
  font-weight: 700;
  text-align: center;
  transition:
    border-color 0.12s ease,
    background-color 0.12s ease,
    box-shadow 0.12s ease,
    transform 0.12s ease;
}

.gift-option-card:hover .gift-option-content,
.gift-option-card:focus .gift-option-content {
  border-color: var(--booster-gold);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.gift-option-card:focus {
  outline: none;
}

.gift-option-card:focus .gift-option-content {
  outline: 3px solid rgba(170, 157, 113, 0.45);
  outline-offset: 3px;
}


.gift-option-title {
  display: block;
  font-size: 1.1rem;
}

.summary-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.summary-item-subtitle {
  margin: 4px 0 0;
  color: var(--booster-mid-gray);
  font-size: 0.95rem;
}

.btn-link-danger {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--booster-error);
  text-decoration: underline;
  font-weight: 700;
}

.btn-link-danger:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
  color: var(--booster-error);
}

.page-header-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

