/*
Theme Name: TREE MLS Agent Portal
Theme URI: https://treemls.com
Description: Technical agent dashboard theme for TREE MLS Extended Listing Services. Clean, minimal interface for agent login and listing management.
Version: 1.0
Author: TREE MLS
Author URI: https://treemls.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: treemls-portal
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments

TREE MLS Agent Portal Theme
Technical and functional - built for agents to manage their extended listings.
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
}

a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #2563eb;
}

/* Header */
.site-header {
    background: #1e293b;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding h1 {
    font-size: 24px;
    font-weight: 700;
}

.site-branding a {
    color: white;
}

.site-branding .tagline {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: white;
    font-weight: 500;
}

.main-navigation a:hover {
    color: #3b82f6;
}

/* Main Content */
.site-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Dashboard/Login Container */
.dashboard-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 60px;
    max-width: 600px;
    margin: 80px auto;
    text-align: center;
}

.dashboard-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e293b;
}

.dashboard-container p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 16px;
}

.login-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    color: white;
}

.dashboard-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
    text-align: left;
}

.info-item h3 {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 10px;
}

.info-item ul {
    list-style: none;
}

.info-item li {
    color: #64748b;
    font-size: 14px;
    padding: 5px 0;
}

.info-item li:before {
    content: "✓ ";
    color: #3b82f6;
    font-weight: bold;
    margin-right: 8px;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3b82f6;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
    border-radius: 12px;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1e3a8a;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #1e3a8a;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-branding {
    margin-bottom: 20px;
}

.footer-branding h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-info p {
    color: #94a3b8;
    font-size: 14px;
    margin: 10px 0;
}

.footer-info a {
    color: #3b82f6;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #64748b;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .dashboard-container {
        padding: 40px 30px;
        margin: 40px 20px;
    }
    
    .dashboard-container h2 {
        font-size: 24px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: #64748b;
    margin-top: 5px;
}

.sticky {
    /* Styles for sticky posts */
}

.bypostauthor {
    /* Styles for post author */
}
