/*
 * Theme Name: D Branding AI
 * Theme URI: https://dbrandingai.com
 * Description: Professional Astra Child Theme for AI Marketing Agency
 * Author: D Branding AI
 * Author URI: https://dbrandingai.com
 * Template: astra
 * Version: 1.0.0
 * License: GPL v2 or later
 * Text Domain: dbranding-ai
 */

:root {
    --primary: #0F1529;
    --secondary: #17A2B8;
    --accent-purple: #6F42C1;
    --text-dark: #212529;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --border: #E9ECEF;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    color: var(--secondary);
    text-decoration: none;
}

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

.site-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-branding {
    padding: 1rem 0;
}

.btn-primary,
.wp-block-button__link,
.wpcf7-submit {
    background: var(--secondary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover,
.wp-block-button__link:hover,
.wpcf7-submit:hover {
    background: #138496;
    transform: translateY(-2px);
}

.service-card,
.case-study-card,
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover,
.case-study-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.site-footer {
    background: var(--primary);
    color: white;
    padding: 50px 40px;
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
}
