/* =============================================================================
   CINESTAR EVENTS — About Us Page
   theme/cinestar-child/assets/css/about.css
   Depends on: main.css (design tokens, base, utilities, buttons)

   Sections:
     A. Hero
     B. Shared Section Typography (eyebrow + heading)
     C. Company Story
     D. Yogesh Profile
     E. Mission & Values
     F. Key Achievements / Milestones
     G. CTA Strip
   ============================================================================= */


/* =============================================================================
   A. HERO
   ============================================================================= */

.ce-ab-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* clearance for sticky header */
  overflow: hidden;
}

/* Radial spotlight background — concert stage feel */
.ce-ab-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(123, 47, 190, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%,  rgba(255, 20, 147, 0.15) 0%, transparent 60%),
    #0A0A0A;
  z-index: 0;
}

.ce-ab-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  z-index: 1;
}

.ce-ab-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.ce-ab-hero__eyebrow {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ce-gold);
  margin: 0 0 1rem;
}

.ce-ab-hero__headline {
  font-family: var(--ce-font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--ce-text);
  line-height: 1.05;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.ce-ab-hero__sub {
  font-family: var(--ce-font-body);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--ce-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Fade-to-page-bg at bottom */
.ce-ab-hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--ce-bg));
  z-index: 2;
  pointer-events: none;
}


/* =============================================================================
   B. SHARED SECTION TYPOGRAPHY
   ============================================================================= */

.ce-ab-section-eyebrow {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ce-gold);
  margin: 0 0 0.6rem;
}

.ce-ab-section-eyebrow--centre {
  text-align: center;
}

.ce-ab-section-heading {
  font-family: var(--ce-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ce-text);
  margin: 0 0 2rem;
  line-height: 1.15;
}

.ce-ab-section-heading--centre {
  text-align: center;
}


/* =============================================================================
   C. COMPANY STORY
   ============================================================================= */

.ce-ab-story {
  padding: 5rem 0 5.5rem;
  background: var(--ce-bg);
}

.ce-ab-story__inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2.5rem;
  align-items: start;
}

/* Decorative vertical accent column */
.ce-ab-story__accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2.5rem;
  gap: 1rem;
}

.ce-ab-story__accent-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--ce-gold), transparent);
  min-height: 60px;
}

.ce-ab-story__accent-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.ce-ab-story__accent-year {
  font-family: var(--ce-font-heading);
  font-size: var(--ce-text-xl);
  font-weight: 900;
  color: var(--ce-gold);
  line-height: 1;
  text-align: center;
}

.ce-ab-story__accent-label {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ce-text-faint);
  text-align: center;
  white-space: nowrap;
}

.ce-ab-story__copy {
  padding-top: 0;
}

.ce-ab-story__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ce-ab-story__body p {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-lg);
  color: var(--ce-text-muted);
  line-height: 1.75;
  margin: 0;
}

.ce-ab-story__body p strong {
  color: var(--ce-text);
  font-weight: 600;
}

/* Mobile: hide decorative accent column, go single column */
@media (max-width: 767px) {
  .ce-ab-story__inner {
    grid-template-columns: 1fr;
  }
  .ce-ab-story__accent {
    display: none;
  }
}


/* =============================================================================
   D. YOGESH PROFILE
   ============================================================================= */

.ce-ab-profile {
  padding: 5rem 0 5.5rem;
  background: var(--ce-bg-raised);
  border-top: 1px solid var(--ce-border);
  border-bottom: 1px solid var(--ce-border);
}

.ce-ab-profile__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Photo column */
.ce-ab-profile__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ce-ab-profile__photo {
  width: 240px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--ce-border-gold);
  box-shadow: var(--ce-glow-purple);
  background: var(--ce-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ce-ab-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Placeholder shown until real photo is provided */
.ce-ab-profile__photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7B2FBE 0%, #3D1473 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ce-ab-profile__photo-initials {
  font-family: var(--ce-font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

.ce-ab-profile__photo-caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ce-ab-profile__photo-name {
  font-family: var(--ce-font-heading);
  font-size: var(--ce-text-base);
  font-weight: 700;
  color: var(--ce-text);
}

.ce-ab-profile__photo-title {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-sm);
  color: var(--ce-gold);
  font-weight: 500;
}

/* Bio column */
.ce-ab-profile__role {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-base);
  font-weight: 600;
  color: var(--ce-gold);
  margin: -1.25rem 0 1.75rem;
}

.ce-ab-profile__bio-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ce-ab-profile__bio-body p {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-lg);
  color: var(--ce-text-muted);
  line-height: 1.75;
  margin: 0;
}

