/*!
Theme Name: RUBICONE
Description: Тема с набором функционала для разработки LMS RUBICONE
Author: IT-Rockers
Version: 1.0.0
Requires at least: 6.8.2
Tested up to: 6.8.2
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rubicon
Tags: education, lms, elementor, woocommerce

RUBICON is a specialized WordPress theme designed for creating Learning Management Systems.
Built with Elementor Pro support and optimized for RUBICONE LMS integration.

This theme, like WordPress, is licensed under the GPL.
*/

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin: 0 0 1rem 0;
}

/* Links */
a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #005177;
    color: white;
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .alignleft,
    .alignright {
        float: none;
        margin: 0 0 1rem 0;
    }
}

/* Elementor Compatibility */
.elementor-page {
    overflow-x: hidden;
}

/* Print Styles */
@media print {
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    a, a:visited {
        text-decoration: underline;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}
