/* ============================================================
   about.css — MotoZone · A Story of Riders
   Classic, minimal. Inspired by shark-helmets.com layout.
   ============================================================ */

:root {
  --red:    #D62828;
  --dark:   #16223B;
  --text:   #333333;
  --muted:  #666666;
  --border: #e0e0e0;
  --font:   'Mulish', sans-serif;
}

body { font-family: var(--font); color: var(--text); }

/* ── GLOBAL MAX WIDTH ── */
.ab-page-header,
.ab-section > .container,
.ab-pillars-section > .container,
.ab-icons-section > .container,
.ab-closing {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* ── PAGE HEADER ── */
.ab-page-header {
  text-align: center;
  padding: 48px 24px 52px;
  width: 100%;
  box-sizing: border-box;
}

.ab-breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.ab-breadcrumb a { color: var(--muted); text-decoration: none; }
.ab-breadcrumb a:hover { text-decoration: underline; }
.ab-breadcrumb span { margin: 0 6px; }

.ab-page-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.ab-page-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin: 0 auto;
  max-width: 680px;
}

/* ── FULL-WIDTH BANNER ── */
.ab-banner {
  width: 100%;
  overflow: hidden;
}
.ab-banner img {
  width: 100%;
  display: block;
  max-height: 480px;
  object-fit: cover;
}
.ab-banner__placeholder {
  width: 100%;
  height: 340px;
  background: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #888;
}
@media (min-width: 750px) {
  .ab-banner__placeholder { height: 480px; }
}

/* ── IMAGE WITH TEXT SECTIONS ── */
.ab-section {
  padding: 36px 0;
}
@media (min-width: 750px) {
  .ab-section { padding: 60px 0; }
}

.ab-img-wrap img,
.ab-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.ab-img-placeholder {
  background: #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #888;
}

.ab-text-wrap {
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .ab-text-wrap { padding: 48px 56px; }
}

.ab-text-wrap h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.ab-text-wrap p {
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.ab-text-wrap ul {
  padding-left: 18px;
  margin: 16px 0 24px;
}
.ab-text-wrap ul li {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 6px;
}

.ab-btn {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 28px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.18s;
}
.ab-btn:hover { background: var(--red); color: #fff; }

/* ── 4 PILLARS ── */
.ab-pillars-section {
  padding: 16px 0;
}
@media (min-width: 750px) {
  .ab-pillars-section { padding: 52px 0; }
}

.ab-pillars-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .ab-pillars-row { grid-template-columns: repeat(4, 1fr); }
}

.ab-pillar-item {
  padding: 0 0 24px;
}
@media (min-width: 768px) {
  .ab-pillar-item { padding: 0 16px 0 0; }
}

.ab-pillar-img-wrap img,
.ab-pillar-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  background: #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #888;
}

.ab-pillar-item h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.ab-pillar-item p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── MARQUEE ── */
.ab-marquee-wrap {
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
}

.ab-marquee {
  display: inline-block;
  animation: marquee 12s linear infinite;
  font-size: clamp(1.6rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ab-marquee__dark  { color: var(--dark); margin-right: 0.3em; }
.ab-marquee__light { color: #fff; -webkit-text-stroke: 1px var(--dark); margin-right: 0.5em; }
.ab-marquee__sep   { color: var(--red); margin-right: 0.5em; font-size: 0.6em; vertical-align: middle; }

/* ── OUR ICONS / MILESTONES ── */
.ab-icons-section {
  padding: 36px 0 48px;
  background: #f7f7f7;
}
@media (min-width: 750px) {
  .ab-icons-section { padding: 64px 0 48px; }
}

.ab-icons-title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 32px;
  padding: 0;
}

.ab-icons-scroll-wrap {
  overflow: hidden;
}

.ab-icons-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 24px 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.ab-icons-row::-webkit-scrollbar { display: none; }
.ab-icons-row:active { cursor: grabbing; }

.ab-icon-item {
  flex: 0 0 calc(80vw);
  max-width: 300px;
  min-width: 220px;
}
@media (min-width: 750px) {
  .ab-icon-item {
    flex: 0 0 calc(25% - 8px);
    max-width: none;
  }
}

.ab-icon-img-wrap img,
.ab-icon-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 14px;
  background: #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #888;
}

.ab-icon-year {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.ab-icon-item p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Custom scrollbar */
.ab-icons-scrollbar {
  padding: 0 24px;
  margin-top: 12px;
}
.ab-icons-scrollbar-track {
  width: 100%;
  height: 2px;
  background: #ddd;
  position: relative;
}
.ab-icons-scrollbar-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 30%;
  height: 2px;
  background: var(--dark);
  transition: transform 0.05s linear;
}

/* ── CLOSING RICH TEXT ── */
.ab-closing {
  padding: 72px 24px;
  text-align: left;
  width: 100%;
  box-sizing: border-box;
}

.ab-closing h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
}

.ab-closing p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 680px;
  margin: 0;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 767px) {
  .ab-text-wrap { padding: 32px 20px; }
  .ab-pillars-row { gap: 0; }
  .ab-pillar-item { padding: 0 8px 24px; }
  .ab-closing { padding: 52px 20px; }
}