/* badges.css */

/* ====== Root & Base Styles ====== */
:root {
  --primary: #a250a0;
  --primary-dark: #7c3c7a;
  --accent: #fa60a8;
  --success: #71cf87;
  --diamond-color: #00caff;
  --background: #f8f5fc;
  --text-dark: #333;
  --border-radius: 12px;
  --shadow-light: rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.5;
  padding: 20px;
  min-height: 100vh;
}

/* ====== Container ====== */
.badges-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 15px;
}

/* ====== Header ====== */
.badges-header {
  text-align: center;
  margin-bottom: 40px;
}
.fuggles-regular {
  font-family: "Fuggles", cursive;
  font-weight: 400;
  font-style: normal;
}

.badges-header h1 {       
 margin-bottom: 1rem;
 color: #FA60A8;

  font-family: 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
            
}

  


.badges-header p {
  font-size: 1.1rem;
  color: var(--primary-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* ====== Badge Grid ====== */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* ====== Individual Badge Cards ====== */
.badge-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow-light);
  padding: 25px 30px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.badge-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent);
}

/* ====== Badge Icons ====== */
.badge-icon {
  font-size: 4.5rem;
  margin-bottom: 20px;
}

.supporter-icon {
  color: var(--primary);
}

.diamond-icon {
  color: var(--diamond-color);
}

/* ====== Badge Titles & Price ====== */
.badge-card h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
border-bottom: 2px solid #f0f0f0;
            
}


.badge-price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
}

/* ====== Benefits List ====== */
.badge-benefits {
  list-style: none;
  margin-bottom: 25px;
  width: 100%;
  max-width: 320px;
  text-align: left;
  color: #555;
}

.badge-benefits li {
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
  font-weight: 500;
}

.badge-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ====== Badge Footer ====== */
.badge-footer {
  width: 100%;
  max-width: 320px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 18px;
  font-style: italic;
}
/* DIVIDER - This version WILL work */
.section-divider {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  
  /* Modern browsers */
  background-image: linear-gradient(90deg, 
    #dc32a9, #7e1994, 
    #f7bebe, #9400D3,  #dc32a9);
  
  /* Fallback for older browsers */
  background-color: #FF0000; /* Solid red fallback */
  
  /* Add these properties to ensure visibility */
  opacity: 1 !important;
  visibility: visible !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.site-footer {
text-align: right;
padding-right:20px;

position: fixed;
height:20px;
bottom:10px;
right: 0px;
left: 0px;
}
.site-footer p {
      margin-top:-15px;
      font-size: 16px;
      color: rgba(107, 11, 190, 0.9);
    }
.copyright {
      
      font-size: 12px;
      bottom: 0px;
    color: rgba(107, 11, 190, 0.9);
}
/* ====== Pulse Button ====== */
.pulse-button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  text-decoration: none;
  color: white;
  font-weight: 700;
  bottom:10px;
  padding: 24px 55px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(162, 80, 160, 0.5);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  animation: pulse 3s infinite ease-in-out;
  margin-top:55px;
}

.cta-pulse-button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 24px 64px;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(162, 80, 160, 0.5);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
  bottom: 10px;
  margin-top:5px;
  

}

.pulse-button:hover {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 15px rgba(162, 80, 160, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(162, 80, 160, 0.8);
  }
}

/* ====== Progress Module ====== */
.progress-module {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 15px var(--shadow-light);
  padding: 25px 30px;
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.progress-module h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.progress-module p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

/* Progress Bar Container */
.progress-bar-container {
  width: 100%;
  height: 22px;
  background: #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.7);
  user-select: none;
}

/* Progress Bar Fill */
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  white-space: nowrap;
  transition: width 0.6s ease;
  border-radius: 12px 0 0 12px;
}
 /* DIVIDER - This version WILL work */
.section-divider {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  
  /* Modern browsers */
  background-image: linear-gradient(90deg, 
    #dc32a9, #7e1994, 
    #f7bebe, #9400D3,  #dc32a9);
  
  /* Fallback for older browsers */
  background-color: #FF0000; /* Solid red fallback */
  
  /* Add these properties to ensure visibility */
  opacity: 1 !important;
  visibility: visible !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-divider-animate {
  display: block;
  height: 3px;
  width: 100%;
  margin: 1.5rem 0;
  border: none;
  position: relative;
  overflow: hidden;
  
  /* Fallback solid color */
  background-color: #f5ddc9;
}

.section-divider-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
  /* Gradient with the colors you want */
  background: linear-gradient(
    90deg,
    rgba(220, 50, 169, 0) 0%,
    rgba(220, 50, 169, 1) 20%,
    rgba(126, 25, 148, 1) 40%,
    rgba(247, 190, 190, 1) 60%,
    rgba(148, 0, 211, 1) 80%,
    rgba(220, 50, 169, 0) 100%
  );
  
  /* Animation properties */
  animation: shimmer 9s infinite linear;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.site-footer {
text-align: right;
padding-right:20px;

position: fixed;
height:20px;
bottom:10px;
right: 0px;
left: 0px;
}
/* ====== Responsive ====== */
@media (max-width: 650px) {
  .badge-grid {
    grid-template-columns: 1fr;
  }
}
