/*
Theme Name: PickTwo Theme
Description: Custom theme for PickTwo - South Africa's premier AI talent partner
Author: PickTwo
Version: 1.0.0
Template: hello-elementor
*/

/* Import parent theme styles */
@import url("../hello-elementor/style.css");

/* PickTwo Brand Colors */
:root {
    --pt-primary-blue: #0066CC;
    --pt-medium-blue: #3FA9F5;
    --pt-light-blue: #88DDFF;
    --pt-dark-navy: #002C51;
    --pt-primary-grey: #999999;
    --pt-success-green: #10B981;
    --pt-error-red: #EF4444;

    /* Typography */
    --pt-font-heading: 'Montserrat', sans-serif;
    --pt-font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --pt-space-xs: 4px;
    --pt-space-sm: 8px;
    --pt-space-md: 16px;
    --pt-space-lg: 24px;
    --pt-space-xl: 32px;
    --pt-space-2xl: 48px;
    --pt-space-3xl: 64px;

    /* Text sizes */
    --pt-text-xs: 12px;
    --pt-text-sm: 14px;
    --pt-text-base: 16px;
    --pt-text-lg: 20px;
    --pt-text-xl: 24px;
    --pt-text-2xl: 32px;
    --pt-text-3xl: 40px;
    --pt-text-4xl: 48px;
}

/* Global Styles */
body {
    font-family: var(--pt-font-body);
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--pt-font-heading);
    font-weight: 600;
    color: var(--pt-dark-navy);
}

/* Hide default theme elements that conflict with our plugins */
.site-header,
#site-header,
.hello-elementor-header,
.site-footer,
#site-footer,
.hello-elementor-footer {
    display: none !important;
    visibility: hidden !important;
}

/* Ensure our custom header and footer are visible */
.pt-header,
.pt-footer {
    display: block !important;
    visibility: visible !important;
}

/* Button Styles */
.btn,
button,
input[type="submit"],
input[type="button"],
.wp-block-button__link {
    font-family: var(--pt-font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
}

.btn-primary,
.wp-block-button__link {
    background: var(--pt-primary-blue);
    color: white;
    border: 2px solid var(--pt-primary-blue);
}

.btn-primary:hover,
.wp-block-button__link:hover {
    background: var(--pt-medium-blue);
    border-color: var(--pt-medium-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

/* Form Styles */
input,
textarea,
select {
    border: 2px solid #ddd;
    padding: 12px 16px;
    font-family: var(--pt-font-body);
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--pt-primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Link Styles */
a {
    color: var(--pt-primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--pt-medium-blue);
}

/* Remove underlines from all links by default */
a {
    text-decoration: none !important;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--pt-space-sm); }
.mb-2 { margin-bottom: var(--pt-space-md); }
.mb-3 { margin-bottom: var(--pt-space-lg); }
.mb-4 { margin-bottom: var(--pt-space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--pt-space-sm); }
.mt-2 { margin-top: var(--pt-space-md); }
.mt-3 { margin-top: var(--pt-space-lg); }
.mt-4 { margin-top: var(--pt-space-xl); }

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --pt-text-3xl: 32px;
        --pt-text-4xl: 36px;
    }
}

@media (max-width: 480px) {
    :root {
        --pt-text-2xl: 28px;
        --pt-text-3xl: 32px;
    }
}