/*
Theme Name: BCB Solutions
Theme URI: https://bcbsolutions.co
Author: BCB Solutions Company
Author URI: https://bcbsolutions.co
Description: A premium WordPress theme for BCB Solutions - Where Legacy Begins in Structure. Custom-designed with Rolex-inspired brand assets featuring emerald green, gold, and jet black color palette.
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: bcb-solutions
Tags: business, consulting, luxury, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready

BCB Solutions WordPress Theme, Copyright 2026
BCB Solutions is distributed under the terms of the GNU GPL
*/

/* ========================================
   BRAND COLOR PALETTE (ROLEX-INSPIRED)
   ======================================== */
:root {
    --emerald-green: #00552E;
    --gold: #C5A253;
    --jet-black: #101010;
    --pearl-white: #F5F5F5;
    --white: #FFFFFF;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--jet-black);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--jet-black);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--emerald-green);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */
.playfair { font-family: var(--font-primary); }
.inter { font-family: var(--font-body); }
.montserrat { font-family: var(--font-accent); }

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-alt {
    background-color: var(--pearl-white);
}

/* ========================================
   BUTTONS & CALL-TO-ACTION
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background-color: var(--emerald-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--gold);
    color: var(--jet-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 85, 46, 0.3);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--jet-black);
}

.btn-secondary:hover {
    background-color: var(--emerald-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 162, 83, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--emerald-green);
    color: var(--emerald-green);
}

.btn-outline:hover {
    background-color: var(--emerald-green);
    color: var(--white);
}

/* ========================================
   NAVIGATION HEADER
   ======================================== */
.site-header {
    background-color: var(--jet-black);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Site Branding & Logo */
.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-branding a {
    display: block;
    line-height: 0;
}

/* Custom Logo Styling */
.custom-logo-link {
    display: inline-block;
    max-width: 100px;
    height: auto;
}

.custom-logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 28px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.custom-logo:hover {
    opacity: 0.85;
}

/* Text Logo Fallback */
.site-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-logo:hover {
    color: var(--emerald-green);
}

.site-logo span {
    color: var(--emerald-green);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--pearl-white);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-navigation a:hover {
    color: var(--gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--jet-black) 0%, var(--emerald-green) 100%);
    padding: var(--spacing-xl) 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(197,162,83,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--pearl-white);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* ========================================
   TRANSFORMATION TIMELINE
   ======================================== */
.timeline {
    position: relative;
    padding: var(--spacing-lg) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--emerald-green), var(--gold));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--emerald-green);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 4px solid var(--gold);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--gold);
    border: 4px solid var(--emerald-green);
    border-radius: 50%;
    z-index: 1;
}

/* ========================================
   SERVICES CARDS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--emerald-green);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 85, 46, 0.2);
}

.service-card.tier-dfy {
    border-top-color: var(--emerald-green);
}

.service-card.tier-dwy {
    border-top-color: var(--gold);
}

.service-card.tier-diy {
    border-top-color: var(--jet-black);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--emerald-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
}

.service-card.tier-dwy .service-icon {
    background: var(--gold);
    color: var(--jet-black);
}

.service-card.tier-diy .service-icon {
    background: var(--jet-black);
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.service-description {
    color: #555;
    margin-bottom: var(--spacing-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--emerald-green);
    font-weight: bold;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    background: var(--jet-black);
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--gold);
}

.testimonial-role {
    color: var(--pearl-white);
    font-size: 0.9rem;
}

.testimonial-stats {
    margin-top: var(--spacing-sm);
    color: var(--emerald-green);
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--jet-black);
    color: var(--pearl-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-xs);
}

.footer-links a {
    color: var(--pearl-white);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(197, 162, 83, 0.3);
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-primary);
    font-style: italic;
    color: var(--gold);
    margin-top: var(--spacing-sm);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    
    /* Header adjustments for mobile */
    .site-header {
        padding: 0.5rem 0;
    }
    
    .custom-logo-link {
        max-width: 80px;
    }
    
    .custom-logo {
        max-height: 24px;
    }
    
    .site-logo {
        font-size: 1.5rem;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--jet-black);
        padding: var(--spacing-md);
    }
    
    .main-navigation.active ul {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .custom-logo-link {
        max-width: 90px;
    }
    
    .custom-logo {
        max-height: 26px;
    }
    
    .main-navigation a {
        font-size: 0.85rem;
    }
    
    .main-navigation ul {
        gap: 1.5rem;
    }
}

/* Large desktop - allow slightly larger logo */
@media (min-width: 1400px) {
    .custom-logo-link {
        max-width: 110px;
    }
    
    .custom-logo {
        max-height: 30px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-emerald { background-color: var(--emerald-green); }
.bg-gold { background-color: var(--gold); }
.bg-black { background-color: var(--jet-black); }
.bg-pearl { background-color: var(--pearl-white); }

.text-emerald { color: var(--emerald-green); }
.text-gold { color: var(--gold); }
.text-black { color: var(--jet-black); }
.text-white { color: var(--white); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
