/*
Theme Name: Strangeways Soon
Theme URI: https://strangeways.pl
Author: Kacper Baldyga
Author URI: https://strangeways.pl
Description: Coming soon placeholder for Strangeways.
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-soon
*/

*, *::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;
}

a { color: inherit; text-decoration: none; }

.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: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.coming-soon__title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.15s forwards;
}

.coming-soon__tagline {
    font-size: 1rem;
    color: #9a928a;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

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

.coming-soon__links a {
    font-size: 0.9rem;
    color: #9a928a;
    transition: color 0.3s ease;
}

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

.coming-soon__links span {
    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__title {
        font-size: 1.5rem;
    }
}
