/* Modern Wagtail-inspired welcome page styles */

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #000f50 0%, #1e1c5e 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Welcome wrapper - full viewport centering */
.welcome-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

/* Main content card */
.welcome-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

/* Logo section */
.welcome-logo {
    margin-bottom: 32px;
}

.welcome-logo a {
    display: inline-block;
    transition: transform 0.2s ease;
}

.welcome-logo a:hover {
    transform: scale(1.02);
}

.welcome-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

/* Header section */
.welcome-header {
    margin-bottom: 32px;
}

.welcome-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #262626;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.welcome-subtitle,
.welcome-greeting {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

.welcome-greeting {
    color: #43b1b0;
    font-weight: 500;
}

/* Actions section */
.welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Button styles */
.welcome-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.welcome-button svg {
    flex-shrink: 0;
    fill: currentColor;
}

/* Primary button */
.welcome-button-primary {
    background: #43b1b0;
    color: #ffffff;
}

.welcome-button-primary:hover {
    background: #3a9d9c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(67, 177, 176, 0.3);
}

/* Secondary button */
.welcome-button-secondary {
    background: #667eea;
    color: #ffffff;
}

.welcome-button-secondary:hover {
    background: #5568d3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Outline button */
.welcome-button-outline {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.welcome-button-outline:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

/* Large button variant */
.welcome-button-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 599px) {
    .welcome-content {
        padding: 32px 24px;
    }

    .welcome-header h1 {
        font-size: 24px;
    }

    .welcome-logo img {
        max-height: 60px;
    }
}

@media (max-width: 360px) {
    .welcome-content {
        padding: 24px 16px;
    }

    .welcome-button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .welcome-button-large {
        padding: 14px 24px;
        font-size: 15px;
    }
}
