/*
Theme Name: Fort Bliss Fire Modern
Description: A premium, completely custom theme for Fort Bliss Fire.
Version: 2.0
Author: Vibe Coder
*/

/* --- Variables --- */
:root {
    --color-bg-dark: #0B0C10; /* Deep charcoal */
    --color-bg-card: #1F2833; /* Lighter charcoal */
    --color-accent: #FF3B30;  /* Vibrant Fire Red */
    --color-accent-hover: #D32F2F;
    --color-text-main: #C5C6C7;
    --color-text-light: #FFFFFF;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Global Reset & Basics --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text-light);
    line-height: 1.2;
}

a { text-decoration: none; transition: var(--transition-smooth); }

/* --- Modern Glassmorphism Header --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 20px 0;
}

/* Prevent WP Admin Bar from covering the fixed header */
.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span { color: var(--color-accent); }

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover { color: var(--color-accent); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(11,12,16,1) 0%, rgba(31,40,51,0.8) 100%);
    position: relative;
    padding: 120px 5% 60px;
}

/* Decorative background glow */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 30%;
    background: linear-gradient(to top, rgba(255, 59, 48, 0.05), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--color-accent);
    display: block;
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Grid Section (Services / Features) --- */
.services-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.card {
    background: var(--color-bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border-top: 4px solid transparent;
    transition: var(--transition-smooth);
}

.card:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--color-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p { font-size: 0.95rem; }

/* --- Footer --- */
.site-footer {
    background: #050505;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.footer-logo span { color: var(--color-accent); }

.copyright {
    color: #666;
    font-size: 0.85rem;
    margin-top: 30px;
}