/* Media QA Automation System - Professional Theme */

:root {
    /* Firefly Brand Colors */
    --concrete: #1e1e1e;
    --white: #ffffff;
    --go-green: #6dc697;
    --light-grey: #ebebeb;
    --pale-green: #D9EDDF;
    --dark-green: #386C5F;
    --dark-grey: #999ea8;
    --black: #000000;
    
    /* System Color Mappings */
    --primary-color: var(--go-green);
    --primary-dark: var(--dark-green);
    --secondary-color: var(--dark-grey);
    --success-color: var(--go-green);
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --light-gray: var(--light-grey);
    --medium-gray: var(--pale-green);
    --dark-gray: var(--concrete);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    min-height: 100vh;
    color: var(--dark-gray);
}

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
}

.login-header {
    margin-bottom: 32px;
}

.login-logo {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.login-subtitle {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.5;
}

.login-form {
    margin: 32px 0;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 14px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--medium-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.btn-primary {
    background: #6dc697;
    color: #000000;
    width: 100%;
    padding: 14px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #5fb885;
    color: #000000;
    transform: translateY(-1px);
}

.login-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--medium-gray);
}

.contact-info {
    font-size: 14px;
    color: var(--secondary-color);
    line-height: 1.5;
}

.contact-info strong {
    color: var(--primary-color);
}

/* Dashboard Styles */
.dashboard {
    min-height: 100vh;
    background: var(--light-gray);
}

.top-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%), 
                url('assets/images/banner-placeholder.svg') center/cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(1px);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.banner-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.feature-description {
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 1.5;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.navbar {
    background: #000000;
    padding: 20px 20px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--secondary-color);
}

.logout-btn {
    background: none;
    border: 1px solid var(--medium-gray);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.logout-btn:hover {
    border-color: var(--danger-color);
    color: var(--danger-color);
}

/* Responsive */
@media (max-width: 768px) {
    .login-card {
        padding: 32px 24px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}