:root {
  --yellow: #f4ab00;
  --black: #050505;
  --white: #ffffff;
  --soft: #111111;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --font-heading: benzin, Arial, Helvetica, sans-serif;
  --font-body: din-next-w01-light, Arial, Helvetica, sans-serif;
  --font-strong: "arial black", arial-w01-black, Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: benzin;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://static.parastorage.com/fonts/v2/3803126a-7f49-48d7-97a1-bd25afd92eca/v1/benzin.latin.woff2") format("woff2");
}

@font-face {
  font-family: benzin;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://static.parastorage.com/fonts/v2/e2f0c595-349c-4a78-b47e-8ec2546881ac/v1/benzin.latin.woff2") format("woff2");
}

@font-face {
  font-family: din-next-w01-light;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://static.parastorage.com/fonts/v2/eca8b0cd-45d8-43cf-aee7-ca462bc5497c/v1/din-next-w01-light.woff2") format("woff2");
}

@font-face {
  font-family: arial-w01-black;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://static.parastorage.com/fonts/v2/3894128e-e5ff-493e-9e6a-0c3417300c32/v1/arial-w01-black.woff2") format("woff2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: start;
  height: 54px;
  padding: 4px clamp(20px, 4vw, 64px);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  overflow: visible;
}

.brand {
  position: absolute;
  top: 4px;
  left: clamp(20px, 4vw, 64px);
  z-index: 2;
}

.brand img {
  width: 136px;
  height: 136px;
  object-fit: contain;
  margin-top: 0;
  clip-path: circle(36.5% at 50% 50%);
  animation: logoEntrance 5s cubic-bezier(0.16, 1, 0.3, 1) infinite both;
  transform-origin: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 0 16px rgba(244, 171, 0, 0.52));
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  grid-column: 2;
  min-height: 46px;
  gap: clamp(16px, 2.2vw, 34px);
  font-family: var(--font-strong);
  font-size: 0.82rem;
  font-weight: 400;
}

.site-nav a {
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  border-color: var(--yellow);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 8px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.nav-toggle.is-open span {
  background: var(--yellow);
}

.nav-toggle.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 104px 24px 70px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: url("assets/achtergrond-website.jpeg") center / cover fixed;
}

@keyframes logoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-28px) scale(0.7) rotate(-9deg);
    filter: drop-shadow(0 0 0 rgba(244, 171, 0, 0));
  }

  15% {
    opacity: 1;
    transform: translateY(4px) scale(1.18) rotate(4deg);
    filter: drop-shadow(0 0 34px rgba(244, 171, 0, 0.78));
  }

  25% {
    opacity: 1;
    transform: translateY(0) scale(0.96) rotate(-2deg);
    filter: drop-shadow(0 0 22px rgba(244, 171, 0, 0.54));
  }

  35% {
    opacity: 1;
    transform: translateY(0) scale(1.04) rotate(1deg);
    filter: drop-shadow(0 0 30px rgba(244, 171, 0, 0.62));
  }

  48%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: drop-shadow(0 0 10px rgba(244, 171, 0, 0.2));
  }
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.46);
}

.hero-content {
  position: relative;
  width: min(980px, 100%);
}

.hero-content p,
.kicker {
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 42px;
  font-family: var(--font-heading);
  font-size: clamp(2.55rem, 6.4vw, 6rem);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.18;
}

h3 {
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.25vw, 2.1rem);
  font-weight: 400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 36px;
  border: 1px solid currentColor;
  font-family: var(--font-strong);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.button.light {
  color: var(--white);
}

.button.light:hover,
.button.dark:hover {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
}

.button.dark {
  color: var(--white);
  background: var(--black);
}

.intro {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(82px, 10vw, 150px) clamp(22px, 6vw, 90px);
  background: var(--black);
}

.intro-logo {
  display: grid;
  place-items: center;
}

.intro-logo img {
  width: min(260px, 72vw);
}

.kicker {
  color: var(--yellow);
}

.intro-copy p:last-child,
.contact-text p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.85;
}

.instagram-feed {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  padding: clamp(72px, 9vw, 126px) clamp(22px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: #0d0d0d;
}

.instagram-heading .kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 0 22px;
  color: var(--white);
  background: var(--yellow);
  font-family: var(--font-strong);
  font-size: 0.86rem;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(244, 171, 0, 0.32);
}

.instagram-heading h2 {
  margin-bottom: 30px;
}

.instagram-heading {
  position: sticky;
  top: 168px;
  align-self: start;
}

.instagram-widget {
  min-height: 420px;
  padding: clamp(10px, 1.6vw, 18px);
  border: 1px solid rgba(244, 171, 0, 0.38);
  background: rgba(255, 255, 255, 0.035);
}

