.pitch-detail-container {
  max-width: 800px;
  margin: 2rem auto;
  font-family: Arial, sans-serif;
  color: #333;
}

.pitch-location {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #555;
}

.pitch-title {
  font-size: 2rem;
  margin-top: 0.2rem;
}

.pitch-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.2rem;
}

.pitch-summary, .pitch-min-invest {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.invest-button {
  background: #ED8100;
  color: white;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 4px;
}

.invest-button:hover {
  background: #d65a3b;
}

.pitch-tabs {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.tab {
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 1rem;
}

.tab.active {
  border-bottom: 3px solid #ED8100;
  font-weight: bold;
}

.pitch-section h2 {
  margin-top: 2rem;
  color: #ED8100;
}

.achievement { margin-left: 1rem; margin-bottom: 0.5rem; }

.team-member {
  padding: 0.5rem 0;
  border-top: 1px solid #ddd;
}


/* public/css/pitch-detail.css - brand-ish colors + layout */
body { font-family: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif; color: #2b2b2b; }
.text-orange { color: #ED8100 !important; }
.bg-orange { background-color: #ED8100 !important; }
.text-yellow { color: #F2C94C !important; }

.container { max-width: 1150px; margin: 0 auto; padding: 15px; }

/* Hero box */
.border-2 { border: 1px solid #e9ecef; border-radius: 8px; }
.bg-white { background: #ffffff; }
.p-4 { padding: 1rem; }
.mb-4 { margin-bottom: 1rem; }

.pitch-title { font-size: 1.1rem; font-weight: 600; color: #222; }

/* progress bar */
.progress-wrap { background: #f1f3f5; height: 8px; border-radius: 6px; overflow: hidden; }
.progress-bar { height: 8px; background: #ED8100; width: 0; transition: width .4s ease; }

/* tabs */
.nav-tabs .nav-link.active { background: transparent; border: none; color: #2b2b2b; border-bottom: 3px solid #ED8100; }
.tab-pill { background: #ED8100; color: #fff; padding: 2px 8px; border-radius: 999px; font-size: 12px; }

/* team list */
.bg-gray-100 { background: #f8f9fa; padding: 1rem; border-radius: 6px; }

/* responsive embeds */
.embed-responsive { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 6px; }
.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive img { position: absolute; top:0; left:0; width:100%; height:100%; }

/* small helpers */
.small { font-size: .85rem; color: #6c757d; }
.btn-primary { background: #ED8100; border: none; color: #fff; }
.table { width:100%; margin-bottom: 1rem; border-collapse: collapse; }
.table td, .table th { padding: .5rem; border: 1px solid #e9ecef; }
.table thead { background: #f8f9fa; }


:root{
  --brand-orange: #ED8100;
  --brand-yellow: #F2C94C;
  --brand-dark: #1d3557;
  --brand-font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial;
}
body { font-family: var(--brand-font); color: #333; }
.text-orange { color: var(--brand-orange) !important; }
.bg-orange { background: var(--brand-orange) !important; color:#fff; }
.btn-primary { background: var(--brand-orange); border-color: var(--brand-orange); }
.tab-pill { background: var(--brand-orange); }

