/*
Theme Name: Rent Wallet Theme
Theme URI: https://rentwallet.local
Author: Rent Wallet
Author URI: https://rentwallet.local
Description: A bespoke theme for the Rent Wallet platform - tenant wallet management, rent releases, and landlord payouts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rent-wallet-theme
*/

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: #f3f4f6;
    margin: 0;
    padding: 0;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 0 20px;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.site-logo {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
}

.site-logo a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #4b5563;
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

.main-nav a:hover {
    color: #2563eb;
    text-decoration: none;
}

.user-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-name {
    color: #4b5563;
}

.logout-link {
    color: #ef4444;
}

/* Main Content */
.site-main {
    min-height: calc(100vh - 140px);
    padding: 40px 20px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Page Titles */
.page-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1f2937;
}

/* Footer */
.site-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 30px 20px;
    text-align: center;
}

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

.site-footer a {
    color: #d1d5db;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .user-nav {
        flex-direction: column;
        gap: 10px;
    }
}