.instagram-widget iframe {
  display: block;
  min-height: 420px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer {
  min-height: 380px;
  padding: 42px 30px;
  border-right: 1px solid var(--line);
  background: var(--soft);
  transition: background 180ms ease, color 180ms ease;
}

.offer:last-child {
  border-right: 0;
}

.offer span {
  display: block;
  margin-bottom: 86px;
  color: var(--muted);
  font-family: var(--font-strong);
  font-size: 0.82rem;
}

.offer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.offer:hover {
  color: var(--black);
  background: var(--yellow);
}

.offer:hover p,
.offer:hover span {
  color: var(--black);
}

.statement {
  padding: clamp(74px, 10vw, 150px) clamp(22px, 6vw, 90px);
  text-align: center;
  background: var(--black);
}

.statement p {
  width: min(980px, 100%);
  margin: 0 auto;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.1vw, 4.2rem);
  line-height: 1.3;
}

.product-section {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(36px, 6vw, 90px);
  padding: clamp(78px, 9vw, 132px) clamp(22px, 6vw, 90px);
  border-top: 1px solid var(--line);
  background: var(--black);
}

.product-section:nth-of-type(even) {
  background: #0d0d0d;
}

.product-heading {
  position: sticky;
  top: 168px;
  align-self: start;
}

.product-heading .kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 0 22px;
  color: var(--white);
  background: var(--yellow);
  font-family: var(--font-strong);
  font-size: 0.86rem;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(244, 171, 0, 0.32);
}

.product-heading p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.price-grid {
  display: grid;
  gap: 16px;
}

.product-content {
  display: grid;
  gap: 28px;
}

.section-photo {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(244, 171, 0, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.truck-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(244, 171, 0, 0.42);
  background: rgba(255, 255, 255, 0.035);
}

.truck-story img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.truck-story > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 24px);
}

.truck-story-reverse img {
  order: 2;
}

.truck-story .story-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--font-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.truck-story p:not(.story-label) {
  color: var(--muted);
  line-height: 1.78;
}

.price-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  min-height: 168px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.price-card:hover {
  border-color: rgba(244, 171, 0, 0.78);
  background: rgba(244, 171, 0, 0.08);
  transform: translateY(-3px);
}

.price-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  margin: 20px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.menu-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
}

.menu-list li::before {
  position: absolute;
  left: 0;
  color: var(--yellow);
  content: "-";
}

.price-card strong {
  color: var(--yellow);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.7vw, 1.55rem);
  font-weight: 400;
  white-space: nowrap;
}

