/* 
 * STANDARDIZED PAGE STYLES - SINGLE SOURCE OF TRUTH
 * John Chervanev LLC Website
 * 
 * Shared styles for all content pages:
 * - tenants.html, vendors.html, documents.html
 * - contact.html, vision.html, property-1.html
 * - terms.html, privacy.html, financials.html
 * 
 * Clean, uniform classes with consistent naming conventions
 */

/* ===== PAGE LAYOUT ===== */
.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  text-align: center;
  margin: 3rem 0;
}

.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.1;
}

.page-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 3rem 0 2rem;
}

.section-divider-line {
  flex: 1;
  height: 0.5px;
  background: var(--border);
}

.section-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  margin-bottom: 3rem;
}

.content-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--text);
}

.content-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-text:last-child {
  margin-bottom: 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.section-text:last-child {
  margin-bottom: 0;
}

/* ===== LISTS ===== */
.content-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.content-list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.content-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--text);
  font-size: 12px;
}

/* ===== BUTTONS ===== */
.button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.button {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  cursor: pointer;
}

.button-primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.button-primary:hover {
  background: var(--text-secondary);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--border-hover);
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.2s;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--text);
}

.card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== METRICS (financials.html) ===== */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.metric-card {
  background: var(--bg-secondary);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.metric-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 11px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--bg-secondary);
  border-left: 3px solid var(--text);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.highlight-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.highlight-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ===== FORM ELEMENTS ===== */
.form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--border-hover);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-button {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
}

.form-button:hover {
  background: var(--text-secondary);
  transform: translateY(-2px);
}

/* ===== LINK LISTS ===== */
.link-list {
  list-style: none;
  padding: 0;
}

.link-list li {
  margin-bottom: 0.75rem;
}

.link-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.link-list a:hover {
  color: var(--text-secondary);
  text-decoration: underline;
}

.link-icon {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ===== DOCUMENT ITEMS ===== */
.document-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.document-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  transition: all 0.2s;
}

.document-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.document-info {
  flex: 1;
}

.document-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.document-description {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.6;
}

.document-action {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.document-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  padding: 0.5rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.download-button {
  padding: 0.75rem 1.5rem;
  background: var(--text);
  color: var(--bg);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s;
}

.download-button:hover {
  background: var(--text-secondary);
  transform: translateY(-2px);
}

/* ===== VENDOR CATEGORIES (vendors.html) ===== */
.vendor-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.vendor-category {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.category-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.vendor-item {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.vendor-item:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--text);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .vendor-categories {
    grid-template-columns: 1fr;
  }
  
  .page-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .page-title {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .document-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .document-action {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 32px;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .button {
    width: 100%;
    text-align: center;
  }
}

/* ===== PROPERTY PAGE STYLES ===== */
.property-header {
  text-align: center;
  margin: 2rem 0 3rem;
}

.property-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.property-location {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.property-hero-image {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.property-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.property-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-card {
  background: var(--bg-secondary);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  bor
/* ===== PROPERTY PAGE STYL;
 .property-header {
  text-align: centho  text-align: cenlo  margin: 2rem 0 3rer)}

.property-badge {
ateY(  display: inlinlabel {
  font-size: 13px;
  color: var(--bg);
  paddiry  padding: 6px 14pm:  border-radius: 20r-  font-size: 12px;
  rg  font-weight: 50;
  lettat-value {
  f  text-transform: upperc,  ans-serif;
  font-size: 36px;
  color: var(--text);
    font-size: 16px;
2e  color: var(--teon  margin-top: 0.5rem;
}

.propar}

.proauto;
  padding: 2  w 0;
}

.property-con  max-width: on  margin: 0 auto 3rue  border-radius: vart-s  overflow: hidden;
  box-shad.04em  box-shadow: 0 4p 0}

.property-hero-image img {
  width: 1y-con  width: 100%;
  height: x;  height: autt:  displ color: v}

.property-staary);
  margin-bottom: 1.5re  grid-templateli  gap: 1.5rem;
  margin: 3rem 0;
}

.stat-card {
  background
.  margin: 3reli {
  padding: 0.75rem  backgroun2r  padding: 2rem 1.5rem;
  border-si  border-radius: var(-t:  text-align: center;
  bor
/* ==ry  bor
/* ===== PROPE1p/* =li .property-header {
  text-e-  text-align: cent {
.property-badge {
ateY(  display: inlinlabel {
  font-size: nt:ateY(  display: on  font-size: 13px;
  col colo  color: var(--bg
   paddiry  padding
}  rg  font-weight: 50;
  lettat-value {
  f  text-transform: uppercso  lettat-value {
  f bo  f  text-transr(  font-size: 36px;
  color: var(--text)ex  color: var(--te      font-size: 16px;pr2e  color: var(--teon}

.propar}

.proauto;
  padding: 2  w 0;t-siz
.proau;
   paddinsp}

.property-con margi  box-shad.04em  box-shadow: 0 4p 0}

.property-hero-image img {
  width: 1y-con  width: 1(-
.property-hero-image img {
  width2re  width: 1y-con  width: 1sp  height: x;  height: autt: st
.property-staary);
  margin-bottom: 1.5re
.btn-primary, .btn-sec  margin: 3rem 0;
}

.stat-card {
  background
.  mapx}

.stat-card {
s: va  backgrounmd.  margin: iz  padding: 0.75reeight: 500;
  text-decoration: none;
  transition: all 0.  bor
/* ==ry  bor
/* ===== PROPE1p/* =li .property-hearo/* = v/* ===== PR);  text-e-  text-align: cent {
.property- v.property-badge {
ateY(  disy:ateY(  display: ou  font-size: nt:ateY(  dispar  col colo  color: var(--bg
   paddiry  padding
}  pa   paddiry  padding
}  rg ;
}  rg  font-weightd   lettat-value {
  f n-s  f  text-trans{
  f bo  f  text-transr(  font-size: 36px;
  --  colt);
}
