/* Purolator + Live Nation — Delivering the Moment */

:root {
  --purolator-blue: #001895;
  --purolator-blue-dark: #001895;
  --purolator-red: #E31837;
  --purolator-yellow: #FFD200;
  --purolator-yellow-hover: #c3a82f;
  --text-dark: #1a1a1a;
  --text-muted: #555;
  --border-light: #c8d9f0;
  --bg-light: #f5f7fa;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  padding-top: 56px;
}

/* ── Navigation ── */
.navbar {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  padding:20px 0;
}

.navbar-brand .purolator-logo {
  height: 22px;
  width: auto;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.75rem !important;
  text-align:center;
}

.nav-link:hover {
  color: var(--purolator-blue) !important;
}

/* ── Buttons ── */
.btn-purolator-yellow {
  font-size: 0.9rem;
  background-color: var(--purolator-yellow);
  border-color: var(--purolator-yellow);
  color: #000;
  font-weight: 500;
  border-radius: 6px;
  text-transform: none;
}

.btn-purolator-yellow:hover,
.btn-purolator-yellow:focus {
  background-color: var(--purolator-yellow-hover);
  border-color: var(--purolator-yellow-hover);
  color: #000;
}

.btn-outline-purolator {
  font-size: 0.9rem;
  color: var(--purolator-blue);
  border: 2px solid var(--purolator-blue);
  background: transparent;
  font-weight: 500;
  border-radius: 6px;
}

.btn-outline-purolator:hover,
.btn-outline-purolator:focus {
  background-color: var(--purolator-blue);
  border-color: var(--purolator-blue);
  color: #fff;
}

.btn-outline-light {
  font-size: 0.9rem;
  border-radius: 6px;
  font-weight: 500;
  border-width: 2px;
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('https://image.connect.purolator.com/lib/fe43157075640475771570/m/1/0f88308b-c29e-4b82-ba32-fac9dc475bf2.jpg') center/cover no-repeat;
  padding: 80px 0 100px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-section .container {
  z-index: 1;
}

.hero-breadcrumb {
  position: absolute;
  top: -80px;
  left: 12px;
}

.hero-breadcrumb .breadcrumb-item a,
.hero-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}

.hero-title {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 800px;
}

/* ── Partnership logos ── */
.partnership-logos {
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.purolator-mark .purolator-logo
{
  height: 26px;
  width: auto;
}
.livenation-mark .purolator-logo
{
  height: 32px;
  width: auto;
}
.logo-p {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--purolator-red);
  line-height: 1;
}

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--purolator-blue);
}

.partner-divider {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: 300;
}

.livenation-mark {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.ln-icon {
  font-size: 1.5rem;
  color: var(--purolator-blue);
}

.ln-text {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-dark);
}

.intro-text {
  max-width: 1200px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── Section headings ── */
.section-heading {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--purolator-blue);
}

.section-subheading {
  max-width: 1200px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Stat cards ── */
.stats-row {
  align-items: stretch;
}

.stat-card {
  border: 1px solid var(--border-light);
  padding: 1.25rem 0.75rem;
  text-align: center;
  background: #fff;
  transition: box-shadow 0.2s;
  max-width: 230px;
  margin: 0 auto;
}

.stat-card:hover {
  box-shadow: 0 4px 20px rgba(0, 61, 165, 0.1);
}

.stat-icon {
  width: 56px;
  margin: 0 auto 0.75rem;
  color: var(--purolator-blue);
}

.stat-icon img {
  width: 100%;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--purolator-blue);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--purolator-blue);
  font-weight: 600;
  line-height: 1.35;
}

/* ── Calendar section ── */
.calendar-section {
  background: var(--bg-light);
}

.calendar-text {
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.calendar-image {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius:6px;
}

/* ── Stories ── */
.stories-section {
  background: var(--bg-light);
}

.stories-row {
  align-items: stretch;
}

.story-card {
  background: #fff;
  border: 1px solid var(--border-light);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  border-radius: 6px;
  text-align:center;
}

.story-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.story-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.story-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.story-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  min-height: 1em;
}

.story-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.story-link {
  color: var(--purolator-blue);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

.story-link:hover {
  text-decoration: underline;
}

/* ── CTA section ── */
.cta-section {
  background: var(--purolator-blue-dark);
}

.cta-heading {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 500;
}

.cta-subtitle {
  max-width: 560px;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  background: #fff;
}

.footer-contact {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-contact span {
  color: var(--purolator-blue);
}

.footer-contact:hover {
  color: var(--purolator-blue);
}

.social-icons a {
  color: var(--purolator-blue);
  font-size: 1.25rem;
  transition: opacity 0.2s;
}

.social-icons a:hover {
  opacity: 0.7;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--purolator-blue);
  text-decoration: underline;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.75rem;
}

.app-badge img{
  max-width: 200px;
}

.app-badge:hover {
  border-color: var(--purolator-blue);
  color: var(--text-dark);
}

.app-badge i {
  font-size: 1.5rem;
}

.footer-logo {
  font-size: 1.5rem;
}

.footer-logo .purolator-logo{
  height: 24px;
  width: auto;
}

.footer-bar {
  background: var(--purolator-blue-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  padding: 0.75rem 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero-section {
    min-height: 440px;
    padding: 60px 0 80px;
  }

  .hero-breadcrumb {
    position: static;
    margin-bottom: 1.5rem;
  }
}

/* ── Hero variants ── */
.hero-section--compact {
  min-height: 480px;
  padding: 80px 0 100px;
}

.hero-section--events {
  min-height: auto;
  padding: 80px 0 100px;
}

/* ── Event list (concert calendar) ── */
.event-list {
  max-width: 860px;
  margin: 3rem auto 0;
}

.event-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  gap: 1.5rem;
}

.event-date {
  flex-shrink: 0;
  width: 120px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  padding-right: 1.5rem;
}

.event-date-month {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purolator-blue);
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.event-date-time {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.event-info {
  flex: 1;
  min-width: 0;
}

.event-artist {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.event-venue {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.btn-tickets {
  background-color: var(--purolator-blue);
  border-color: var(--purolator-blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 10px;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-tickets:hover,
.btn-tickets:focus {
  background-color: #001070;
  border-color: #001070;
  color: #fff;
}

/* ── About split section ── */
.about-section {
  background: #fff;
}

.about-image {
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-radius:6px;
}

.about-heading {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--purolator-blue);
  margin-bottom: 1.25rem;
}

.about-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-closing {
  font-weight: 600;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  body {
    padding-top: 56px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .event-card {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .event-date {
    width: auto;
    border-right: none;
    padding-right: 0;
    text-align: left;
    display: flex;
    gap: 0.75rem;
    align-items: baseline;
  }

  .event-date-time {
    margin-top: 0;
  }

  .btn-tickets {
    width: 100%;
    text-align: center;
  }
}
