/* VirtualHire.ph - Main Stylesheet */

/* Global variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --body-bg: #f8f9fa;
    --card-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --sidebar-width: 250px;
    --navbar-height: 56px;
}

/* Base resets */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--body-bg);
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 1.5;
    font-size: 16px;
}

/* Import component CSS files */
@import url('components/navbar.css');
@import url('components/sidebar.css');
@import url('components/content.css');
@import url('components/footer.css');

/* Layout structure */
.container {
    max-width: 1320px;
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

/* Utility classes */
.vh-border-light {
    border: 1px solid var(--border-color);
}

.vh-shadow-sm {
    box-shadow: var(--card-shadow);
}

.vh-rounded {
    border-radius: 8px;
}

.vh-transition {
    transition: all var(--transition-speed) ease;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .vh-sm-only {
        display: block;
    }
    
    .vh-md-up {
        display: none;
    }
}

@media (min-width: 769px) {
    .vh-sm-only {
        display: none;
    }
    
    .vh-md-up {
        display: block;
    }
}

/* Add any custom overrides or extensions here */
