/* Location: /public_html/assets/style.css */

:root {
  --sbn-navy: #0f2137;
  --sbn-kesri: #e65100;
  --sbn-kesri-hover: #cc4400;
  --sbn-gold: #c5a059;
  --sbn-bg: #f8fafc;
  --sbn-surface: #ffffff;
  --sbn-text-primary: #1e293b;
  --sbn-text-muted: #64748b;
  --sbn-border: #e2e8f0;
  
  --badge-growth-bg: #e0f2fe;
  --badge-growth-text: #075985;
  --badge-founders-bg: #fef3c7;
  --badge-founders-text: #92400e;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--sbn-bg);
  color: var(--sbn-text-primary);
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background-color: var(--sbn-navy);
  color: #ffffff;
  border-bottom: 2px solid var(--sbn-gold);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background-color: var(--sbn-kesri);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--sbn-kesri-hover);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid var(--sbn-gold);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: var(--sbn-gold);
  color: var(--sbn-navy);
}

/* DIRECTORY FILTER BAR */
.directory-header {
  margin-bottom: 30px;
}

.directory-header h1 {
  font-size: 2rem;
  color: var(--sbn-navy);
  margin-bottom: 8px;
}

.filter-card {
  background: var(--sbn-surface);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--sbn-border);
  box-shadow: 0 2px 8px rgba(15, 33, 55, 0.04);
  margin-bottom: 30px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 120px;
  gap: 15px;
  align-items: center;
}

.filter-grid input, .filter-grid select {
  padding: 11px 14px;
  border: 1px solid var(--sbn-border);
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
}

/* DIRECTORY CARDS GRID */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.member-card {
  background: var(--sbn-surface);
  border-radius: 10px;
  padding: 24px;
  border: 1px solid var(--sbn-border);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.member-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 33, 55, 0.08);
}

.card-top {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sbn-navy);
  color: var(--sbn-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.member-info h3 {
  font-size: 1.15rem;
  color: var(--sbn-navy);
  margin-bottom: 2px;
}

.company-name {
  font-weight: 600;
  color: var(--sbn-text-primary);
  font-size: 0.95rem;
}

.industry-tag {
  color: var(--sbn-text-muted);
  font-size: 0.85rem;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
}

.badge.growth {
  background-color: var(--badge-growth-bg);
  color: var(--badge-growth-text);
}

.badge.founders {
  background-color: var(--badge-founders-bg);
  color: var(--badge-founders-text);
  border: 1px solid var(--sbn-gold);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--sbn-border);
}

.btn-contact {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--sbn-navy);
  color: #ffffff;
}

.btn-contact:hover {
  background: var(--sbn-kesri);
}