/*
Theme Name: SourceCodeLab Child
Theme URI: https://sourcecodelab.co/
Author: Source Code Lab
Author URI: https://sourcecodelab.co/
Description: Child theme for SourceCodeLab with a professional casino design, Bootstrap integration, and full customization.
Template: sourcecodelab
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sourcecodelab-child
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, bootstrap, casino
*/

/* Import parent theme styles */
@import url("../sourcecodelab/style.css");

/* Root variables for color scheme */
:root {
    --primary-color: #045cb4; /* Dark blue */
    --accent-color: #16caf2; /* Light blue */
    --white-color: #ffffff; /* White */
    --hover-color: #e0f7fa; /* Lighter shade for hover */
}

/* Override container width */
.container {
    max-width: 1400px !important;
}

/* Global styles */
body {
    background-color: var(--white-color);
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Header */
.site-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px 0;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px 0;
    text-align: center;
}