﻿/**
 * Landing Page Styles
 * PFAD: /css/landing.css
 * VERSION: 2.1.0
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.header-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.header-title-wrapper {
    display: flex;
    flex-direction: column;
}

.header-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-subtext {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--bg-hover);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--success-color);
    box-shadow: var(--glow-success);
    animation: pulse 2s infinite;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(var(--shadow-lg));
    animation: slide-in 0.6s ease;
}

.subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.welcome {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: slide-in 0.6s ease;
}

.welcome-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.welcome-name {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    margin-bottom: var(--spacing-xl);
}

.btn {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    display: block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-primary);
    box-shadow: var(--glow-primary);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, var(--primary-hover), var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(13, 110, 253, 0.8);
    }

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

    .btn-secondary:hover {
        background: var(--bg-hover);
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }

.quick {
    width: 100%;
    animation: slide-in 0.8s ease;
}

.quick-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.quick-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

    .quick-item:hover {
        background: var(--bg-hover);
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: var(--glow-primary);
    }

.quick-icon {
    font-size: 32px;
    margin-bottom: var(--spacing-xs);
}

.quick-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.quick-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.info {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    animation: slide-in 0.8s ease;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.info-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
}

.footer-copy {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.footer-link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

    .footer-link:hover {
        color: var(--primary-color);
    }

.footer-version {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
}

@media (max-width: 375px) {
    .quick-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .welcome-name {
        font-size: 24px;
    }
}
