/*
Theme Name: Meyer Arms
Theme URI: https://meyerarms.com
Author: Meyer Arms Company
Description: One-page theme matching the Meyer Arms landing page.
Version: 1.0.0
Text Domain: meyer-arms
*/
        :root {
            --primary-color: #0f172a; /* Dark Navy Background */
            --secondary-color: #1e293b; /* Card Background */
            --accent-color: #fbbf24; /* Gold/Tactical Accent */
            --text-color: #f1f5f9; /* Off-white Text */
            --muted-text: #94a3b8;
            --hover-color: #334155;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--primary-color);
            margin: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #fff;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #fff;
        }

        /* Header */
        header {
            background: linear-gradient(to bottom, #0f172a, #1e293b);
            color: white;
            padding: 3rem 1rem;
            text-align: center;
            width: 100%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--accent-color);
        }

        header h1 {
            font-size: 3rem;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        header p {
            font-size: 1.2rem;
            color: var(--accent-color);
            margin-top: 0.5rem;
            font-weight: 300;
        }

        /* Nav */
        nav {
            background-color: #020617;
            padding: 1rem;
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            padding: 0;
            margin: 0;
        }

        nav a {
            font-size: 1.1rem;
            font-weight: 500;
            text-transform: uppercase;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }

        nav a:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('images/hero_bg_placeholder.jpg'); /* Placeholder for a real hero image */
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 6rem 2rem;
            width: 100%;
            box-sizing: border-box;
        }

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

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #cbd5e1;
        }

        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 0.8rem 2rem;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 5px;
            text-transform: uppercase;
            border: 2px solid var(--accent-color);
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: transparent;
            color: var(--accent-color);
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            width: 95%;
            margin: 4rem auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: white;
            border-bottom: 2px solid var(--accent-color);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .center-wrapper {
            text-align: center;
            width: 100%;
        }

        /* Services */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: var(--secondary-color);
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #334155;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            border-color: var(--accent-color);
        }

        .service-card h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            border: 2px solid #334155;
            aspect-ratio: 16/9;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Contact Form */
        .contact-form {
            background-color: var(--secondary-color);
            padding: 3rem;
            border-radius: 8px;
            max-width: 600px;
            margin: 0 auto;
            border: 1px solid #334155;
        }

        .form-group {
            margin-bottom: 1.5rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent-color);
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            border-radius: 4px;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: white;
            font-size: 1rem;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-color);
        }

        /* Footer */
        footer {
            background-color: #020617;
            color: var(--muted-text);
            text-align: center;
            padding: 2rem;
            margin-top: auto;
            width: 100%;
            border-top: 1px solid #334155;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header h1 { font-size: 2rem; }
            .hero h2 { font-size: 2.5rem; }
            .section-title { font-size: 2rem; }
        }
