/* FoundrFuse Graphics CSS - Using CSS instead of images */

/* Gradients */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.gradient-secondary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: white;
}

.gradient-founder {
  background: linear-gradient(135deg, var(--founder-color), #8a2be2);
  color: white;
}

.gradient-investor {
  background: linear-gradient(135deg, var(--investor-color), #00bcd4);
  color: white;
}

.gradient-blue-purple {
  background: linear-gradient(135deg, #4a6bff, #c04aff);
  color: white;
}

.gradient-orange-red {
  background: linear-gradient(135deg, #ff9d4a, #ff4a4a);
  color: white;
}

.gradient-green-blue {
  background: linear-gradient(135deg, #4aff9d, #4aeaff);
  color: var(--neutral-800);
}

.gradient-gray {
  background: linear-gradient(135deg, var(--neutral-300), var(--neutral-400));
  color: var(--neutral-800);
}

/* Background Patterns */
.bg-dots {
  background-image: radial-gradient(var(--neutral-300) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-grid {
  background-image: linear-gradient(var(--neutral-200) 1px, transparent 1px),
                    linear-gradient(to right, var(--neutral-200) 1px, transparent 1px);
  background-size: 20px 20px;
}

.bg-stripes {
  background: repeating-linear-gradient(
    45deg,
    var(--neutral-100),
    var(--neutral-100) 10px,
    var(--neutral-200) 10px,
    var(--neutral-200) 20px
  );
}

.bg-waves {
  background: linear-gradient(45deg, var(--neutral-200) 25%, transparent 25%) -50px 0,
              linear-gradient(135deg, var(--neutral-200) 25%, transparent 25%) -50px 0,
              linear-gradient(45deg, transparent 75%, var(--neutral-200) 75%) -50px 0,
              linear-gradient(135deg, transparent 75%, var(--neutral-200) 75%) -50px 0;
  background-size: 100px 100px;
  background-color: var(--neutral-100);
}

/* Geometric Shapes */
.circle {
  border-radius: 50%;
}

.square {
  border-radius: 0;
}

.rounded-square {
  border-radius: 10px;
}

.triangle-up {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 86.6px solid var(--primary-color);
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 86.6px solid var(--primary-color);
}

.hexagon {
  position: relative;
  width: 100px;
  height: 57.74px;
  background-color: var(--primary-color);
  margin: 28.87px 0;
}

.hexagon:before,
.hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
}

.hexagon:before {
  bottom: 100%;
  border-bottom: 28.87px solid var(--primary-color);
}

.hexagon:after {
  top: 100%;
  width: 0;
  border-top: 28.87px solid var(--primary-color);
}

.diamond {
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  transform: rotate(45deg);
}

/* Avatars and Placeholders */
.avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neutral-300), var(--neutral-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 2rem;
}

.image-placeholder {
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-600);
  font-weight: bold;
}

.image-placeholder-icon::before {
  content: '🖼️';
  font-size: 2rem;
  margin-right: 10px;
}

/* Graphics Effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.neumorphism {
  background: var(--neutral-100);
  box-shadow: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
  border-radius: 50px;
}

.neumorphism-inset {
  background: var(--neutral-100);
  box-shadow: inset 20px 20px 60px #d1d9e6, inset -20px -20px 60px #ffffff;
  border-radius: 50px;
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.shadow-hard {
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.1);
}

/* Icons using pure CSS */
.icon {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}

.icon-like::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-dislike::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 5px;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(135deg);
}

/* Logo Graphics */
.logo-graphic {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-founder {
  background: linear-gradient(135deg, var(--founder-color), #8a2be2);
  border-radius: 8px;
  transform: rotate(15deg);
}

.logo-investor {
  background: linear-gradient(135deg, var(--investor-color), #00bcd4);
  border-radius: 8px;
  transform: rotate(-15deg);
  margin-left: -10px;
}

.logo-heart {
  position: relative;
  width: 20px;
  height: 20px;
}

.logo-heart::before,
.logo-heart::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12px;
  height: 20px;
  border-radius: 12px 12px 0 0;
  background: var(--secondary-color);
}

.logo-heart::before {
  left: 8px;
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}

.logo-heart::after {
  left: 0;
  transform: rotate(45deg);
  transform-origin: 100% 100%;
}

/* Card UI Elements */
.card-profile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card-profile-header {
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.card-profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid white;
  background: var(--neutral-300);
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.card-profile-content {
  padding-top: 60px;
  padding-bottom: 20px;
  text-align: center;
  background: white;
}

/* Match Card for Swipe Interface */
.swipe-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 450px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.swipe-card-header {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  display: flex;
  align-items: center;
  justify-content: center;
}

.swipe-card-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid white;
  background: linear-gradient(135deg, var(--neutral-300), var(--neutral-400));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
}

.swipe-card-content {
  padding: 20px;
}

.swipe-card-actions {
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.swipe-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swipe-like {
  background: var(--success-color);
  color: white;
}

.swipe-dislike {
  background: var(--danger-color);
  color: white;
}

.swipe-like:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(50, 210, 150, 0.3);
}

.swipe-dislike:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 10px 20px rgba(240, 80, 110, 0.3);
}

/* Decorative Elements */
.decorative-dots {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: -1;
  opacity: 0.5;
}

.decorative-dots::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-light) 2px, transparent 2px);
  background-size: 20px 20px;
}

.decorative-waves {
  position: absolute;
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.decorative-waves::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, transparent 49%, var(--primary-light) 50%, transparent 51%);
  background-size: 20px 20px;
}

