/**
 * Welcome Page Styles
 *
 * Styles for the admin welcome page component
 */

.app-welcome-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.welcome-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.welcome-content {
    flex: 1;
    max-width: 500px;
}

.welcome-content h1 {
    font-size: 2.5em;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.welcome-caption {
    font-size: 1.2em;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.welcome-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Welcome page specific button styles - inherits from base.css .wp-connect-button */
.wp-connect-button.primary {
    background: #000;
    color: #fff;
    border-color: #000;
}

.wp-connect-button.primary:hover {
    background: #000;
    opacity: 0.5;
}

.wp-connect-button.secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.wp-connect-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

.welcome-footer {
    color: #000;
    margin: 0;
    line-height: 1.5;
}

.welcome-footer a {
    color: #777;
    text-decoration: none;
    border-bottom: 1px solid #777;
    transition: all 0.3s ease;
}

.welcome-footer a:hover {
    opacity: 0.7;
}

.welcome-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
}

@media (max-width: 768px) {
    .welcome-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .welcome-content {
        max-width: 100%;
    }

    .welcome-content h1 {
        font-size: 2em;
    }

    .welcome-caption {
        font-size: 1.1em;
    }

    .welcome-actions {
        justify-content: center;
    }

    .welcome-image img {
        max-height: 300px;
    }
}