/*
Theme Name: Aivora Premium
Theme URI: https://aivoralearning.com
Author: Antigravity
Description: A modern, premium theme inspired by LMS Education Study demo.
Version: 1.1.0
Text Domain: aivora-premium
*/

:root {
    --primary-orange: #f37335;
    --primary-green: #00a884;
    --dark-green: #004d40;
    --accent-yellow: #fbc02d;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --white: #ffffff;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
    color: var(--dark-green);
    font-weight: 700;
}

.premium-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.top-bar {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.main-header .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.btn-orange {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s;
    display: inline-block;
}

.btn-orange:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #e8f5f3 100%);
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content span.highlight {
    color: var(--primary-green);
}

/* Footer Styles */
.premium-footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-orange);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-orange);
}

/* --- Responsive Media Queries --- */

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .main-header {
        padding: 15px 0;
        border-radius: 0 0 20px 20px;
    }

    .main-header .flex-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
    }

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn-orange {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}
