/*
Theme Name: Studio Van Soldt
Description: Minimalistische landingspagina voor Studio Van Soldt.
Version: 1.0.0
Author: Studio Van Soldt
Text Domain: studio-van-soldt
*/

:root {
  --svs-background: #4d5a60;
  --svs-white: #ffffff;
  --svs-muted: rgba(255, 255, 255, 0.58);
  --svs-separator: rgba(255, 255, 255, 0.24);
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--svs-white);
  font-family: Helvetica, Arial, sans-serif;
}

.svs-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 2rem;
}

.svs-logo {
  width: min(72vw, 452px);
  margin: 0;
}

.svs-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.svs-contact {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  color: var(--svs-muted);
  font-size: clamp(0.69rem, 1vw, 0.84rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1.6;
}

.svs-phone {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.svs-phone:hover,
.svs-phone:focus-visible {
  color: var(--svs-white);
}

.svs-separator {
  color: var(--svs-separator);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .svs-page {
    padding: 1.5rem;
  }

  .svs-logo {
    width: min(86vw, 452px);
  }

  .svs-contact {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.1rem 0.55rem;
    text-align: center;
  }

  .svs-contact span:not(.svs-separator),
  .svs-contact a {
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .svs-logo {
    width: 88vw;
  }

  .svs-separator {
    display: none;
  }

  .svs-contact {
    flex-direction: column;
    gap: 0.12rem;
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svs-phone {
    transition: none;
  }
}

body.admin-bar .svs-page {
  min-height: calc(100svh - 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .svs-page {
    min-height: calc(100svh - 46px);
  }
}
