/*
Theme Name: The Web Builders EU
Theme URI: https://thewebbuilders.eu
Author: The Web Builders EU
Author URI: https://thewebbuilders.eu
Description: Custom child theme for The Web Builders EU agency website. Designed for use with Elementor Pro on any WordPress theme.
Template: hello-elementor
Version: 1.0.0
License: GPL v2 or later
Text Domain: twb-theme
Tags: web-design, agency, elementor, business, e-commerce, portfolio

Notes:
This child theme is designed to work with Hello Elementor as the parent theme.
If you are using a different parent theme, change the "Template:" line above.
Compatible parent themes: Hello Elementor, Astra, GeneratePress, OceanWP.
*/

/* ═══════════════════════════════════════════════════════════════════════════
   Global Overrides & Brand Styles
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --twb-primary: #0057ff;
    --twb-primary-dark: #0041cc;
    --twb-accent: #00d4aa;
    --twb-dark: #1a1a2e;
    --twb-text: #2d3436;
    --twb-light: #f8f9fc;
}

/* Base typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--twb-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--twb-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--twb-primary);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--twb-primary-dark);
}

/* ─── Navigation Brand Tweaks ─────────────────────────────────────────────── */
.twb-nav-cta a {
    background: var(--twb-primary) !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
}

.twb-nav-cta a:hover {
    background: var(--twb-primary-dark) !important;
}

/* ─── Page Content Spacing ────────────────────────────────────────────────── */
.page-content,
.entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* ─── WordPress Block Overrides ───────────────────────────────────────────── */
.wp-block-button__link {
    background-color: var(--twb-primary);
    border-radius: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
}

.wp-block-button__link:hover {
    background-color: var(--twb-primary-dark);
    transform: translateY(-1px);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    color: var(--twb-primary);
    border: 2px solid var(--twb-primary);
    background: transparent;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--twb-primary);
    color: #fff;
}

.wp-block-columns {
    gap: 30px;
}

/* ─── Smooth Scrolling ────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--twb-dark);
    color: rgba(255, 255, 255, 0.7);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
    color: var(--twb-accent);
}
