:root {
  --primary-color: #f4b400;
  --secondary-color: #111111;
  --accent-color: #c62828;
  --light-bg: #f8f5ee;
  --text-dark: #212529;
  --purple: #4b2e83;
}

/* =========================
   BASE
========================= */

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  background-color: #fffaf0;
  overflow-x: hidden;
}

body *,
body *::before,
body *::after {
  box-sizing: border-box;
}

.container {
  width: min(94%, 1700px);
  max-width: 1700px;
}

h1,
h2,
h3,
.navbar-brand {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}

p {
  line-height: 1.7;
}

/* =========================
   NAVBAR
========================= */

header {
  background: #fff;
}

.navbar {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

.navbar-brand span {
  font-size: 1.65rem;
  font-weight: 700;
  color: #111;
}

.navbar-brand img {
  object-fit: contain;
}

.nav-link {
  font-weight: 700;
  color: #222 !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color) !important;
}

/* =========================
   BUTTONS
========================= */

.btn-gold {
  background: #f4c542;
  color: #2d1c10;
  border: 2px solid #f4c542;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 12px 25px rgba(244, 197, 66, 0.35);
  transition: all 0.25s ease;
}

.btn-gold:hover {
  background: #ffd95a;
  border-color: #ffd95a;
  color: #2d1c10;
  transform: translateY(-2px);
}

.btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--purple);
}

/* =========================
   HERO
========================= */

.about-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(31, 18, 12, 0.92) 0%,
      rgba(31, 18, 12, 0.72) 44%,
      rgba(31, 18, 12, 0.28) 100%
    ),
    url("public/images/cheeseburger.webp") center / cover no-repeat;

  color: #fff;
}

.about-hero-content {
  max-width: 960px;
  padding: 120px 0;
}

.eyebrow {
  color: #f4c542;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 14px;
}

.eyebrow.purple {
  color: var(--purple);
}

.about-hero h1 {
  font-family: "Lobster", cursive;
  font-size: clamp(5rem, 8vw, 9rem);
  line-height: 0.95;
  margin-bottom: 26px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.about-hero p {
  max-width: 760px;
  font-size: 1.5rem;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================
   INTRO
========================= */

.about-intro {
  padding: 140px 0;
  background: #fffaf0;
}

.about-intro .row {
  max-width: 1500px;
  margin: 0 auto;
}

.about-intro h2,
.section-heading h2,
.about-cta h2 {
  font-family: "Lobster", cursive;
  color: var(--purple);
  font-size: clamp(4rem, 5vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 26px;
}

.about-intro p {
  font-size: 1.2rem;
  color: #4b403b;
}

.image-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.18);
}

.image-card img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: #fff;
  color: #241b18;
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.image-badge strong {
  display: block;
  color: var(--purple);
  font-size: 2.25rem;
  line-height: 1;
}

.image-badge span {
  font-weight: 800;
  font-size: 0.95rem;
}

/* =========================
   VALUES
========================= */

.about-values {
  padding: 130px 0;
  background: var(--purple);
  color: #fff;
}

.section-heading {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.about-values .section-heading h2 {
  color: #fff;
}

.value-card {
  height: 100%;
  min-height: 250px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 46px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.14);
}

.value-card h3 {
  color: #f4c542;
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
  font-size: 1.08rem;
}

/* =========================
   TIMELINE
========================= */

.about-timeline-section {
  padding: 140px 0;
  background: linear-gradient(180deg, #fffaf0 0%, #fff3cd 100%);
}

.timeline {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 170px;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, #f4c542, var(--purple));
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 55px;
  margin-bottom: 46px;
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.65s ease;
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-year {
  position: relative;
  z-index: 2;
  align-self: start;
  background: #f4c542;
  color: #2d1c10;
  border: 5px solid #fffaf0;
  border-radius: 999px;
  padding: 14px 22px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(244, 197, 66, 0.35);
}

.timeline-card {
  background: #fff;
  border-radius: 26px;
  padding: 42px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  border-left: 7px solid #f4c542;
}

.timeline-card h3 {
  color: var(--purple);
  font-weight: 900;
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.timeline-card p {
  color: #4b403b;
  margin-bottom: 0;
  font-size: 1.12rem;
}

/* =========================
   CTA
========================= */

.about-cta {
  padding: 150px 0;
  color: #fff;
  background:
    linear-gradient(rgba(31, 18, 12, 0.82), rgba(31, 18, 12, 0.82)),
    url("public/images/cheeseburger.webp") center / cover no-repeat;
}

.about-cta h2 {
  color: #fff;
}

.about-cta p {
  max-width: 850px;
  margin: 0 auto 34px;
  font-size: 1.3rem;
}

/* =========================
   FOOTER
========================= */

.about-footer {
  background: #2b1854;
  color: #fff;
  padding: 95px 0;
}

.about-footer h5 {
  color: #f4c542;
  font-weight: 900;
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.about-footer p,
.about-footer a {
  color: #fff;
  font-size: 1.05rem;
}

.about-footer a {
  display: block;
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-footer a:hover {
  color: #f4c542;
}

.about-footer iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 18px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .container {
    width: min(92%, 960px);
  }

  .navbar-brand span {
    font-size: 1.35rem;
  }

  .navbar-brand img {
    width: 58px;
    height: 58px;
  }

  .navbar-collapse {
    padding: 18px 0;
  }

  .about-hero {
    min-height: 620px;
    text-align: center;
  }

  .about-hero-content {
    margin: 0 auto;
    padding: 80px 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .timeline::before {
    left: 26px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 70px;
  }

  .timeline-year {
    width: fit-content;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 576px) {
  .container {
    width: min(92%, 540px);
  }

  .navbar-brand span {
    font-size: 1.1rem;
  }

  .navbar-brand img {
    width: 52px;
    height: 52px;
  }

  .about-hero {
    min-height: auto;
    display: block;
    padding-top: 360px;
    padding-bottom: 50px;
    text-align: center;

    background:
      linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
      url("public/images/cheeseburger.webp") center top / 100% 360px no-repeat;

    color: #241b18;
  }

  .about-hero-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .eyebrow {
    color: var(--purple);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .about-hero h1 {
    color: var(--purple);
    font-size: 3.2rem;
    margin-bottom: 16px;
    text-shadow: none;
  }

  .about-hero p {
    color: #4b403b;
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-actions {
    justify-content: center;
    gap: 12px;
  }

  .btn-outline-light {
    border-color: var(--purple);
    color: var(--purple);
  }

  .hero-actions .btn {
    padding: 11px 20px;
    font-size: 0.9rem;
  }

  .about-intro,
  .about-values,
  .about-timeline-section,
  .about-cta {
    padding: 80px 0;
  }

  .about-intro h2,
  .section-heading h2,
  .about-cta h2 {
    font-size: 3rem;
  }

  .about-intro p,
  .about-cta p {
    font-size: 1rem;
  }

  .image-card img {
    height: 320px;
  }

  .timeline-item {
    padding-left: 55px;
  }

  .timeline-card {
    padding: 24px;
  }

  .about-footer {
    padding: 55px 0;
  }

  .about-footer iframe {
    height: 240px;
  }
}