/* ================================================
   Coming Soon — MM Travelers
   ================================================ */

:root {
    --color-primary: #2c5f8a;
    --color-accent:  #e8c97e;
    --font:          'Segoe UI', system-ui, sans-serif;
}

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

html, body {
    height: 100%;
}

body {
    font-family: var(--font);
    background:  #0f1c2e;
    color:       #f1f5f9;
    display:     flex;
    align-items: center;
    justify-content: center;
    min-height:  100vh;
    overflow:    hidden;
}

/* ── Background texture ──────────────────────────── */
body::before {
    content:  '';
    position: fixed;
    inset:    0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(44, 95, 138, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(44, 95, 138, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* ── Card ────────────────────────────────────────── */
.splash {
    position:   relative;
    text-align: center;
    padding:    3rem 2.5rem;
    max-width:  480px;
    width:      90%;
    animation:  fadeUp 0.8s ease both;
}

/* ── Globe + plane icon ──────────────────────────── */
.splash-icon {
    margin-bottom: 1.25rem;
}

.globe-svg {
    overflow: visible;
    filter:   drop-shadow(0 6px 24px rgba(44, 95, 138, 0.5));
}

/* ── Logo / brand ────────────────────────────────── */
.splash-logo {
    font-size:      2.6rem;
    font-weight:    700;
    letter-spacing: 0.04em;
    color:          #ffffff;
    line-height:    1.1;
}

.splash-logo span {
    color: var(--color-accent);
}

.splash-tagline {
    margin-top:  0.5rem;
    font-size:   0.95rem;
    color:       #94a3b8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── Divider ─────────────────────────────────────── */
.splash-divider {
    width:      48px;
    height:     2px;
    background: var(--color-accent);
    margin:     2rem auto;
    border:     none;
    border-radius: 2px;
    opacity:    0.7;
}

/* ── Coming Soon text ────────────────────────────── */
.splash-headline {
    font-size:   1.65rem;
    font-weight: 600;
    color:       #f8fafc;
    line-height: 1.25;
}

.splash-sub {
    margin-top: 0.75rem;
    font-size:  0.9rem;
    color:      #94a3b8;
    line-height: 1.6;
}

/* ── Instagram button ────────────────────────────── */
.splash-social {
    margin-top: 2.25rem;
}

.btn-instagram {
    display:         inline-flex;
    align-items:     center;
    gap:             0.55rem;
    padding:         0.7rem 1.5rem;
    border-radius:   2rem;
    font-size:       0.88rem;
    font-weight:     600;
    letter-spacing:  0.03em;
    text-decoration: none;
    color:           #ffffff;
    background:      linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    transition:      opacity 0.2s, transform 0.2s;
    white-space:     nowrap;
}

.btn-instagram:hover {
    opacity:   0.88;
    transform: translateY(-2px);
}

.btn-instagram svg {
    flex-shrink: 0;
    width:  20px;
    height: 20px;
    fill:   currentColor;
}

/* ── Animation ───────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
