/*
Theme Name: Bronco Style Theme
Theme URI: https://example.com/bronco-theme
Author: Custom Theme Generator
Description: A Boise State inspired WordPress theme with bold blue and orange accents.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bronco-theme
*/

:root {
    --bsu-blue: #0033A0;
    --bsu-dark-blue: #001F60;
    --bsu-orange: #D64309;
    --bsu-orange-hover: #b83806;
    --bsu-light-bg: #F4F6F8;
    --bsu-text-dark: #222222;
    --bsu-white: #FFFFFF;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--bsu-text-dark);
    background-color: var(--bsu-white);
    line-height: 1.6;
}

a {
    color: var(--bsu-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* --- UTILITY BAR --- */
.utility-bar {
    background-color: var(--bsu-dark-blue);
    color: var(--bsu-white);
    font-size: 0.85rem;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-bar a {
    color: var(--bsu-white);
    margin-left: 15px;
    font-weight: 500;
}

.utility-bar a:hover {
    color: var(--bsu-orange);
    text-decoration: none;
}

/* --- MAIN HEADER --- */
.site-header {
    background: var(--bsu-white);
    border-bottom: 4px solid var(--bsu-orange);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-title a {
    color: var(--bsu-blue);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.main-navigation a {
    color: var(--bsu-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.main-navigation a:hover {
    color: var(--bsu-orange);
}

/* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, var(--bsu-blue) 0%, var(--bsu-dark-blue) 100%);
    color: var(--bsu-white);
    padding: 80px 5%;
    text-align: left;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.btn-orange {
    display: inline-block;
    background-color: var(--bsu-orange);
    color: var(--bsu-white) !important;
    padding: 14px 28px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: background 0.2s ease;
}

.btn-orange:hover {
    background-color: var(--bsu-orange-hover);
    text-decoration: none;
}

/* --- GRID / CARDS SECTION --- */
.featured-section {
    padding: 60px 5%;
    background-color: var(--bsu-light-bg);
}

.section-title {
    font-size: 2rem;
    color: var(--bsu-blue);
    margin-bottom: 30px;
    text-transform: uppercase;
    border-left: 5px solid var(--bsu-orange);
    padding-left: 15px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bsu-white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.3rem;
    color: var(--bsu-blue);
    margin-bottom: 10px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--bsu-dark-blue);
    color: var(--bsu-white);
    padding: 40px 5% 20px;
}

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

.footer-col h4 {
    color: var(--bsu-orange);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: var(--bsu-white);
    line-height: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
    }
    .hero-title {
        font-size: 2rem;
    }
}