/*
Theme Name: AEB EDU Theme
Theme URI: https://example.com/aeb-edu
Author: Antigravity
Author URI: https://example.com
Description: A modern, ultra-responsive, Elementor-friendly educational theme designed perfectly for the AEB LMS Pro plugin. Features beautiful typography, glassmorphism, and seamless LMS integration.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aeb-edu-theme
Tags: custom-colors, custom-menu, education, elementor-ready, responsive-layout
*/

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0;
}

a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2563eb;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-navigation a {
    color: #475569;
    font-weight: 500;
    font-size: 1rem;
}

.main-navigation a:hover {
    color: #3b82f6;
}

/* Elementor Canvas Override */
.elementor-page .site-content {
    margin: 0;
    padding: 0;
}

/* Content Area */
.site-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 60vh;
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    text-align: center;
    padding: 40px 20px;
    margin-top: auto;
}

.site-footer a {
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        padding: 15px;
    }
    .main-navigation ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
