/* ABOUTME: Standalone Coming Soon styles for BrushUp Netlify deployment. */
/* ABOUTME: Reuses the main app logo treatment and gradient background. */

:root {
    --primary-color: #3b82f6;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-hero: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 25%, #ec4899 50%, #f59e0b 75%, #10b981 100%);
    --logo-font-family: 'Covered By Your Grace', 'Nerko One', 'Kalam', 'Caveat Brush', cursive, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(to bottom, rgba(255, 255, 255, 1.0) 20%, transparent 150%),
        linear-gradient(135deg,
            #fecdc9 0%,
            #fecaca 20%,
            #fed7aa 40%,
            #fce7f3 60%,
            #e9d5ff 80%,
            #dbeafe 100%
        );
    background-attachment: fixed;
    min-height: 100vh;
    color: var(--gray-800);
    line-height: 1.6;
}

.page {
    min-height: 100vh;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.logo {
    font-family: var(--logo-font-family);
    font-size: clamp(3.5rem, 9vw, 5rem);
    font-weight: 700;
    background: var(--gradient-hero);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
    animation: gradientShift 12s ease-in-out infinite;
    user-select: none;
}

.tagline {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.05rem;
    user-select: none;
    cursor: default;
}

.coming-soon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.coming-soon__text {
    font-size: clamp(2.1rem, 5.6vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    transform: translateY(-14px);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 600px) {
    .tagline {
        font-size: 0.85rem;
    }

    .coming-soon__text {
        letter-spacing: 0.04em;
    }
}
