/* ==========================================================================
   PAGE: HOME (BERANDA)
   Specific styling for Home matching reference mockup
   ========================================================================== */

/* Hero Section */
.hero-section {
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: var(--space-12);
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--color-accent-light);
  border: 1px solid rgba(234, 168, 56, 0.35);
  color: #925f12;
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text-main);
  margin-bottom: var(--space-4);
}

.hero-title .name-highlight {
  color: var(--color-accent);
  display: inline;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Hero Portrait & Floating Elements (Premium Editorial Redesign) */
.hero-portrait-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
}

.hero-portrait-wrap {
  position: relative;
  width: 360px;
  height: 460px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Warm Ochre / Amber Arched Circle Backdrop with Glow */
.hero-circle-backdrop {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f5b945 0%, #e09620 100%);
  border-radius: 180px 180px 32px 32px;
  box-shadow: 0 24px 50px rgba(234, 168, 56, 0.35);
  z-index: 1;
  border: 4px solid rgba(255, 255, 255, 0.4);
}

.hero-person-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 180px 180px 32px 32px;
  box-shadow: inset 0 -40px 60px rgba(18, 44, 34, 0.4);
}

/* Floating Badges with Refined Offsets (No Overlap) */
.tag-pos-left {
  position: absolute;
  top: 10%;
  left: -12%;
  z-index: 10;
  animation-delay: 0.2s;
}

.tag-pos-right {
  position: absolute;
  top: 42%;
  right: -12%;
  z-index: 10;
  animation-delay: 0.8s;
}

.tag-pos-bottom {
  position: absolute;
  bottom: 8%;
  left: -10%;
  z-index: 10;
  animation-delay: 1.4s;
}

.stamp-pos {
  position: absolute;
  top: -3%;
  right: -8%;
  z-index: 12;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Quote Banner */
.quote-banner {
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-2xl);
  padding: var(--space-12) var(--space-8);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.quote-banner .quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  line-height: 1.45;
  color: #ffffff;
  max-width: 850px;
  margin: 0 auto var(--space-4);
}

.quote-banner .quote-author {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
