/*
Theme Name: MT Jobs
Theme URI: http://example.com/mt-jobs
Author: AI Assistant
Author URI: http://example.com
Description: A comprehensive, advanced WordPress theme for Job Portals.
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mt-jobs
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
    --primary-color: #00b894;
    --secondary-color: #0984e3;
    --accent-color: #6c5ce7;
    --text-color: #2d3436;
    --bg-color: #f5f6fa;
    --header-bg: #ffffff;
    --footer-bg: #1e272e;
    --card-bg: #ffffff;
    --border-color: #e5e5e5;
}

[data-theme="dark"] {
    --text-color: #dfe6e9;
    --bg-color: #2d3436;
    --header-bg: #1e272e;
    --card-bg: #191b1f;
    --border-color: #4b4b4b;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Reset & Basic Styles */
* { box-sizing: border-box; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 15px;
    font-weight: 700;
    color: var(--text-color);
}
p { margin-bottom: 15px; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


