/* Welcome/Login Section - Shown when user is not logged in */

.welcome-section {
    display: none; /* Hidden by default, shown by auth.js when not logged in */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 53px);
    padding: 2rem;
    text-align: center;
    background: var(--bg-base);
}

.welcome-content {
    max-width: 600px;
}

.welcome-logo {
    width: 80px;
    height: 80px;
    border: 3px solid var(--gold-primary);
    position: relative;
    margin: 0 auto 2rem;
}

.welcome-logo::before,
.welcome-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55%;
    height: 3px;
    background: var(--gold-primary);
}

.welcome-logo::before { transform: translate(-50%, -50%) rotate(-45deg); }
.welcome-logo::after { transform: translate(-50%, -50%) rotate(45deg); }

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.welcome-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.welcome-cta {
    padding: 1rem 2.5rem;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.welcome-cta:hover {
    background: var(--btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.welcome-cta svg {
    width: 20px;
    height: 20px;
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.welcome-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.welcome-feature-icon {
    font-size: 1.5rem;
}

.welcome-feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-section {
        padding: 1.5rem;
    }

    .welcome-title {
        font-size: 1.8rem;
    }

    .welcome-subtitle {
        font-size: 1rem;
    }

    .welcome-cta {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .welcome-features {
        flex-direction: column;
        gap: 1rem;
    }
}
