html {
  min-height: 100%;
  font-family: Inter, Tahoma, Helvetica, Arial, sans-serif;
  --bg-color: #ffeedd;
  background: #ffeedd;
  background: var(--bg-color);
  font-size: 16px;
  line-height: 19px;
}

body {
  height: 100vh;
  margin: 0;
}

.flex {
  display: flex;
}

.sb {
  justify-content: space-between;
}

.col {
  flex-direction: column;
}

header {
  background-color: #ffddba;
  padding: 16px 32px;
}

header img {
  float: right;
  height: 24px;
}

header h1 {
  float: left;
  line-height: 24px;
}

.wrapper {
  width: 100%;
  max-width: 736px;
  margin: 0px auto;
}

header .wrapper {
  height: 24px;
}

h1,
h2,
h3,
p {
  font-size: 16px;
  line-height: 19px;
  margin: 0;
}

#welcome {
  padding: 32px;
  background-color: #402518;

  background-image: url("/static/banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#welcome > div {
  max-width: 568px;
  margin: 0px auto;
  padding: 24px;

  background-color: #402518;
  color: #fff;
  text-align: center;

  background-color: #000000b4;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

#welcome p {
  margin-top: 16px;
}

.light {
  font-weight: 200;
}

main {
  padding: 32px;
  padding-top: 0px;
  max-width: 800px;
  margin: 0px auto;
}

address {
  font-style: normal;
}

main > section {
  color: var(--main-color);
  margin-top: 32px;
}
main > section > * {
  clear: both;
}

main .heading {
  margin-bottom: 16px;
}

a,
a:visited,
a:hover,
a:active {
  color: #402518;
  color: inherit;
  text-decoration-thickness: 4%;
  text-underline-offset: 10%;
  text-decoration-skip-ink: none;
}

.btn,
.btn:visited,
.btn:hover,
.btn:active {
  padding: 8px 16px;
  text-align: center;
  background-color: var(--main-color);
  color: var(--bg-color);
  font-weight: bold;
}

.blue {
  --main-color: #282d57;
  --border-color: #938d9a;
  /* rgba() not supported on phones so resorting to hacks */
}

.green {
  --main-color: #024443;
  --border-color: #809990;
}

.red {
  --main-color: #a60000;
  --border-color: #ffdddd;
}

.brown {
  --main-color: #402518;
  --border-color: #9f897b;
}

.card,
.tile {
  display: flex;
  flex-direction: column;
  background-color: #ffddba;
}

.card,
.tile,
.photos img {
  border: 2px solid var(--border-color);
}

.carousel {
  overflow-x: auto;
  padding-bottom: 4px;
  /* for scrollbar */

  gap: 16px;
  justify-content: space-between;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;

  scroll-snap-type: x mandatory;

  max-height: 400px;
}

.carousel > * {
  scroll-snap-align: start;
}

#menu .card {
  min-width: 200px;
  max-width: 231px;
  height: 256px;
}

.card > img,
.tile > img {
  flex-grow: 2;
  object-fit: cover;
  min-height: 170px;
  max-height: 190px;
}

.caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px;
  text-align: center;
  flex-shrink: 2;
}

.gallery.carousel img {
  height: 256px;
}

#reviews .card {
  padding: 24px;
  gap: 16px;
}

#reviews .carousel {
  max-height: none;
}

#reviews p {
  line-height: 1.3;
}

#reviews address {
  font-weight: bold;
}

#reviews .card-wrapper {
  min-width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
}

footer {
  margin-top: auto;
  background-color: #402518;
  color: #ffeedd;
  padding: 32px;
}

footer > .wrapper {
  gap: 8px;
}

footer > .wrapper > h2 {
  width: 100%;
}

footer > .wrapper > .flex {
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 16px;
  width: 100%;
}

footer > .wrapper > .flex > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

main {
  width: 100%;
  box-sizing: border-box;
}

a.hidden {
  text-decoration: none;
  line-height: 0;
  margin-bottom: -2px;
}

.table {
  background-color: #ffddba;
  border: 2px solid var(--border-color);
  padding: 6px 16px;
  width: 100%;
  box-sizing: border-box;
}

.table > * {
  margin: 10px 0px;
  gap: 8px;
}

.table > * > :first-child {
  flex-grow: 1;
  display: block;
}

.table > * > :last-child {
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  text-align: end;
}

.heading a {
  float: right;
  clear: both;
}

.right {
  float: right;
}
.left {
  float: left;
}

.heading h2 {
  display: inline-block;
}

footer a {
  color: #ffeedd;
}

.big-btns {
  font-size: 2em;
  padding: 0.5em;
  text-align: center;
}

.big-btn-sub {
  background-color: var(--main-color);
  color: #fff !important;
  border: 0;
  border-radius: 0;
  padding: 0.5em;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  font-family: Inter, Tahoma, Helvetica, Arial, sans-serif;
}