.ce-ab-profile__bio-body p strong {
  color: var(--ce-text);
  font-weight: 600;
}

/* Mobile: stack photo above bio */
@media (max-width: 767px) {
  .ce-ab-profile__inner {
    grid-template-columns: 1fr;
  }
  .ce-ab-profile__photo-wrap {
    align-items: flex-start;
    flex-direction: row;
    gap: 1.25rem;
  }
  .ce-ab-profile__photo {
    width: 100px;
    height: 120px;
    flex-shrink: 0;
  }
  .ce-ab-profile__photo-caption {
    text-align: left;
    justify-content: center;
  }
  .ce-ab-profile__photo-initials {
    font-size: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ce-ab-profile__inner {
    grid-template-columns: 220px 1fr;
    gap: 2.5rem;
  }
  .ce-ab-profile__photo {
    width: 200px;
    height: 240px;
  }
}


/* =============================================================================
   E. MISSION & VALUES
   ============================================================================= */

.ce-ab-values {
  padding: 5rem 0 5.5rem;
  background: var(--ce-bg);
}

.ce-ab-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.ce-ab-values__card {
  background: var(--ce-bg-card);
  border: 1px solid var(--ce-border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ce-ab-values__card:hover {
  border-color: var(--ce-border-gold);
  box-shadow: var(--ce-glow-gold);
  transform: translateY(-3px);
}

.ce-ab-values__icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 215, 0, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ce-gold);
  margin-bottom: 1.25rem;
}

.ce-ab-values__title {
  font-family: var(--ce-font-heading);
  font-size: var(--ce-text-xl);
  font-weight: 700;
  color: var(--ce-text);
  margin: 0 0 0.85rem;
  line-height: 1.25;
}

.ce-ab-values__desc {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-base);
  color: var(--ce-text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Tablet: 2-col then 1-col on mobile */
@media (max-width: 1023px) {
  .ce-ab-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ce-ab-values__grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================================================
   F. KEY ACHIEVEMENTS / MILESTONES
   ============================================================================= */

.ce-ab-milestones {
  padding: 5rem 0 5.5rem;
  background: var(--ce-bg-raised);
  border-top: 1px solid var(--ce-border);
}

.ce-ab-milestones__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.ce-ab-milestone {
  background: var(--ce-bg-card);
  border: 1px solid var(--ce-border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Wide tiles span 2 columns */
.ce-ab-milestone--wide {
  grid-column: span 2;
  text-align: left;
  flex-direction: column;
  align-items: flex-start;
}

.ce-ab-milestone:hover {
  border-color: rgba(255, 215, 0, 0.25);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.12);
}

.ce-ab-milestone__number {
  font-family: var(--ce-font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--ce-gold);
  line-height: 1;
}

.ce-ab-milestone__plus,
.ce-ab-milestone__unit {
  font-size: 0.65em;
  vertical-align: super;
  color: var(--ce-gold);
}

.ce-ab-milestone__icon-wrap {
  color: var(--ce-gold);
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.ce-ab-milestone__label {
  font-family: var(--ce-font-heading);
  font-size: var(--ce-text-base);
  font-weight: 700;
  color: var(--ce-text);
  line-height: 1.3;
}

.ce-ab-milestone__detail {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-sm);
  color: var(--ce-text-faint);
  line-height: 1.6;
  margin: 0;
}

/* Tablet: 2-col grid, wide tiles still span 2 */
@media (max-width: 1023px) {
  .ce-ab-milestones__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: single column, wide tiles go full-width */
@media (max-width: 600px) {
  .ce-ab-milestones__grid {
    grid-template-columns: 1fr;
  }
  .ce-ab-milestone--wide {
    grid-column: span 1;
  }
  .ce-ab-milestone {
    text-align: left;
    align-items: flex-start;
  }
}


/* =============================================================================
   G. CTA STRIP
   ============================================================================= */

.ce-ab-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1A0A30 0%, #0A0A0A 60%, #1A0820 100%);
  border-top: 1px solid var(--ce-border);
  text-align: center;
}

.ce-ab-cta .ce-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ce-ab-cta__eyebrow {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ce-magenta);
  margin: 0;
}

.ce-ab-cta__heading {
  font-family: var(--ce-font-heading);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--ce-text);
  margin: 0;
  line-height: 1.15;
}

.ce-ab-cta__sub {
  font-family: var(--ce-font-body);
  font-size: var(--ce-text-lg);
  color: var(--ce-text-muted);
  max-width: 580px;
  margin: 0.25rem 0 0.75rem;
  line-height: 1.65;
}

.ce-ab-cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
