/*
Theme Name: All Ways Posted
Theme URI: https://allwaysposted.com
Author: Antigravity
Description: A premium, gold-and-navy themed website for All Ways Posted, focusing on social media consistency for small businesses and agency partners.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: allwaysposted
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    /* Brand Colors */
    --gold: #C4982E;
    --gold-light: #E0B44C;
    --gold-dark: #A67B1B;
    --navy: #1E2B3C;
    --navy-light: #2D3E55;
    --navy-dark: #121B27;
    
    /* Neutral Palette */
    --white: #FFFFFF;
    --warm-gray: #F5F2EE;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    
    /* Functional Colors */
    --accent: var(--gold);
    --bg-primary: var(--navy);
    --bg-secondary: var(--navy-light);
    --text-primary: var(--white);
    --text-secondary: var(--slate-300);
    --text-muted: var(--slate-400);
    
    /* Typography */
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: 12px;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

/* Premium Utilities */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.navy-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 152, 46, 0.3);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background-color: rgba(196, 152, 46, 0.1);
}

/* Hero Typography Refinement */
.display-large {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}

.hero-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(196, 152, 46, 0.12) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-2 {
    position: absolute;
    bottom: 0%;
    left: -5%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(184, 142, 82, 0.08) 0%, transparent 60%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.glass-premium {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.text-editorial {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--slate-400);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* High-Fidelity Path Background */
.hero-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

/* Social Dashboard Elements */
.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.feed-item {
    aspect-ratio: 1;
    background: linear-gradient(45deg, #2D3E55, #1E2B3C);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    background: var(--gold);
}

/* Particles/Sparkles */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.8; }
}

/* Checkmark Node */
.node-point {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(196, 152, 46, 0.1);
    border: 1px solid var(--gold);
    border-radius: 15px 15px 15px 0;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(196,152,46,0.2);
}

.node-point i {
    transform: rotate(-45deg);
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 900;
}


