/*
Theme Name: Strangeways
Theme URI: https://strangeways.pl
Author: Kacper Baldyga
Author URI: https://strangeways.pl
Description: Minimalist coming soon theme for Strangeways - B2B SaaS Product Marketing & Growth consultancy.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: strangeways
*/

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

html, body {
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #201c17;
    color: #ede8e0;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.coming-soon {
    text-align: center;
    max-width: 560px;
    width: 100%;
}

.coming-soon__logo {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: #c0392b;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.coming-soon__name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.15s forwards;
}

.coming-soon__tagline {
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.coming-soon__status {
    font-size: 0.9rem;
    color: #9a928a;
    margin-bottom: 3.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.45s forwards;
}

.coming-soon__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
}

.coming-soon__footer a {
    color: #9a928a;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.coming-soon__footer a:hover {
    color: #ede8e0;
}

.coming-soon__footer svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.coming-soon__divider {
    width: 1px;
    height: 16px;
    background-color: #3a342e;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .coming-soon__logo {
        font-size: 4rem;
    }

    .coming-soon__name {
        font-size: 1.6rem;
    }

    .coming-soon__tagline {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .coming-soon__footer {
        flex-direction: column;
        gap: 1rem;
    }

    .coming-soon__divider {
        display: none;
    }
}
