/**
 * Base Styles - Xeora
 * 
 * @package Xeora
 * @subpackage CSS/Base
 * @since 3.8.0
 */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container */
.xeora-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Row and Column system */
.xeora-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.xeora-col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.xeora-col-md-offset-2 {
    margin-left: 16.666667%;
}

/* Typography */
.xeora-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.xeora-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Buttons */
.xeora-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.xeora-btn-primary {
    background-color: #007bff;
    color: white;
}

.xeora-btn-primary:hover {
    background-color: #0056b3;
}

.xeora-btn-secondary {
    background-color: #6c757d;
    color: white;
}

.xeora-btn-secondary:hover {
    background-color: #545b62;
}

/* Forms */
.xeora-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.xeora-form-group {
    margin-bottom: 1.5rem;
}

.xeora-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
}

.xeora-form-control {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out;
}

.xeora-form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Cards */
.xeora-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.xeora-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .xeora-col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .xeora-col-md-offset-2 {
        margin-left: 0;
    }
    
    .xeora-container {
        padding: 0 10px;
    }
}