/*
Theme Name: WYZ Digital
Theme URI: https://wyzdigital.com
Author: WYZ Digital
Author URI: https://wyzdigital.com
Description: A clean, modern Elementor theme for WYZ Digital - AI-First Marketing Agency. Features conversion-optimized layouts, brand-consistent styling, and performance optimization.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wyz-digital
Tags: elementor, marketing, business, modern, clean

This theme is designed to work with Elementor Page Builder.
*/

/* ==========================================================================
   Global Styles
   ========================================================================== */

:root {
    /* Brand Colors */
    --wyz-neural-teal: #0F3F4C;
    --wyz-deep-signal-blue: #0B2E38;
    --wyz-dark-orange: #F46F2C;
    --wyz-ai-mist: #F4F8F9;
    --wyz-soft-slate: #E6EEF1;
    
    /* Typography Colors */
    --wyz-primary-text: #406A6B;
    --wyz-secondary-text: #3B4A52;
    --wyz-m2-text: #7F8C8D;
    
    /* Spacing */
    --wyz-section-padding: 120px;
    --wyz-section-padding-mobile: 80px;
    --wyz-container-width: 1280px;
    --wyz-grid-gap: 32px;
    --wyz-card-padding: 48px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--wyz-primary-text);
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--wyz-neural-teal);
}

h1 {
    font-size: 64px;
    line-height: 1.2;
}

h2 {
    font-size: 48px;
    line-height: 1.2;
}

h3 {
    font-size: 36px;
    line-height: 1.3;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Mobile Typography */
@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
    
    h1 {
        font-size: 42px;
    }
    
    h2 {
        font-size: 36px;
    }
    
    h3 {
        font-size: 28px;
    }
    
    h4 {
        font-size: 22px;
    }
}

/* Container */
.wyz-container {
    max-width: var(--wyz-container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Sections */
.wyz-section {
    padding-top: var(--wyz-section-padding);
    padding-bottom: var(--wyz-section-padding);
}

@media (max-width: 768px) {
    .wyz-section {
        padding-top: var(--wyz-section-padding-mobile);
        padding-bottom: var(--wyz-section-padding-mobile);
    }
}

.wyz-section--light {
    background-color: var(--wyz-ai-mist);
}

.wyz-section--dark {
    background-color: var(--wyz-deep-signal-blue);
    color: #FFFFFF;
}

/* Buttons */
.wyz-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.wyz-btn--primary {
    background-color: var(--wyz-dark-orange);
    color: #FFFFFF;
}

.wyz-btn--primary:hover {
    background-color: #D85F1F;
    color: #FFFFFF;
}

.wyz-btn--secondary {
    background-color: var(--wyz-neural-teal);
    color: #FFFFFF;
}

.wyz-btn--secondary:hover {
    background-color: #0C3339;
    color: #FFFFFF;
}

.wyz-btn--outline {
    background-color: transparent;
    color: var(--wyz-neural-teal);
    border: 2px solid var(--wyz-neural-teal);
    padding: 14px 38px;
}

.wyz-btn--outline:hover {
    background-color: var(--wyz-neural-teal);
    color: #FFFFFF;
}

/* Cards */
.wyz-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: var(--wyz-card-padding);
    transition: all 0.3s ease;
}

.wyz-card--feature {
    padding: 40px;
    box-shadow: 0 4px 12px rgba(15, 63, 76, 0.08);
}

.wyz-card--feature:hover {
    box-shadow: 0 8px 24px rgba(15, 63, 76, 0.12);
    transform: translateY(-4px);
}

.wyz-card--product {
    border: 1px solid var(--wyz-soft-slate);
}

.wyz-card--product:hover {
    border-color: var(--wyz-neural-teal);
}

.wyz-card--testimonial {
    background-color: var(--wyz-ai-mist);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--wyz-dark-orange);
}

/* Grid Layouts */
.wyz-grid {
    display: grid;
    gap: var(--wyz-grid-gap);
}

.wyz-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.wyz-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.wyz-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .wyz-grid--3,
    .wyz-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wyz-grid--2,
    .wyz-grid--3,
    .wyz-grid--4 {
        grid-template-columns: 1fr;
    }
}

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

.wyz-text-large {
    font-size: 22px;
    line-height: 1.6;
}

.wyz-text-small {
    font-size: 16px;
    line-height: 1.6;
}

.wyz-mb-0 { margin-bottom: 0; }
.wyz-mb-1 { margin-bottom: 1rem; }
.wyz-mb-2 { margin-bottom: 2rem; }
.wyz-mb-3 { margin-bottom: 3rem; }

.wyz-mt-0 { margin-top: 0; }
.wyz-mt-1 { margin-top: 1rem; }
.wyz-mt-2 { margin-top: 2rem; }
.wyz-mt-3 { margin-top: 3rem; }

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--wyz-dark-orange);
    outline-offset: 2px;
}

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