/* Landing Page - PsikoCheckUp */

.landing-body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #fff5f7 0%, #ffeaef 25%, #ffd9e2 50%, #ffe5ec 75%, #fff0f3 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.landing-header {
    position: fixed;
    top: 24px;
    right: 32px;
    z-index: 100;
}

.landing-btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: linear-gradient(135deg, #fb5373 0%, #ff7a93 100%);
    border: 1px solid rgba(251, 83, 115, 0.6);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(251, 83, 115, 0.3);
    transition: all 0.3s ease;
}

.landing-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 83, 115, 0.4);
    color: #fff;
}

.landing-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 80px 24px 100px;
    text-align: center;
}

.landing-logo {
    margin-bottom: 24px;
}

.landing-logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

.landing-welcome {
    font-size: 24px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 0 0 8px 0;
}

.landing-question {
    font-size: 18px;
    font-weight: 500;
    color: #2d2d2d;
    font-style: italic;
    margin: 0 0 32px 0;
}

.landing-btn-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: linear-gradient(135deg, #fb5373 0%, #ff7a93 100%);
    border: 1px solid rgba(251, 83, 115, 0.6);
    border-radius: 999px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(251, 83, 115, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.landing-btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 83, 115, 0.4);
    color: #fff;
}

.landing-footer {
    position: fixed;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    pointer-events: none;
}

.landing-footer-left {
    pointer-events: auto;
}

.landing-footer-left img {
    max-width: 120px;
    height: auto;
}

.landing-footer-right {
    pointer-events: auto;
}

.landing-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #2d2d2d;
    font-style: italic;
    margin: 0;
}

.landing-copyright {
    position: fixed;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 12px;
    z-index: 50;
}

.landing-copyright p {
    margin: 0;
    font-size: 12px;
    color: #888;
}

@media (max-width: 768px) {
    .landing-header {
        top: 16px;
        right: 16px;
    }

    .landing-btn-login {
        padding: 10px 20px;
        font-size: 13px;
    }

    .landing-logo img {
        max-width: 260px;
    }

    .landing-welcome {
        font-size: 20px;
    }

    .landing-question {
        font-size: 16px;
    }

    .landing-footer {
        flex-direction: column;
        gap: 12px;
        padding: 16px;
    }

    .landing-tagline {
        font-size: 12px;
        text-align: center;
    }
}