/* Badge Graphics */
.badge-premium {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffd700, #ff9d00);
  color: var(--neutral-900);
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 3px 6px rgba(255, 215, 0, 0.3);
}

.badge-new {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--success-color), #20b27a);
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 3px 6px rgba(50, 210, 150, 0.3);
}

.badge-founder {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--founder-color), #8a2be2);
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
}

.badge-investor {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--investor-color), #00bcd4);
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
}

/* Progress Elements */
.progress-bar {
  width: 100%;
  height: 10px;
  background-color: var(--neutral-200);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
  transition: width 0.5s ease;
}

.progress-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(var(--primary-color) var(--progress, 0%), var(--neutral-200) 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-circle::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
}

.progress-circle-text {
  position: relative;
  font-weight: bold;
  z-index: 1;
}

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 8px 16px rgba(74, 107, 255, 0.2);
}

.feature-icon-match::before {
  content: '🤝';
}

.feature-icon-message::before {
  content: '💬';
}

.feature-icon-profile::before {
  content: '👤';
}

.feature-icon-search::before {
  content: '🔍';
}

.feature-icon-analytics::before {
  content: '📊';
}

/* Pricing Table Graphics */
.pricing-plan {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 30px 20px;
  text-align: center;
}

.pricing-free .pricing-header {
  background: linear-gradient(135deg, var(--neutral-300), var(--neutral-400));
  color: var(--neutral-900);
}

.pricing-premium .pricing-header {
  background: linear-gradient(135deg, #ffd700, #ff9d00);
  color: var(--neutral-900);
}

.pricing-enterprise .pricing-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 20px 0;
}

.pricing-period {
  font-size: 0.9rem;
  opacity: 0.7;
}

.pricing-features {
  padding: 20px;
}

.pricing-feature {
  padding: 10px 0;
  border-bottom: 1px solid var(--neutral-200);
}

.pricing-feature::before {
  content: '✓';
  color: var(--success-color);
  margin-right: 10px;
}

.pricing-feature-inactive {
  color: var(--neutral-500);
}

.pricing-feature-inactive::before {
  content: '✗';
  color: var(--neutral-500);
}

/* Testimonial Graphics */
.testimonial {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--neutral-200);
  font-family: 'Georgia', serif;
  line-height: 1;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding-left: 30px;
}