/*
Theme Name: Twister Coffee Coming Soon
Theme URI: https://www.twister-coffee.com/
Author: Twister Coffee
Description: A clean responsive coming-soon landing page for Twister Coffee.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: twister-coffee
*/

:root {
    --twister-blue: #002FA3;
    --twister-white: #ffffff;
}

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    background: var(--twister-blue);
    color: var(--twister-white);
    font-family: Arial, Helvetica, sans-serif;
}

.twister-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.twister-page::before,
.twister-page::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 50%;
    pointer-events: none;
}

.twister-page::before {
    width: 720px;
    height: 720px;
    left: -350px;
    bottom: -380px;
}

.twister-page::after {
    width: 560px;
    height: 560px;
    right: -290px;
    top: -300px;
}

.twister-content {
    width: min(900px, 92vw);
    min-height: 92vh;
    padding: 45px 20px 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.twister-logo {
    display: block;
    width: min(510px, 84vw);
    height: auto;
    margin: 0 auto 28px;
    filter: drop-shadow(0 14px 30px rgba(0,0,0,.18));
}

.twister-eyebrow {
    margin: 4px 0 18px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .42em;
    text-transform: uppercase;
    opacity: .92;
}

.twister-divider {
    width: 105px;
    height: 2px;
    background: rgba(255,255,255,.9);
    margin: 0 auto 26px;
}

.twister-title {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 7vw, 78px);
    line-height: .95;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.twister-tagline {
    margin: 22px 0 0;
    color: #fff;
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.5;
    letter-spacing: .08em;
    opacity: .94;
}

.twister-url {
    position: absolute;
    bottom: 24px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .72;
}

@media (max-width: 600px) {
    .twister-content {
        min-height: 100vh;
        padding-top: 30px;
        padding-bottom: 65px;
    }

    .twister-logo {
        width: 89vw;
        margin-bottom: 22px;
    }

    .twister-eyebrow {
        font-size: 10px;
        letter-spacing: .25em;
    }

    .twister-tagline {
        max-width: 320px;
        font-size: 16px;
    }

    .twister-url {
        bottom: 15px;
    }
}
