/* ============================================================
   BBN CATERERS — COMPONENTS (Brand-Aligned)
   Warm Taupe × Stone Beige × Champagne Cream Palette
   ============================================================ */

/* ─────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Primary — Warm Taupe solid */
.btn--primary {
  background: var(--color-taupe);
  color: var(--color-cream-light);
  border: 1px solid var(--color-taupe);
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-taupe-dark);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(137,120,92,0.30);
}
.btn--primary:hover::after { opacity: 1; }
.btn--primary span { position: relative; z-index: 1; }

/* Secondary — Outline Taupe */
.btn--outline {
  background: transparent;
  color: var(--color-taupe);
  border: 1px solid var(--color-taupe);
}
.btn--outline:hover {
  background: var(--color-taupe);
  color: var(--color-cream-light);
  transform: translateY(-1px);
}

/* Light — for dark backgrounds */
.btn--light {
  background: rgba(243,239,232,0.12);
  color: var(--color-cream);
  border: 1px solid rgba(243,239,232,0.40);
  backdrop-filter: blur(8px);
}
.btn--light:hover {
  background: rgba(243,239,232,0.22);
  border-color: var(--color-cream);
  transform: translateY(-1px);
}

/* Sizes */
.btn--sm  { padding: 10px var(--space-6); font-size: 0.65rem; }
.btn--lg  { padding: 17px var(--space-10); font-size: var(--text-sm); }

/* Button Group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* ─────────────────────────────────────────
   CARDS
   ───────────────────────────────────────── */

.card {
  background: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-border-light);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card--cream {
  background: var(--color-cream-light);
  border: 1px solid var(--color-border);
}

.card--taupe {
  background: var(--color-taupe);
  color: var(--color-cream);
  border: none;
}

.card--glass {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.50);
}

.card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.card__body {
  padding: var(--space-8);
}

.card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: var(--space-3);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-dark);
  margin-bottom: var(--space-3);
  line-height: 1.2;
  font-weight: var(--fw-semibold);
}

.card--taupe .card__title {
  color: var(--color-cream);
}

.card__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.75;
}

.card--taupe .card__desc {
  color: rgba(243,239,232,0.72);
}

/* ─────────────────────────────────────────
   VENTURE CARDS (Our Brands)
   ───────────────────────────────────────── */

.venture-card {
  position: relative;
  overflow: hidden;
  background: var(--color-cream-light);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}
.venture-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.venture-card__header {
  padding: var(--space-8) var(--space-8) var(--space-4);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.venture-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: var(--fw-light);
  color: var(--color-beige-light);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.venture-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  font-size: 22px;
  flex-shrink: 0;
}

.venture-card__body {
  padding: 0 var(--space-8) var(--space-8);
  flex: 1;
}

.venture-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: var(--space-2);
}

.venture-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--color-dark);
  line-height: 1.1;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-4);
}

.venture-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.80;
}

.venture-card__divider {
  height: 1px;
  background: linear-gradient(to right, var(--color-taupe), transparent);
  margin: var(--space-4) var(--space-8);
  opacity: 0.3;
}

/* ─────────────────────────────────────────
   FEATURE TILES (Why Choose Us)
   ───────────────────────────────────────── */

.feature-tile {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--color-cream-light);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.feature-tile::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-taupe);
  transition: width var(--transition-slow);
}
.feature-tile:hover::before {
  width: 100%;
}
.feature-tile:hover {
  box-shadow: var(--shadow-taupe);
  transform: translateY(-4px);
}

.feature-tile__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(137,120,92,0.10);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-tile__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-dark);
  font-weight: var(--fw-semibold);
}

.feature-tile__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   TESTIMONIAL / QUOTE CARDS
   ───────────────────────────────────────── */

.quote-card {
  background: var(--color-cream-light);
  padding: var(--space-10) var(--space-8);
  border: 1px solid var(--color-border);
  position: relative;
  transition: all var(--transition-base);
}
.quote-card:hover {
  box-shadow: var(--shadow-taupe);
  transform: translateY(-4px);
}

.quote-card__mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-taupe);
  line-height: 0.8;
  opacity: 0.25;
  margin-bottom: var(--space-4);
  display: block;
}

.quote-card__text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  font-weight: var(--fw-regular);
}

.quote-card__author {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-taupe);
}

/* ─────────────────────────────────────────
   STAT / COUNTER BOX
   ───────────────────────────────────────── */

.stat-box {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  border-right: 1px solid rgba(243,239,232,0.15);
}
.stat-box:last-child { border-right: none; }

.stat-box__number {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: var(--fw-light);
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-box__number sup {
  font-size: 0.5em;
  font-weight: var(--fw-regular);
  vertical-align: super;
  color: var(--color-beige-light);
}

.stat-box__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-beige-light);
  opacity: 0.75;
}

/* ─────────────────────────────────────────
   SCROLL-TO-TOP BUTTON
   ───────────────────────────────────────── */

.scroll-top {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  width: 44px;
  height: 44px;
  background: var(--color-taupe);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition-base);
  z-index: 100;
  border: none;
  font-size: 16px;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--color-taupe-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-taupe);
}

/* ─────────────────────────────────────────
   GOLD TAUPE DECORATIVE LINE
   ───────────────────────────────────────── */

.divider-taupe {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--color-taupe);
  margin: var(--space-4) 0;
  opacity: 0.5;
}

.divider-taupe--center {
  margin-inline: auto;
}

/* ─────────────────────────────────────────
   TIMELINE ITEM (Founder)
   ───────────────────────────────────────── */

.timeline-item {
  display: flex;
  gap: var(--space-6);
  position: relative;
  padding-bottom: var(--space-6);
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 1px;
  height: calc(100% - 16px);
  background: linear-gradient(to bottom, var(--color-taupe), transparent);
  opacity: 0.3;
}

.timeline-item__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-cream-light);
  border: 1px solid var(--color-taupe);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-item__dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-taupe);
}

.timeline-item__year {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  color: var(--color-taupe);
  text-transform: uppercase;
}

.timeline-item__event {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-dark);
  font-weight: var(--fw-medium);
  margin-top: var(--space-1);
}

/* ─────────────────────────────────────────
   CATERING SERVICE LIST ITEM
   ───────────────────────────────────────── */

.service-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-cream-light);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  cursor: default;
}
.service-item:hover {
  background: var(--color-taupe);
  border-color: var(--color-taupe);
  transform: translateX(4px);
}
.service-item:hover .service-item__name { color: var(--color-cream); }
.service-item:hover .service-item__icon { color: var(--color-cream); background: rgba(255,255,255,0.15); }

.service-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(137,120,92,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.service-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-dark);
  transition: color var(--transition-base);
  font-weight: var(--fw-medium);
}
