/* style.css */

/* Global Background (White) and Main Text (Black) */
body {
    background-color: #ffffff !important; 
    color: #121212 !important; 
}

h1, h2, h3, h4, h5, h6 {
    color: #000000 !important;
    font-weight: 700;
    letter-spacing: -0.025em;
}

p.text-muted {
    color: #4b5563 !important; 
    line-height: 1.6;
}

/* TOP BAR - Exactly #242424 */
.top-bar {
    background-color: #242424 !important;
    border-bottom: 1px solid #171717 !important;
}

/* Navigation Links & Hover Effect (Silver resting, Bright White on hover) */
.nav-link {
    color: #d1d5db !important; 
    transition: color 0.2s ease !important;
}
.nav-link:hover {
    color: #ffffff !important; 
}

/* The vertical separator in the menu */
.nav-divider {
    width: 1px;
    height: 1rem;
    background-color: #3f3f3f !important; /* Pure monochrome grey */
}

/* Get In Touch Button in Header */
.nav-btn {
    color: #d1d5db !important; 
    border: 1px solid #3f3f3f !important; /* Pure neutral grey border */
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease !important;
}
.nav-btn:hover {
    color: #ffffff !important; 
    border-color: #ffffff !important; 
    background-color: #333333 !important; 
}

/* CARDS - Clean Outline Style (#3f3f3f border, no background) */
.theme-card {
    background-color: transparent !important; 
    border: 1px solid #3f3f3f !important; 
    border-radius: 0.5rem;
    padding: 2rem;
    transition: all 0.2s ease-in-out;
}

/* Force all text inside the newly hollow cards to be dark */
.theme-card h3, 
.theme-card strong, 
.theme-card a,
.theme-card span {
    color: #000000 !important; 
}

.theme-card p.text-muted,
.theme-card ul,
.theme-card li {
    color: #4b5563 !important; 
}

.theme-card:hover {
    border-color: #000000 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05); 
}

/* Primary Button (Black) */
.btn-primary {
    background-color: #000000 !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    display: inline-block;
    transition: background-color 0.2s ease;
}
.btn-primary:hover {
    background-color: #333333 !important;
}

/* Secondary Button (Light grey outline resting, snaps to black on hover) */
.btn-secondary {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    border: 1px solid #d1d5db !important; /* Crisp, light silver resting border */
    display: inline-block;
    transition: all 0.2s ease;
}
.btn-secondary:hover {
    background-color: #f9fafb !important; /* Very subtle background shift */
    border-color: #000000 !important; /* Snaps to pure black for a punchy hover effect */
}

/* FOOTER - Matches Top Bar (#242424) */
.site-footer {
    background-color: #242424 !important; 
    border-top: 1px solid #171717 !important;
}

/* Base text in footer */
.site-footer, 
.site-footer p {
    color: #9ca3af !important; 
}

/* Footer Column Headings (Silver resting, Bright White on hover) */
.footer-heading {
    color: #d1d5db !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.2s ease;
}
.footer-heading:hover {
    color: #ffffff !important;
}

/* Footer Placeholder Links */
.footer-link {
    color: #6b7280 !important; 
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: block;
}
.footer-link:hover {
    color: #ffffff !important; 
}

/* Monochrome Billing Link */
.billing-link {
    color: #d1d5db !important;
    font-weight: 500;
    transition: color 0.2s ease;
}
.billing-link:hover {
    color: #ffffff !important;
}