/* ============================================================
   RICH DEER PATISSERIE — ABOUT US CSS
   ============================================================ */

/* ─── TEAM / FOUNDER (TOP SECTION) ───────────────────────── */
.about-founder--top {
  position: relative;
  margin-top: 72px;
  border-bottom: 1px solid var(--sage-light);
}

/* ─── AWARD SECTION ─────────────────────────────────────── */
.about-award {
  padding: var(--space-2xl) 0;
  background: var(--cream-bg);
  position: relative;
  overflow: hidden;
}

.about-award::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-primary), var(--gold-primary), var(--sage-primary));
}

.award-header {
  text-align: center;
  margin-bottom: 4rem;
}

.award-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.award-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Award featured row */
.award-featured {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.award-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.award-photo.featured {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--gold-light);
}

.award-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--trans-slow);
}



.award-photo:hover img {
  transform: scale(1.04);
}

.award-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(43, 43, 43, 0.8), transparent);
  color: white;
  padding: 1.5rem 1.25rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Certificate highlight */
.award-cert-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sage-light);
}

.award-cert-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.award-cert-img img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.award-cert-info {}

.award-cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-primary), #B8960C);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.award-cert-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.award-cert-org {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.award-cert-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.award-cert-facts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.acf-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.acf-item i {
  color: var(--sage-deep);
  width: 16px;
  text-align: center;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ─── TEAM / FOUNDER ─────────────────────────────────────── */
.about-founder {
  padding: var(--space-2xl) 0;
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.founder-tag {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.founder-tag i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

.founder-tag span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown-dark);
  letter-spacing: 0.05em;
}

.founder-text {
  padding-top: 1rem;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.founder-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.5rem;
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold-light);
}

.founder-bio {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.founder-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.about-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--sage-deep) 0%, var(--brown-dark) 100%);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.about-cta-text {}

.about-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.about-cta-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-ivory {
  background: var(--cream-bg);
  color: var(--brown-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-ivory:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─── BEHIND THE SCENES (VIDEO) ─────────────────────────── */
.about-video-bts {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-bg) 100%);
}

.bts-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.bts-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.bts-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Hero video wrapper ── */
.bts-hero-wrap {
  margin-bottom: 1.5rem;
}

.bts-vid-hero {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(43, 35, 28, 0.18);
  aspect-ratio: 16/9;
  background: #1a1210;
  cursor: pointer;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bts-yt-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

/* ── Sub-grid (2 smaller videos) ── */
.bts-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.bts-vid-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  background: #1a1210;
  cursor: pointer;
  border: 2px solid rgba(212, 175, 55, 0.15);
  transition: border-color var(--trans-base), box-shadow var(--trans-base);
}

.bts-vid-item:hover {
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 40px rgba(43, 35, 28, 0.18);
}

/* ── Caption bar ── */
.bts-vid-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(43, 35, 28, 0.92), transparent);
  color: white;
  padding: 1.5rem 1.25rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
}

.bts-vid-caption i {
  color: var(--gold-primary);
  font-size: 0.85rem;
}

/* ── Play overlay (covers entire video card) ── */
.bts-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: opacity 0.4s ease;
}

.bts-play-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 14, 10, 0.55) 0%,
    rgba(43, 28, 18, 0.45) 100%
  );
  backdrop-filter: blur(2px);
}

/* Info text (hero only) */
.bts-play-info {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 0.5rem;
}

.bts-play-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 175, 55, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #f5d97a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.bts-play-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.bts-play-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ── Play button ── */
.bts-play-btn {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  animation: bts-pulse 2.2s ease-in-out infinite;
  transition: transform 0.2s ease, background 0.2s ease;
}

.bts-play-btn:hover {
  background: var(--gold-primary);
  transform: scale(1.12);
  animation: none;
}

.bts-play-btn i {
  margin-left: 4px; /* optical center for play icon */
}

.bts-play-btn--sm {
  width: 52px;
  height: 52px;
  font-size: 1rem;
}

@keyframes bts-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(212,175,55,0.6); }
  60%  { box-shadow: 0 0 0 18px rgba(212,175,55,0);   }
  100% { box-shadow: 0 0 0 0   rgba(212,175,55,0);    }
}

/* "Klik untuk memutar" hint */
.bts-play-hint {
  position: relative;
  z-index: 2;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Overlay for small videos hides the info block */
.bts-play-overlay--sm .bts-play-info { display: none; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .founder-grid {
    grid-template-columns: 320px 1fr;
    gap: 3rem;
  }

  .award-cert-wrap {
    gap: 1.5rem;
    padding: 2rem;
  }
}

@media (max-width: 768px) {

  /* Founder as top section */
  .about-founder--top {
    margin-top: 60px;
    padding: 2.5rem 0;
  }

  /* Award */
  .award-featured {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }



  .award-cert-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.25rem;
  }

  /* BTS Video — new layout */
  .bts-sub-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .bts-play-btn {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }

  .bts-play-btn--sm {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  /* Founder */
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-img-wrap {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .about-cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .about-founder--top {
    margin-top: 56px;
    padding: 2rem 0;
  }

  .award-cert-tag {
    font-size: 0.6rem;
  }

  .bts-vid-side {
    flex-direction: column;
  }

  .about-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}