/* ===========================
   LIGHT PAGE THEME (Bolly Jo'n)
=========================== */
body.light-page {
  background: #e9e5e0;
  color: #1e1e1e;
  padding: 0;
}

/* Nav stays dark */
.nav--dark {
  background: #0d0d0d;
}

.nav--dark .nav__inner {
  max-width: 1200px;
}

.nav--dark .nav__link {
  color: #ffffff;
}

/* Footer stays dark */
.footer__wrap--dark {
  background: #0d0d0d;
  padding: 0 40px;
}

.footer__wrap--dark .footer {
  max-width: 1200px;
}

.footer--dark {
  border-top-color: rgba(255,255,255,0.08);
}

.footer--dark .footer__name,
.footer--dark .footer__heading,
.footer--dark .footer__text,
.footer--dark .footer__detail,
.footer--dark .footer__social a {
  color: #ffffff;
}

.footer--dark .footer__detail {
  color: rgba(255,255,255,0.5);
}

.footer--dark .footer__text {
  color: rgba(255,255,255,0.5);
}

.footer--dark .footer__social a {
  color: rgba(255,255,255,0.5);
}

.footer--dark .footer__social a:hover {
  color: #ffffff;
}

/* ===========================
   BOLLY JO'N PAGE LAYOUT
=========================== */
.bj-page {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 58px;
  zoom: 1.2;
}

/* HERO: single full-width header image */
.bj-hero {
  width: 100%;
}

.bj-hero img,
.bj-hero video {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Single-column render (full width) */
.bj-grid--full {
  grid-template-columns: 1fr;
}

/* Second paragraph style (slightly dimmer) */
.bj-desc__body--light {
  color: #6b6460;
  margin-top: -12px;
}

/* DESCRIPTION SECTION */
.bj-desc {
  padding: 40px 0 36px;
  max-width: 680px;
}

.bj-desc__body {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.8;
  color: #1e1e1e;
  margin-bottom: 20px;
}

.bj-desc__software {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #6b6460;
}

/* DIVIDER */
.bj-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.12);
  margin: 0;
}

/* SECTION HEADING (RENDERS / REELS) */
.bj-section {
  padding: 48px 0 0;
}

.bj-section__heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #9b8b83;
  margin-bottom: 32px;
}

/* RENDERS GRID */
.bj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 48px;
}

.bj-grid__item {
  overflow: hidden;
  background: #ddd9d4;
}

.bj-grid__item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bj-grid__item:hover img {
  transform: scale(1.03);
}

/* REELS VIDEO */
.bj-reel {
  width: 100%;
  overflow: hidden;
  margin-bottom: 48px;
}

.bj-reel video {
  width: 100%;
  display: block;
}

/* BOTTOM BACK LINK */
.bj-back {
  padding: 24px 0 60px;
}

.bj-back__link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1e1e1e;
  transition: opacity 0.2s;
}

.bj-back__link:hover {
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .bj-section__heading {
    font-size: 28px;
  }

  .footer__wrap--dark {
    padding: 0 20px;
  }
}
