/* =========================================================================
   rollsbysam - 10 Professional Modern Hero Concepts & Live Switcher Styles
   ========================================================================= */

:root {
  --hero-bg: #fafafa;
  --hero-text-title: #111111;
  --hero-text-body: #444444;
  --hero-text-muted: #666666;
  --hero-border: rgba(0, 0, 0, 0.08);
  --hero-border-dark: rgba(0, 0, 0, 0.16);
  --hero-accent: #111111;
  --hero-city-accent: #c27847;
  --hero-font-display: 'Syne', sans-serif;
  --hero-font-serif: 'Cormorant Garamond', Georgia, serif;
  --hero-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --hero-font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

/* =========================================================================
   Container & Transitions
   ========================================================================= */
.hero-banner {
  position: relative;
  width: 100%;
  margin-top: 60px;
  background: var(--hero-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--hero-border);
}

body.is-embedded .hero-banner {
  margin-top: 0;
}

.hero-banner .hero-media {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0;
  object-fit: contain;
  object-position: left top;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-concept {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1), transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.hero-concept.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Common Typography & Buttons across all concepts */
.hero-brand {
  margin: 0;
  font-family: var(--hero-font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--hero-text-title);
}

.hero-sub {
  margin: 0;
  font-family: var(--hero-font-body);
  font-weight: 500;
  line-height: 1.4;
  color: var(--hero-text-muted);
}

.hero-contact-btn {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--hero-border-dark);
  border-radius: 50%;
  color: var(--hero-text-title);
  background: #ffffff;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  flex-shrink: 0;
}

.hero-contact-btn:hover {
  transform: translateY(-2px);
  background: #111111;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.hero-contact-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-save-contact-btn {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 14px;
  border: 1px solid #111111;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  text-decoration: none;
  font-family: var(--hero-font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  flex-shrink: 0;
}

.hero-save-contact-btn:hover {
  transform: translateY(-2px);
  background: #252525;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.hero-save-contact-btn .hero-contact-icon {
  width: 14px;
  height: 14px;
}

.location-city {
  color: var(--hero-city-accent);
  font-weight: 600;
}

/* =========================================================================
   Concept 1: Modern Profile Bio (Hoop / Centered Profile Layout)
   ========================================================================= */
.hero-concept-01 {
  padding: clamp(36px, 6vw, 68px) clamp(20px, 4vw, 40px);
  background: #fafafa;
}

.c01-card {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.c01-avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(0,0,0,0.18), rgba(0,0,0,0.04));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.c01-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  display: block;
}

.c01-title {
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  text-transform: lowercase;
}

.c01-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: var(--hero-text-muted);
  letter-spacing: -0.01em;
}

.c01-meta-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.c01-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--hero-border);
  border-radius: 999px;
  background: #ffffff;
  font-size: 12px;
  color: var(--hero-text-body);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.c01-label {
  font-family: var(--hero-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-text-muted);
}

.c01-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* =========================================================================
   Concept 5: Floating Matte Card (Carrd-inspired Elevated Interface)
   ========================================================================= */
.hero-concept-05 {
  padding: clamp(36px, 6vw, 68px) clamp(16px, 4vw, 44px);
  background: #f0f0f2;
}

.c05-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--hero-border-dark);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.07);
  padding: clamp(24px, 4.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.c05-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c05-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--hero-border-dark);
  object-fit: cover;
  flex-shrink: 0;
}

.c05-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  text-transform: lowercase;
}

.c05-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: var(--hero-text-muted);
}

.c05-divider {
  width: 100%;
  height: 1px;
  background: var(--hero-border);
}

.c05-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.c05-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c05-label {
  font-family: var(--hero-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-text-muted);
}

.c05-val {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--hero-text-title);
}

.c05-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--hero-border);
}

.c05-contacts-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* =========================================================================
   Concept 7: Modern Creator Bio Hub (Polished Link-in-Bio Style)
   ========================================================================= */
.hero-concept-07 {
  padding: clamp(36px, 6vw, 68px) clamp(16px, 4vw, 40px);
  background: #fbfbfb;
}

.c07-card {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: clamp(24px, 5vw, 44px);
  background: #ffffff;
  border: 1px solid var(--hero-border);
  border-radius: 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.c07-avatar-ring {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #111111 0%, #777777 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.c07-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  display: block;
}

.c07-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  text-transform: lowercase;
}

.c07-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--hero-text-muted);
}

.c07-info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

.c07-info-item {
  padding: 10px 16px;
  border-radius: 14px;
  background: #f5f5f5;
  border: 1px solid var(--hero-border);
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}

.c07-label {
  font-family: var(--hero-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hero-text-muted);
}

.c07-val {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--hero-text-title);
}

.c07-contacts-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 6px;
}

/* =========================================================================
   Concept 8: Nocturne Dark Luxury (Cinematic Night Studio)
   ========================================================================= */
/* =========================================================================
   Concept 9: Compact Floating Dock (SaaS Productivity Header)
   ========================================================================= */
.hero-concept-09 {
  padding: clamp(20px, 3.5vw, 36px) clamp(16px, 4vw, 48px);
  background: #ffffff;
  border-bottom: 1px solid var(--hero-border);
}

.c09-bar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 3vw, 32px);
  flex-wrap: wrap;
}

.c09-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.c09-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--hero-border-dark);
  object-fit: cover;
  flex-shrink: 0;
}

.c09-lockup {
  display: flex;
  flex-direction: column;
}

.c09-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: lowercase;
  line-height: 0.95;
}

.c09-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--hero-text-muted);
}

.c09-mid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-left: 1px solid var(--hero-border);
  padding-left: 18px;
}

.c09-line {
  font-size: 12px;
  color: var(--hero-text-body);
}

.c09-label {
  font-family: var(--hero-font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-text-muted);
  margin-right: 4px;
}

.c09-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}


/* Responsive rules for the retained hero concepts. */
@media (max-width: 980px) {
  .c05-body-grid { grid-template-columns: 1fr; }
  .c09-mid { border-left: 0; padding-left: 0; width: 100%; }
}

@media (max-width: 640px) {
  .c09-bar { align-items: flex-start; }
  .c09-right { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-concept,
  .hero-contact-btn,
  .hero-save-contact-btn {
    transition: none !important;
  }
}
