/* Bud Tenderella — static coming-soon
   Black sandwich layout: black header (white leaf) / leaf banner photo
   filling the middle / black footer. Oswald throughout (body 300,
   headings 400), banner-title ls-5px white, 1248px wrap. */

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('/assets/fonts/oswald-latin-variable.woff2') format('woff2');
}

:root {
  --green: #3ba76d;
  --black: #000;
  --banner-grey: #f1f1f1;
  --wrap: 1248px;
}

* { box-sizing: border-box; }

html { height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: var(--black);
  color: var(--black);
  font-family: 'Oswald', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.625;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  word-wrap: break-word;
}

img { max-width: 100%; height: auto; }

a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  margin: -1px;
}

/* ## Header — black bar, white leaf, no menu
--------------------------------------------- */

.site-header {
  width: 100%;
  background-color: var(--black);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 32px;
  padding-right: 32px;
}

.site-logo a {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 15px;
  max-width: 75px;
}

.site-logo img { display: block; width: 75px; }

@media only screen and (max-width: 768px) {
  .site-logo a { margin-top: 8px; margin-bottom: 8px; max-width: 60px; }
  .site-logo img { width: 60px; }
}

/* ## Banner / hero — fills all space between header and footer
--------------------------------------------- */

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.banner {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--banner-grey);
}

.bg-picture { display: contents; }

.bg-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: calc(1rem + 7.451vw) 24px;
  text-align: center;
}

.banner-title {
  margin: 0;
  color: #fff;
  font-size: 1.953rem;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
}

@media only screen and (min-width: 769px) {
  .banner-title { font-size: 2.441rem; }
}

/* ## Content (legal page)
--------------------------------------------- */

.site-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  color: #fff;
}

.site-inner h1,
.site-inner h2 { color: #fff; }

.site-inner a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.site-inner h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
}

.site-inner h2 {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2.5em;
}

/* ## Footer
--------------------------------------------- */

.site-footer {
  background-color: var(--black);
  color: #fff;
  font-weight: 400;
  font-size: .8rem;
  text-align: center;
  padding: 30px 24px;
}

.footer-logo svg {
  width: 35%;
  min-width: 260px;
  max-width: 100%;
  height: auto;
  margin: 10px auto 20px;
}

.site-footer p { margin: 0 0 4px; }

.site-footer a {
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

.site-footer a:hover,
.site-footer a:focus { color: var(--green); }

.powered-by {
  font-size: 10px;
  margin-top: 18px;
  opacity: .75;
}
