/*
  Static Brand Landing v1.1
  Most edits should be made in settings.js.
*/

:root {
  --background-image: url("assets/background.jpg");
  --overlay-color: #0a0a0a;
  --overlay-opacity: 0.5;
  --logo-width: min(850px, 78vw);
  --mobile-logo-width: min(560px, 88vw);
  --footer-opacity: 0.68;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #0a0a0a;
  color: #ffffff;
}

.brand-landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.brand-landing__background,
.brand-landing__overlay {
  position: fixed;
  inset: 0;
}

.brand-landing__background {
  z-index: 0;
  background-image: var(--background-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.brand-landing__overlay {
  z-index: 1;
  background: var(--overlay-color);
  opacity: var(--overlay-opacity);
}

.brand-landing__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.brand-landing__logo {
  display: block;
  width: var(--logo-width);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.brand-landing__footer {
  position: fixed;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 18px;
  padding: 0 18px;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, var(--footer-opacity));
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

@media (max-width: 700px) {
  .brand-landing__logo {
    width: var(--mobile-logo-width);
  }

  .brand-landing__content {
    padding: 18px;
  }

  .brand-landing__footer {
    bottom: 14px;
    font-size: 12px;
  }
}