.events-list {
  display: grid;
  gap: 18px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.28fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(244, 171, 0, 0.58);
  background:
    linear-gradient(135deg, rgba(244, 171, 0, 0.16), rgba(255, 255, 255, 0.035) 46%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.event-date {
  display: grid;
  place-items: center;
  align-self: start;
  aspect-ratio: 1;
  color: var(--black);
  background: var(--yellow);
  text-align: center;
  box-shadow: 0 0 34px rgba(244, 171, 0, 0.36);
}

.event-date span {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.86;
}

.event-date small {
  display: block;
  margin-top: 8px;
  font-family: var(--font-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.event-info {
  display: grid;
  gap: 18px;
}

.event-info .story-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0;
  padding: 8px 14px;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--font-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.event-info p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 4px 0 0;
}

.event-details div,
.event-times {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.event-details div {
  padding: 18px;
}

.event-details dt {
  margin-bottom: 8px;
  color: var(--yellow);
  font-family: var(--font-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0;
  color: var(--white);
  line-height: 1.45;
}

.event-times {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-times li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 14px 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.event-times li:last-child {
  border-bottom: 0;
}

.event-times strong {
  color: var(--white);
  font-family: var(--font-strong);
  font-weight: 400;
  white-space: nowrap;
}

.photo-band {
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  padding: clamp(56px, 8vw, 96px) clamp(22px, 6vw, 90px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12)),
    url("assets/achtergrond-website.jpeg") center 62% / cover;
}

.photo-band div {
  width: min(720px, 100%);
}

.photo-band .kicker {
  color: rgba(255, 255, 255, 0.82);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(38px, 7vw, 100px);
  padding: clamp(82px, 10vw, 140px) clamp(22px, 6vw, 90px);
  background: var(--black);
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 34px;
  font-family: var(--font-strong);
  font-weight: 400;
}

.contact-links a {
  width: fit-content;
  border-bottom: 1px solid var(--yellow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

label {
  display: grid;
  gap: 10px;
  font-family: var(--font-strong);
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 0;
  color: var(--white);
  font: inherit;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 0;
  border-color: var(--yellow);
}

input[type="date"] {
  color-scheme: dark;
}

.wide {
  grid-column: 1 / -1;
}

.form-status {
  margin: -6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-status a {
  color: var(--yellow);
  border-bottom: 1px solid currentColor;
}

.form-status.is-success {
  color: var(--yellow);
}

.form-status.is-error {
  color: #ffffff;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 34px clamp(22px, 6vw, 90px);
  color: var(--white);
  background: var(--black);
}

.site-footer img {
  width: 74px;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.socials a {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  color: var(--black);
  background: var(--yellow);
  font-family: var(--font-strong);
  box-shadow: 0 0 18px rgba(244, 171, 0, 0.26);
}

.social-button:hover {
  color: var(--white);
  background: transparent;
  outline: 1px solid var(--yellow);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 132px 1fr;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.76rem;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 56px;
    grid-template-columns: 112px 1fr;
    align-items: center;
    padding: 4px 18px;
  }

  .brand {
    left: 18px;
  }

  .brand img {
    width: 96px;
    height: 96px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    grid-column: 1 / -1;
    justify-content: stretch;
    display: none;
    padding: 12px 22px 18px;
    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid rgba(244, 171, 0, 0.38);
    border-bottom: 1px solid rgba(244, 171, 0, 0.28);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.62);
  }

  .site-nav.is-open {
    display: grid;
    animation: mobileMenuIn 180ms ease both;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    text-align: center;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a:hover {
    color: var(--black);
    background: var(--yellow);
    border-color: transparent;
  }

  .hero {
    background-attachment: scroll;
  }

  .intro,
  .instagram-feed,
  .contact,
  .product-section,
  .truck-story {
    grid-template-columns: 1fr;
  }

  .product-section,
  .intro,
  .instagram-feed,
  .contact {
    gap: 30px;
    padding: 76px 22px;
  }

  .truck-story-reverse img {
    order: 0;
  }

  .intro,
  .instagram-heading {
    text-align: center;
  }

  .instagram-heading,
  .product-heading {
    position: static;
  }
}

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: 56px;
  }

  .brand {
    top: 4px;
    left: 16px;
  }

  .brand img {
    width: 52px;
    height: 52px;
    clip-path: none;
    animation-duration: 7s;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 56px;
    gap: 2px;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
    padding: 12px 18px 18px;
  }

  .site-nav a {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 82vh;
    padding: 96px 18px 54px;
    background-position: 36% center;
  }

  h1 {
    max-width: 13ch;
    margin-inline: auto;
    font-size: clamp(2rem, 10vw, 3.4rem);
    line-height: 1.04;
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
    line-height: 1.12;
  }

  h3 {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    line-height: 1.12;
  }

  .offer-grid,
  .price-card,
  .menu-list,
  .event-card,
  .event-details,
  .event-times li,
  .contact-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro,
  .instagram-feed,
  .product-section,
  .contact {
    padding: 58px 18px;
  }

  .intro-logo img {
    width: min(210px, 72vw);
  }

  .instagram-widget {
    min-height: 360px;
  }

  .product-heading .kicker,
  .truck-story .story-label,
  .event-info .story-label {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.72rem;
    line-height: 1;
    text-align: center;
  }

  .product-heading p:last-child {
    font-size: 1rem;
    line-height: 1.65;
  }

  .truck-story {
    gap: 0;
    padding: 0;
  }

  .event-date {
    width: min(180px, 100%);
  }

  .event-times strong {
    white-space: normal;
  }

  .truck-story img {
    min-height: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .truck-story > div {
    padding: 24px 18px 28px;
  }

  .truck-story p:not(.story-label),
  .price-card p,
  .event-info p {
    line-height: 1.65;
  }

  .price-card {
    min-height: auto;
    gap: 18px;
    padding: 24px 18px;
  }

  .price-card strong {
    padding-top: 4px;
    font-size: 1.28rem;
    white-space: normal;
  }

  .menu-list {
    gap: 8px;
    margin-top: 16px;
  }

  .menu-list li {
    line-height: 1.45;
  }

  .offer {
    min-height: auto;
    padding: 34px 24px;
    border-right: 0;
  }

  .offer span {
    margin-bottom: 42px;
  }

  .product-section {
    scroll-margin-top: 90px;
  }

  .event-card {
    gap: 22px;
    padding: 22px 18px;
  }

  .event-date span {
    font-size: 4rem;
  }

  .event-details div,
  .event-times li {
    padding: 14px;
  }

  .event-times li {
    gap: 6px;
  }

  .photo-band {
    min-height: 360px;
    padding: 48px 18px;
    background-position: 40% center;
  }

  .contact-links {
    gap: 12px;
  }

  input,
  textarea {
    min-height: 48px;
  }

  .button,
  .social-button {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    text-align: center;
  }

  .site-footer,
  .socials {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  .site-footer {
    gap: 18px;
    padding: 30px 18px;
  }

  .socials {
    width: 100%;
    display: grid;
    gap: 12px;
  }
}
