/* =========================================
   VYBA Care - Coming Soon Design System
   ========================================= */

:root {
    /* Brand Colors */
    --dark-blue: #0A2647;
    --teal: #5BBBA1;
    --bg-base: #f0f4f5; /* Lighter background resembling the screenshot */
    --bg-glass: rgba(255, 255, 255, 0.7);
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    
    /* Fonts */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-base);
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Background Spheres */
.bg-sphere {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}

.sphere-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,1) 0%, rgba(91, 187, 161, 0.2) 80%);
}

.sphere-2 {
    width: 700px;
    height: 700px;
    bottom: -300px;
    right: -200px;
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,1) 0%, rgba(10, 38, 71, 0.1) 80%);
}

.sphere-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: radial-gradient(circle at 35% 35%, rgba(255,255,255,1) 0%, rgba(200, 220, 220, 0.5) 80%);
}

/* Layout */
.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    padding: 0;
    z-index: 10;
}

.spacer-top {
    flex: 1;
    min-height: 20px;
}

.glass-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.spacer-bottom {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 120px; /* Ensures pill always has room without overlapping */
    padding: 20px 0;
}

.slogan-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Main Card */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    padding: 20px 40px;
    width: 80vw;
    box-shadow: 
        -15px -15px 35px rgba(255,255,255,0.9),
        15px 15px 35px rgba(0,0,0,0.06),
        inset 2px 2px 5px rgba(255,255,255,1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo Sphere inside Card */
.logo-sphere {
    width: 185px;
    height: 185px;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d8e5e4 90%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 
        -10px -10px 20px rgba(255, 255, 255, 1), 
        10px 10px 20px rgba(0, 0, 0, 0.1),
        inset -5px -5px 15px rgba(0,0,0,0.05),
        inset 5px 5px 15px rgba(255,255,255,1);
    border: 1px solid rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.main-logo-img {
    width: 150px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes the white background from the logo */
}

/* Typography */
.brand-title {
    font-family: var(--font-heading);
    color: var(--dark-blue);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.brand-title sup {
    font-size: 13px;
    font-weight: 600;
}

.brand-subtitle {
    color: var(--dark-blue);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.brand-subtitle span {
    color: var(--teal);
}

/* Dividers */
.divider {
    height: 2px;
    width: 100%;
    max-width: 300px;
    background: linear-gradient(90deg, transparent, rgba(10, 38, 71, 0.15), transparent);
    margin: 5px 0;
}

.bottom-divider {
    background: linear-gradient(90deg, transparent, rgba(91, 187, 161, 0.3), transparent);
}

/* Coming Soon Msg */
.coming-soon-msg {
    margin: 5px 0;
}

.coming-soon-msg .es {
    color: var(--dark-blue);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
}

.coming-soon-msg .en {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 600;
    font-style: italic;
}

/* Slogan Pill */
.slogan-pill {
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #d8e5e1 90%);
    color: var(--dark-blue);
    padding: 12px 25px;
    border-radius: 30px;
    margin-top: 0;
    margin-bottom: 15px;
    box-shadow: 
        -5px -5px 12px rgba(255,255,255,1), 
        6px 6px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.7);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.slogan-es {
    font-size: 12px;
    font-weight: 800;
    margin: 0;
}

.slogan-en {
    font-size: 11px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-gray);
    margin: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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