/*
Theme Name: Premier Shade Splash
Theme URI: https://premiershade.com.tr/
Author: Premier Shade
Description: Premier Shade için yalnızca ortalanmış logodan oluşan minimal açılış sayfası teması.
Version: 1.0.0
Requires at least: 5.8
Requires PHP: 7.4
Text Domain: premier-shade-splash
*/

:root {
    --ps-background: #ffffff;
    --ps-logo-width: 620px;
}

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

body.premier-shade-splash {
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--ps-background);
    overflow-x: hidden;
}

.ps-splash {
    box-sizing: border-box;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: clamp(28px, 5vw, 80px);
    background: var(--ps-background);
}

.ps-logo,
.ps-splash .custom-logo {
    display: block;
    width: min(var(--ps-logo-width), 76vw);
    max-width: 100%;
    height: auto;
}

.ps-splash .custom-logo-link {
    display: block;
    line-height: 0;
}

body.admin-bar .ps-splash {
    min-height: calc(100dvh - 32px);
}

@media (max-width: 782px) {
    body.admin-bar .ps-splash {
        min-height: calc(100dvh - 46px);
    }
}

@media (max-width: 520px) {
    .ps-splash {
        padding: 24px;
    }

    .ps-logo,
    .ps-splash .custom-logo {
        width: 84vw;
    }
}
