/*!
Theme Name: AusKeep Theme
Author URI: https://thecodechief.com
Theme URI: https://auskeep.com
Description: A WordPress theme for AusKeep - Job and Worker matching platform with Bootstrap 5
Author: AusKeep Team
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: auskeep
Domain Path: /languages
Tags: business, employment, bootstrap, responsive, two-columns
*/
/* Basic WordPress Required Styles */
.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

.aligncenter {
    display: block;
    margin: 0 auto 1rem;
}

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

.wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Theme Specific Styles */
:root {
    --primary-green: #5a6b4a;
    --secondary-green: #7a8a6a;
    --light-green: #a3b692;
    --cream: #f5f3f0;
    --warm-white: #faf9f7;
    --text-dark: #2d3748;
    --text-gray: #718096;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Header Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--cream) !important;
    letter-spacing: 1.5px;
    font-family: fantasy;
}

.navbar {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    box-shadow: 0 2px 20px rgba(90, 107, 74, 0.15);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--light-green) !important;
    transform: translateY(-1px);
}


@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 2000px; }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Wave Section Divider */
.wave-divider {
    position: relative;
    height: 100px;
    background: var(--cream);
}

.wave-divider svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

/* Cards */
.job-card, .worker-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.job-card:hover, .worker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Filters */
.filter-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(90, 107, 74, 0.25);
}

/* Toggle Switch */
.form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Modals */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: none;
    padding: 2rem 2rem 1rem;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-title {
    font-weight: 700;
    color: var(--text-dark);
}

/* Authentication Forms */
.auth-form .form-control {
    background-color: #f1f5f9;
    border: none;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 1rem;
}

.auth-form .btn {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    margin-top: 1rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-color: var(--primary-green) !important;
    color: var(--primary-green);
    border-radius: 10px;
    background: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #1d6df7!important;
    color: var(--primary-green)!important;
}

/* Categories Section */
.category-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--cream);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--light-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .filter-section {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
}

/* Utility Classes */
.text-primary-green {
    color: var(--primary-green) !important;
}

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

.shadow-custom {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08) !important;
}

.border-radius-custom {
    border-radius: 15px !important;
}

/* Modal Styles */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 700px;
        margin: 1.75rem auto;
    }
}
.fa-3x {
    font-size: 1.5rem !important;
}