/* ========================================
   Pamoja Kitchen - SVG Icon System
   Using Lucide Icons (Open Source)
   https://lucide.dev
   ======================================== */

/* Base icon styles */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Icon sizes */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

/* ========================================
   Feature Icon Container - Premium Design
   ======================================== */
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--transition-base);
}

.feature-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Green variant */
.feature-icon.green {
  background: linear-gradient(145deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-icon.green:hover {
  box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Gold/Accent variant */
.feature-icon.gold {
  background: linear-gradient(145deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: var(--color-black);
}

.feature-icon.gold:hover {
  box-shadow: 0 10px 30px rgba(218, 165, 32, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Outline variant for lighter backgrounds */
.feature-icon.outline {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-icon.outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.25);
}

/* ========================================
   Contact Icon Styles
   ======================================== */
.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139, 0, 0, 0.2);
  transition: all var(--transition-fast);
}

.contact-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.3);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ========================================
   Newbie Guide Icons
   ======================================== */
.newbie-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(34, 139, 34, 0.25);
  transition: all var(--transition-fast);
}

.newbie-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(34, 139, 34, 0.3);
}

.newbie-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ========================================
   Footer Icons
   ======================================== */
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: var(--space-xs);
  color: var(--color-gray-400);
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ========================================
   Specialty Star Icon
   ======================================== */
.specialty {
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  margin-left: var(--space-xs);
}

.specialty svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
  stroke: none;
}

/* ========================================
   Order Method Icons
   ======================================== */
.order-method-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 14px rgba(139, 0, 0, 0.2);
  transition: all var(--transition-fast);
}

.order-method-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.order-method-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ========================================
   Sports Icons (Events page)
   ======================================== */
.sport-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: var(--space-sm);
  color: var(--color-primary);
}

.sport-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ========================================
   Thank You Checkmark
   ======================================== */
.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(145deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.thank-you-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ========================================
   Drinks Section Icons
   ======================================== */
.drink-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(145deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  margin: 0 auto var(--space-md);
  box-shadow: 0 6px 16px rgba(218, 165, 32, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.drink-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218, 165, 32, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.drink-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ========================================
   Step Number Icons (Catering How It Works)
   ======================================== */
.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(145deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: var(--text-xl);
  font-weight: 700;
  margin: 0 auto var(--space-md);
  font-family: var(--font-display);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.step-number:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(139, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
