/*
Theme Name: Digital Ad Analytics
Theme URI: https://digitaladanalytics.com
Description: Premium WordPress theme for Digital Ad Analytics - A measurement and attribution specialist. Features beautiful design with white background, orange CTAs, and professional layout.
Version: 1.0.0
Author: Digital Ad Analytics
Author URI: https://digitaladanalytics.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: digital-ad-analytics
Domain Path: /languages
*/

/* THEME STYLESHEET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #666666;
    --tertiary-color: #999999;
    --accent-teal: #0d9488;
    --accent-orange: #f97316;
    --accent-blue: #3b82f6;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* BUTTONS */
.btn {
    padding: 1rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.btn-secondary:hover {
    background: #f0fdf9;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    body {
        font-size: 15px;
    }
}
