/* ════════════════════════════════════════════════════════
   BRITOL GROUP — Global Reset & Core Styles
   ════════════════════════════════════════════════════════ */

/* ── Global Reset ─────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--gray-800);
  line-height: 1.2;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Promo Banner ─────────────────────────── */
.promo-banner {
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500), var(--blue-700));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  position: relative;
  z-index: 1001;
}

.promo-banner .promo-icon {
  margin: 0 8px;
  animation: bounce 2s ease infinite;
  display: inline-block;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}
