/*
Theme Name: OB Guitar Academy
Theme URI: https://obguitaracademy.com
Author: OB Guitar Dev
Description: A specialized theme for professional guitar lessons with Elementor support.
Version: 1.0.0
Text Domain: obga
*/

:root {
    --primary-color: #f59e0b;
    --secondary-color: #1e293b;
    --text-color: #333;
    --bg-color: #fff;
    --font-family: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Basic Grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles are handled in dynamic CSS mostly, but basics here */
.site-header {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

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

/* Archive Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lesson-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.lesson-card:hover {
    transform: translateY(-5px);
}

.lesson-content {
    padding: 1.5rem;
}

.lesson-meta {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.filter-bar {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group select {
    padding: 0.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
}

.btn-filter {
    background: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
}

/* Menu */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
}
