/**
 * Bosaname Hero Component — Shared Base
 *
 * Typography, colors, and section base shared across all 5 hero sections.
 * Each page CSS keeps only its unique structural/layout overrides.
 *
 * Pages: homepage (.bosa-hero-*), about (.bosa-about-hero-*),
 *        case-study (.bosa-cs-hero-*), services (.bosa-services-hero-*),
 *        resources (.bosa-res-hero-*).
 */

/* ── Section Base ── */
.bosa-hero,
.bosa-about-hero,
.bosa-cs-hero,
.bosa-services-hero,
.bosa-res-hero {
  color: #fff;
  position: relative;
  min-height: auto;
}

/* ── Container ── */
.bosa-about-hero-container,
.bosa-services-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Title Typography ── */
.bosa-hero-title,
.bosa-about-hero-title,
.bosa-cs-hero-title,
.bosa-services-hero-title,
.bosa-res-hero-title {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.bosa-about-hero-title,
.bosa-services-hero-title {
  line-height: 1.15;
}

.bosa-hero-title {
  font-size: 28px;
}

.bosa-about-hero-title {
  font-size: 38px;
  margin-bottom: 24px;
}

.bosa-cs-hero-title {
  font-size: 40px;
  margin-bottom: 24px;
}

.bosa-services-hero-title {
  font-size: 40px;
  margin-bottom: 24px;
}

.bosa-res-hero-title {
  font-size: 32px;
  margin: 0;
}

/* ── Highlight Color ── */
.bosa-hero-title .highlight,
.bosa-about-hero-title .highlight,
.bosa-cs-hero-title .highlight,
.bosa-services-hero-title .highlight,
.bosa-res-hero-title .highlight {
  color: var(--bosa-primary);
}

/* ── Description Typography ── */
.bosa-hero-desc,
.bosa-about-hero-desc,
.bosa-cs-hero-desc,
.bosa-services-hero-desc,
.bosa-res-hero-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.bosa-hero-desc {
  font-size: 14px;
  max-width: 520px;
}

.bosa-about-hero-desc {
  font-size: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.bosa-cs-hero-desc {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.bosa-services-hero-desc {
  font-size: 16px;
  margin: 0;
}

.bosa-res-hero-desc {
  font-size: 16px;
  margin-top: 16px;
  max-width: 520px;
}

/* ── Badge / Label Typography ── */
.bosa-hero-badge,
.bosa-about-hero-badge,
.bosa-services-hero-badge,
.bosa-res-hero-label {
  display: inline-block;
  color: var(--bosa-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bosa-about-hero-badge {
  letter-spacing: 0.15em;
  position: relative;
  z-index: 2;
}

.bosa-services-hero-badge {
  letter-spacing: 0.15em;
}

/* ── Hero Actions (shared base) ── */
.bosa-hero-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── Image Wraps (shared border-radius + overflow) ── */
.bosa-about-hero-image-wrap,
.bosa-services-hero-image-wrap,
.bosa-cs-hero-image {
  border-radius: 20px;
  overflow: hidden;
}

.bosa-res-hero-img {
  border-radius: 16px;
  overflow: hidden;
}

.bosa-res-hero-img img,
.bosa-about-hero-img,
.bosa-services-hero-img,
.bosa-cs-hero-img-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Z-index utility (watermark, content layers) ── */
.bosa-about-hero-content,
.bosa-about-hero-grid,
.bosa-cs-hero-inner {
  position: relative;
  z-index: 2;
}
