/* =========================================================
   prettyfy.mu - Coming Soon Landing Page
   File: /css/style.css

   Notes:
   - Vibrant, positive, uplifting color palette
   - Soft spiritual-inspired visual feel
   - Minimal and clean layout
   ========================================================= */

/* ===== CSS Reset / Base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background:
        linear-gradient(135deg, #ff7eb6 0%, #ffb347 30%, #7afcff 65%, #b388ff 100%);
    overflow: hidden;
}

/* ===== Main Layout ===== */
.page-shell {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* ===== Decorative Background Orbs ===== */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    animation: floatOrb 10s ease-in-out infinite;
}

.orb-one {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.28);
    top: 8%;
    left: 10%;
}

.orb-two {
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.18);
    bottom: 6%;
    right: 8%;
    animation-delay: 2s;
}

.orb-three {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.22);
    top: 18%;
    right: 18%;
    animation-delay: 4s;
}

/* ===== Main Card ===== */
.coming-soon-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    padding: 3rem 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ===== Symbol / Spiritual Accent ===== */
.symbol-wrap {
    margin-bottom: 1rem;
}

.lotus-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* ===== Typography ===== */
.brand-name {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.95;
}

h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.tagline {
    margin: 1.25rem auto 0;
    max-width: 560px;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.96);
}

.soft-note {
    margin-top: 1.25rem;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
}

/* ===== Animation ===== */
@keyframes floatOrb {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.04);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .coming-soon-card {
        padding: 2.25rem 1.5rem;
        border-radius: 22px;
    }

    .tagline {
        font-size: 1rem;
    }

    .soft-note {
        font-size: 0.92rem;
    }

    .orb-one,
    .orb-two,
    .orb-three {
        opacity: 0.22;
    }
}

@media (max-width: 480px) {
    body {
        overflow: auto;
    }

    .page-shell {
        padding: 1.25rem;
    }

    .coming-soon-card {
        padding: 2rem 1.2rem;
    }

    .brand-name {
        letter-spacing: 0.18rem;
        font-size: 0.92rem;
    }
}