/*
Theme Name: HR Consulting Theme
Theme URI: https://example.com
Description: A minimal WordPress theme for HR Consulting website
Version: 1.0.0
Author: Your Name
Author URI: https://example.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hr-consulting-theme
*/

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

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

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Tablet (768px-1280px) */
@media (min-width: 768px) and (max-width: 1280px) {
    .container {
        padding: 0 40px;
    }
}

/* Mobile (<=767px) */
@media (max-width: 767px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 400;
}

p {
    margin: 0;
}

/* Utilities */
.text-highlight {
    color: #1538BF;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #1538BF;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #0F2A8F;
}

.btn-outline {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #E0E0E0;
}

.btn-outline:hover {
    background-color: #F5F5F5;
}

.btn-link {
    background-color: transparent;
    color: #000000;
    padding: 8px 0;
}

.btn-link:hover {
    color: #1538BF;
}

.btn-disabled {
    background-color: #F0F0F0;
    color: #999999;
    cursor: not-allowed;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Component styles are loaded separately via functions.php */
