/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --scroll: 0;
  --max-with-content: 50rem;
  --max-with-content: clamp(25rem, 53.57vw + 11.61rem, 43.75rem);
  --color-white: hsl(40, 43%, 99%);
  --color-yellow:#ffcd37;
  --color-black: #010101;
  --color-grey: #ebebeb;
  --color-dark: #3f5564;
  --color-red: #d24723;
  --color-blue: #0077bc;
  --color-orange: hsl(11, 100%, 60%);
  --color-sand: #E5E1DC;
  --color-links: var(--color-blue);
  --transition-standard: all ease-out 150ms;
  accent-color: var(--color-blue);
}

/*
jost-<uniquifier> {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/
.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}

:root {
  --font-sans: "Jost", "Futura", "Trebuchet MS", Arial, sans-serif;
  --font-serif: "Libre Baskerville", "Times New Roman", Times, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  width: 100%;
  background-color: var(--color-sand);
  background: linear-gradient(169deg, var(--color-sand) 0%, var(--color-white) 100%);
  color: rgba(from var(--color-black) r g b 0.2);
  font-size: 1em;
  filter: blur(0.35px);
}

body,
h3,
h4,
p,
a,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  overflow-wrap: break-word;
  hyphens: auto;
  font-family: var(--font-sans);
  font-weight: 200;
}

h1,
h2 {
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(2.38rem, 5.89vw + 0.9rem, 4.44rem);
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: bold;
  color: var(--color-dark);
  border-bottom: double 6px var(--color-red);
  text-align: center;
  padding: 0.5em 0;
  margin-bottom: 0.5em;
}

p,
a,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  font-size: clamp(1rem, 0.31vw + 0.938rem, 1.25rem);
}

a {
  color: var(--color-links);
  text-underline-offset: 0.25em;
}

section {
  width: 100%;
  position: relative;
  background-color: var(--background-color);
  color: var(--text-color);
}
section > .content {
  max-width: var(--max-width-content);
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
  display: grid;
  gap: 2em;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  grid-auto-flow: dense;
  display: grid;
  gap: 2em;
  width: 100%;
  max-width: var(--max-with-content);
  padding: 0 1rem;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.09375rem + 0.15625vw, 1.25rem);
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
}
section > .content .two-thirds {
  grid-column: span 2;
}
section > .content .one-third {
  grid-column: span 1;
}
section > .content .half {
  grid-column: span 1;
}

.lunches {
  overflow-x: hidden;
}
.lunches .lunch {
  margin: 0;
  border-bottom: 1px solid var(--color-red);
  padding-bottom: 2em;
  position: relative;
}
.lunches .lunch h2 a {
  font-size: clamp(2rem, 2.86vw + 1.29rem, 3rem);
  font-family: var(--font-serif);
  font-weight: normal;
  text-decoration: none;
  color: var(--color-dark);
}
.lunches .lunch .address,
.lunches .lunch .price {
  font-style: italic;
}
.lunches .lunch .address,
.lunches .lunch .price,
.lunches .lunch .description {
  font-size: clamp(0.75rem, 0.36vw + 0.66rem, 0.88rem);
  font-family: var(--font-serif);
  font-weight: 300;
  color: oklch(from var(--color-black) 40% c h/1);
}
.lunches .lunch .description {
  paddin-top: 0.5em;
  padding-bottom: 2em;
}
.lunches .lunch .served-today * {
  font-size: clamp(1.13rem, 0.36vw + 1.04rem, 1.25rem);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.3em;
  color: oklch(from var(--color-black) 20% c h/1);
}
.lunches .lunch .served-today * br {
  content: "";
  display: block;
  margin: 1rem;
}
.lunches .lunch .updated {
  font-size: clamp(0.5rem, 0.71vw + 0.32rem, 0.75rem);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 100;
  color: oklch(from var(--color-black) 70% c h/1);
  margin: 1em 0;
}
.lunches .lunch .remoulad {
  position: absolute;
  top: -10%;
  right: -10%;
  width: clamp(6.25rem, 8.93vw + 4.02rem, 9.38rem);
}
.lunches .lunch .remoulad svg {
  max-width: clamp(6.25rem, 17.86vw + 1.79rem, 12.5rem);
}
.lunches .lunch .remoulad .textcircle {
  transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
  transform-origin: 250px 250px;
}
.lunches .lunch .remoulad .badge {
  animation: rotate -15s linear infinite;
  transform-origin: 250px 250px;
  fill: var(--color-orange);
}
.lunches .lunch .remoulad text {
  fill: var(--color-sand);
  font-family: --var(font-sans);
  font-size: clamp(2.88rem, 2.14vw + 2.34rem, 3.63rem);
  font-weight: bold;
  text-transform: uppercase;
  font-variant-ligatures: none;
  letter-spacing: 0.1em;
  animation: rotate 25s linear infinite;
  transform-origin: 250px 250px;
  scale: 0.9;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.noise {
  background: linear-gradient(20deg, transparent, transparent), url(https://grainy-gradients.vercel.app/noise.svg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.8;
}