:root {
    --bg: hsl(30, 100%, 97%);
    --fg: hsl(20, 60%, 15%);
    --primary: hsl(25, 95%, 53%);
    --secondary: hsl(45, 100%, 60%);
    --accent: hsl(340, 80%, 60%);
    --heading: 'Baloo 2', cursive;
    --body: 'Quicksand', sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    color: var(--fg);
    font-family: var(--body);
    overflow-x: hidden;
}

.mouse-trail {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.coming-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem 1rem;
    background: linear-gradient(
        135deg,
        hsl(30, 100%, 97%) 0%,
        hsl(30, 100%, 93%) 35%,
        hsl(25, 95%, 86%) 70%,
        hsl(25, 90%, 80%) 100%
    );
}

.floating-bubbles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -80px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bubbleFloat linear infinite;
    opacity: 0;
}

.bubble.primary {
    background: rgba(249, 115, 22, 0.15);
    color: rgba(236, 72, 153, 0.50);
}

.bubble.secondary {
    background: rgba(250, 204, 21, 0.22);
    color: rgba(250, 204, 21, 0.60);
}

.bubble.accent {
    background: rgba(236, 72, 153, 0.14);
    color: rgba(236, 72, 153, 0.46);
}

.bubble i {
    font-size: 60%;
}

.decor-blob {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(58px);
    z-index: 0;
}

.blob-one {
    top: -4rem;
    left: -4rem;
    width: 20rem;
    height: 20rem;
    background: rgba(249, 115, 22, 0.15);
}

.blob-two {
    right: -5rem;
    bottom: -5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(236, 72, 153, 0.10);
}

.blob-three {
    top: 50%;
    left: 50%;
    width: min(700px, 78vw);
    height: min(700px, 78vw);
    background: rgba(250, 204, 21, 0.10);
    transform: translate(-50%, -50%);
}

.floating-icon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

.icon-heart-one {
    top: 10%;
    left: 3%;
    font-size: 2rem;
    color: rgba(236, 72, 153, 0.35);
}

.icon-star-one {
    top: 13%;
    right: 5%;
    font-size: 2.5rem;
    color: rgba(250, 204, 21, 0.45);
    animation-name: floatSlow;
}

.icon-star-two {
    left: 6%;
    bottom: 10%;
    font-size: 1.5rem;
    color: rgba(249, 115, 22, 0.25);
    animation-delay: 1s;
}

.icon-heart-two {
    right: 7%;
    bottom: 13%;
    font-size: 1.85rem;
    color: rgba(236, 72, 153, 0.30);
    animation-name: floatSlow;
    animation-delay: 2s;
}

.coming-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logos-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo {
    width: auto;
    object-fit: contain;
}

.logo-keryma {
    height: clamp(5rem, 4vw, 7rem);
    filter: drop-shadow(0 10px 16px rgba(92, 47, 20, 0.16));
}

.logo-voz {
    height: clamp(4rem, 5vw, 5rem);
    filter: drop-shadow(0 8px 14px rgba(92, 47, 20, 0.14));
}

.logo-divider {
    width: 1px;
    height: 3.5rem;
    border-radius: 999px;
    background: rgba(92, 47, 20, 0.15);
}

.avatar-wrap {
    position: relative;
    margin-bottom: 1.5rem;
    animation: avatarFloat 4s ease-in-out infinite;
}

.avatar-glow {
    position: absolute;
    inset: 8%;
    background: rgba(249, 115, 22, 0.20);
    border-radius: 999px;
    filter: blur(32px);
    transform: scale(0.78);
}

.avatar-img {
    position: relative;
    width: clamp(9rem, 18vw, 12rem);
    height: auto;
    filter: drop-shadow(0 24px 28px rgba(92, 47, 20, 0.20));
}

.coming-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.58rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.20);
    box-shadow: 0 8px 20px rgba(92, 47, 20, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.coming-badge strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(92, 47, 20, 0.70);
}

.coming-title {
    margin: 0 0 1rem;
    color: var(--fg);
    font-family: var(--heading);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.coming-title span {
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.coming-title svg {
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 100%;
    height: 12px;
}

.coming-title path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
}

.coming-text {
    max-width: 560px;
    margin: 0 0 2.25rem;
    color: rgba(92, 47, 20, 0.65);
    font-size: clamp(1rem, 2vw, 1.12rem);
    font-weight: 500;
    line-height: 1.75;
}

.coming-text strong {
    color: var(--primary);
    font-weight: 800;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 2.75rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    box-shadow: 0 12px 22px rgba(92, 47, 20, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.social-btn:hover {
    transform: translateY(-2px) scale(1.05);
    filter: saturate(1.08);
    box-shadow: 0 18px 30px rgba(92, 47, 20, 0.20);
}

.instagram-btn {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.whatsapp-btn {
    background: #22c55e;
}

.email-btn {
    background: var(--primary);
}

.footer-note {
    margin: 2.5rem 0 0;
    color: rgba(92, 47, 20, 0.35);
    font-size: 0.78rem;
    font-weight: 600;
}

.reveal-up {
    opacity: 0;
    animation: revealUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal-pop {
    opacity: 0;
    animation: revealPop 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.28s;
}

.delay-3 {
    animation-delay: 0.42s;
}

.delay-4 {
    animation-delay: 0.56s;
}

.delay-5 {
    animation-delay: 0.70s;
}

.delay-6 {
    animation-delay: 0.84s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes avatarFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) rotate(5deg);
    }

    66% {
        transform: translateY(-8px) rotate(-3deg);
    }
}

@keyframes floatSlow {
    0%,
    100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(-20px) rotate(8deg) scale(1.04);
    }
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.75;
    }

    90% {
        opacity: 0.30;
    }

    100% {
        transform: translateY(-120vh) scale(1);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .coming-page {
        padding: 2.5rem 1rem;
    }

    .logos-wrap {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .logo-divider {
        height: 2.8rem;
    }

    .coming-title {
        font-size: clamp(2.8rem, 13vw, 4rem);
    }

    .social-links {
        width: 100%;
    }

    .social-btn {
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .logos-wrap {
        transform: scale(0.9);
    }

    .coming-title {
        letter-spacing: -0.03em;
    }

    .social-btn {
        width: 100%;
        max-width: 240px;
    }

    .icon-heart-one {
        top: 7%;
        left: 6%;
        font-size: 1.45rem;
    }

    .icon-star-one {
        top: 9%;
        right: 6%;
        font-size: 1.75rem;
    }
}
