/*
Theme Name: Liquid Funk Ventures Holding
Theme URI: https://liquidfunkventures.com/
Author: Liquid Funk Ventures
Description: Minimal full-screen holding page using the Liquid Funk Ventures colour icon PNG and white wordmark PNG on a pure black background.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: liquid-funk-ventures-holding
*/

:root {
  color-scheme: dark;
  --lfv-black: #000000;
  --lfv-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--lfv-black);
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--lfv-black);
  color: var(--lfv-white);
}

.lfv-holding {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 72px);
  text-align: center;
}

.lfv-icon {
  display: block;
  width: min(31vw, 330px);
  min-width: 180px;
  height: auto;
  margin: 0 auto clamp(24px, 3vw, 42px);
}

.lfv-wordmark {
  display: block;
  width: min(72vw, 860px);
  height: auto;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .lfv-holding {
    padding: 24px 18px;
  }

  .lfv-icon {
    width: min(54vw, 260px);
    min-width: 150px;
    margin-bottom: 24px;
  }

  .lfv-wordmark {
    width: min(90vw, 620px);
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .lfv-holding {
    padding: 18px;
  }

  .lfv-icon {
    width: min(22vw, 190px);
    min-width: 120px;
    margin-bottom: 16px;
  }

  .lfv-wordmark {
    width: min(62vw, 700px);
  }
}
