/*
Theme Name: Gideon Pike Tactical
Theme URI: https://gideonpike.com
Author: Gideon Pike Systems
Description: A custom enterprise SaaS theme with dark-mode glassmorphism and tactical UI.
Version: 1.0.0
*/

:root {
    --gp-gold: #d4af37;
    --gp-bg-dark: #0b0d12;
    --gp-panel: rgba(20, 24, 31, 0.75);
    --gp-text: #e0e6ed;
}

body {
    background-color: var(--gp-bg-dark);
    background-image: radial-gradient(circle at 50% 0%, #1a1f2e 0%, transparent 70%);
    background-attachment: fixed;
    color: var(--gp-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    line-height: 1.6;
}

.gp-container { max-width: 1200px; margin: 0 auto; padding: 2rem; }

/* Buttons */
.gp-button { display: inline-block; width: 100%; padding: 15px; background-color: var(--gp-gold); color: #000 !important; text-align: center; text-decoration: none; border-radius: 8px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s; border: none; cursor: pointer; box-sizing: border-box; }
.gp-button:hover { background-color: #fce277; box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
.gp-button.secondary { background-color: transparent; border: 1px solid var(--gp-gold); color: var(--gp-gold) !important; }
.gp-button.secondary:hover { background-color: rgba(212, 175, 55, 0.1); }

/* Hero Section */
.gp-hero { text-align: center; padding: 6rem 1rem 4rem 1rem; }
.gp-hero h1 { font-size: 4rem; color: #ffffff; margin-bottom: 1rem; line-height: 1.1; letter-spacing: -1px; }
.gp-hero p { font-size: 1.25rem; color: #8a93a6; max-width: 800px; margin: 0 auto 3rem auto; }
.gp-hero-buttons { display: flex; gap: 1rem; justify-content: center; max-width: 500px; margin: 0 auto; }

/* Feature Grid */
.gp-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin: 4rem 0; }
.gp-feature-card { background: var(--gp-panel); backdrop-filter: blur(16px); padding: 2rem; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.05); text-align: left; transition: transform 0.3s; }
.gp-feature-card:hover { transform: translateY(-5px); border-color: rgba(212, 175, 55, 0.3); }
.gp-feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.gp-feature-card h3 { color: white; margin-top: 0; font-size: 1.3rem; }
.gp-feature-card p { color: #8a93a6; font-size: 0.95rem; margin-bottom: 0; }

/* Pricing Table Grid */
.gp-pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.gp-pricing-card { background: var(--gp-panel); backdrop-filter: blur(16px); padding: 2.5rem; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.05); text-align: left; display: flex; flex-direction: column; }
.gp-pricing-card h3 { color: var(--gp-gold); font-size: 1.5rem; margin-bottom: 0.5rem; }
.gp-price { font-size: 2.5rem; color: white; font-weight: bold; margin-bottom: 1.5rem; }
.gp-price span { font-size: 1rem; color: #8a93a6; font-weight: normal; }
.gp-features { list-style: none; padding: 0; margin: 0 0 2rem 0; flex-grow: 1; }
.gp-features li { padding: 8px 0; color: #a1aabf; border-bottom: 1px solid rgba(255,255,255,0.05); }
.gp-features li::before { content: "✓"; color: var(--gp-gold); margin-right: 10px; font-weight: bold; }
.gp-enterprise { border: 1px solid var(--gp-gold); box-shadow: 0 0 30px rgba(212, 175, 55, 0.1); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .gp-hero h1 { font-size: 2.5rem; }
    .gp-hero-buttons { flex-direction: column; }
}

/* ==========================================
   Header & Navbar 
========================================== */
.gp-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.gp-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gp-logo a {
    color: var(--gp-gold);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 2px;
}
.gp-nav-links a {
    color: var(--gp-text);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: bold;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.gp-nav-links a:hover {
    color: var(--gp-gold);
}

/* ==========================================
   Footer 
========================================== */
.gp-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    text-align: center;
    color: #8a93a6;
    padding: 2rem 0;
    font-size: 0.9rem;
}
/* ==========================================
   Dynamic Menu Formatting
========================================== */
.gp-menu, .gp-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.gp-menu li a, .gp-footer-menu li a {
    color: var(--gp-text);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.gp-menu li a:hover, .gp-footer-menu li a:hover {
    color: var(--gp-gold);
}

/* Specific styling for the footer menu placement */
.gp-footer-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Ensure the Custom Logo scales correctly in the navbar */
.gp-logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

/* Fix for Custom Logo link styling injected by WP */
.gp-logo .custom-logo-link {
    display: block;
}