/* Logo drinklog — splash styles */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body.ld-splash {
  width: 100%;
  height: 100%;
  background: #FFE600;
  overflow: hidden;
}

/* ── Centered stage ── */
.ld-center {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #FFE600;
}

/* ── Logo from custom-logo API ── */
.ld-center .custom-logo-link {
  display: block;
  line-height: 0;
}

.ld-center .custom-logo,
.ld-center .ld-logo {
  display: block;
  width: min(68vw, 560px);
  max-width: 100%;
  height: auto;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .ld-center .custom-logo,
  .ld-center .ld-logo {
    width: 78vw;
  }
}
