/*
Theme Name: IJWE Coming Soon
Theme URI: https://ijustwannaeat.com
Author: I Just Wanna Eat
Author URI: https://ijustwannaeat.com
Description: A minimal coming soon page for the I Just Wanna Eat API backend at app.ijustwannaeat.com.
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: ijwe-coming-soon
*/

/* ── Reset & Base ─────────────────────────────────────── */

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    background: #FAFAF8;
    color: #1C1C1E;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Fade-in animation ────────────────────────────────── */

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

.fade-in {
    animation: fadeInUp 0.7s ease-out both;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.25s; }
.fade-in-delay-3 { animation-delay: 0.4s; }
.fade-in-delay-4 { animation-delay: 0.55s; }

/* ── Layout ───────────────────────────────────────────── */

.page-wrap {
    width: 100%;
    max-width: 620px;
    padding: 3rem 1.5rem;
    text-align: center;
}

/* ── Emoji accent ─────────────────────────────────────── */

.emoji-accent {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* ── Heading ──────────────────────────────────────────── */

.site-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1C1C1E;
    margin-bottom: 0.35rem;
}

.tagline {
    font-size: 1.125rem;
    color: #6B6B6B;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* ── Badge ────────────────────────────────────────────── */

.badge {
    display: inline-block;
    background: #FF6B5B;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3em 0.9em;
    border-radius: 999px;
    margin-bottom: 2rem;
}

/* ── Description ──────────────────────────────────────── */

.description {
    font-size: 1.05rem;
    color: #6B6B6B;
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

/* ── Feature list ─────────────────────────────────────── */

.features {
    list-style: none;
    text-align: left;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04),
                0 4px 12px rgba(0, 0, 0, 0.03);
}

.features li {
    padding: 0.6rem 0;
    font-size: 0.975rem;
    color: #1C1C1E;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features li + li {
    border-top: 1px solid #F0F0EE;
}

.features .icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #FFF0EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ── CTA button ───────────────────────────────────────── */

.cta {
    display: inline-block;
    background: #FF6B5B;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8em 1.8em;
    border-radius: 10px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.cta:hover,
.cta:focus {
    background: #E55A4A;
    transform: translateY(-1px);
    outline: none;
}

.cta:active {
    transform: translateY(0);
}

/* ── Footer ───────────────────────────────────────────── */

.site-footer {
    margin-top: 3rem;
    font-size: 0.8125rem;
    color: #9B9B9B;
}

/* ── Responsive ───────────────────────────────────────── */

@media (max-width: 480px) {
    .site-title {
        font-size: 1.75rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .features {
        padding: 1rem 1.15rem;
    }

    .emoji-accent {
        font-size: 2.5rem;
    }
}
