/*
File: style.css
Version History:
- 1.0.0: Initial theme metadata and structure.
- 1.0.1: Added specific WordPress theme headers.
- 1.0.2: Integrated layout styles for full compatibility.
- 1.0.3: Finalized CSS for theme installation and activation.
- 1.0.4: Professional Black/Red/White theme update.
- 1.0.5: Added support for Customizer-driven dynamic styling.
- 1.0.6: Version bump for full section editability and reordering support.

Theme Name: J. Bowers-Archer Theme
Theme URI: https://highlightai.com
Author: Highlight AI for Jay
Description: A custom professional archery and photography theme for @jbowersarcher. Fully editable via the WordPress Customizer including text, images, and section ordering.
Version: 1.0.6
License: GNU General Public License v2 or later
Text Domain: jbowersarcher
*/

:root {
    --primary-accent: #D00000; /* Default Professional Red */
    --main-black: #000000;
    --bg-dark: #121212;
    --text-white: #FFFFFF;
    --text-muted: #A0A0A0;
    --pure-white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--main-black);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: var(--main-black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--pure-white);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

/* Hero Section */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--pure-white);
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    border-bottom: 4px solid var(--primary-accent);
    padding-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: var(--text-muted);
}

.btn {
    padding: 12px 30px;
    background: var(--primary-accent);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 0px;
    font-weight: 700;
    transition: transform 0.3s, background 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    background: #a00000;
}

/* About Section */
.section {
    padding: 80px 10%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img {
    width: 100%;
    border-radius: 0px;
    box-shadow: 20px 20px 0px var(--primary-accent);
}

/* Benefits Grid */
.benefits {
    background: var(--bg-dark);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--main-black);
    padding: 30px;
    border: 1px solid #333;
    transition: border-color 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary-accent);
}

.benefit-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--pure-white);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    aspect-ratio: 1/1;
    background: #222;
    overflow: hidden;
    border: 1px solid #333;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s, transform 0.5s;
    filter: grayscale(100%);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--main-black);
    color: var(--pure-white);
    padding: 50px 10% 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.social-links a {
    color: var(--text-white);
    margin: 0 15px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-accent);
}

.copyright {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
