/*
Theme Name: Windy City Digital
Theme URI: https://windycitydigital.com
Description: Modern Chicago Bears themed digital agency website
Author: Windy City Digital
Author URI: https://windycitydigital.com
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: windy-city-digital
Tags: chicago, bears, digital-marketing, web-design, seo, modern, responsive

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
*/

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0B162A;
}

/* Bears Theme Colors */
:root {
    --bears-navy: #0B162A;
    --bears-orange: #C83803;
    --bears-light-orange: #E64100;
    --bears-gray: #64748b;
    --bears-light-gray: #94a3b8;
    --bears-dark-gray: #1e293b;
}

/* Blog post body (single.php) — the Tailwind Typography plugin isn't loaded (Tailwind is
   pulled from the plain CDN build, see functions.php), so "prose" classes have no effect.
   These rules give the_content()'s paragraph/heading/list blocks readable dark-theme
   styling; the Custom HTML blocks in the same content bring their own classes and are
   unaffected. */
.prose-content > p { margin-bottom: 1.5rem; }
.prose-content > h2 { font-size: 1.875rem; font-weight: 700; color: #fff; margin: 2.5rem 0 1.5rem; }
.prose-content > h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin: 2rem 0 1rem; }
.prose-content > h4 { font-size: 1.125rem; font-weight: 600; color: #fff; margin: 1.5rem 0 0.75rem; }
.prose-content > ul, .prose-content > ol { margin: 0 0 1.5rem 1.5rem; }
.prose-content > ul { list-style: disc; }
.prose-content > ol { list-style: decimal; }
.prose-content > ul > li, .prose-content > ol > li { margin-bottom: 0.5rem; }
.prose-content strong { color: #fff; }
.prose-content em { color: #94a3b8; }

/* Single-service page intro paragraph — narrows/centers just the Paragraph block that
   opens the_content(); the Custom HTML <section> blocks after it (Features/Process/
   Pricing/FAQ) are full-width siblings and untouched by this rule. */
.service-content > p {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #cbd5e1;
}

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #0B162A 0%, #1e293b 50%, #334155 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #C83803 0%, #E64100 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.1);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #C83803 0%, #E64100 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E64100 0%, #C83803 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(200, 56, 3, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: rgba(148, 163, 184, 0.1);
    border-color: #C83803;
    color: #C83803;
}

/* Navigation */
.main-navigation {
    background: rgba(11, 22, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.main-navigation a {
    color: #94a3b8;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-navigation a:hover {
    color: white;
    background: rgba(200, 56, 3, 0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(200, 56, 3, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(230, 65, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Service Cards */
.service-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(200, 56, 3, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(200, 56, 3, 0.2) 0%, rgba(230, 65, 0, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(200, 56, 3, 0.3) 0%, rgba(230, 65, 0, 0.2) 100%);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.portfolio-item {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: #050a12;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 80px 0 40px;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #C83803;
}

/* Newsletter Form */
.newsletter-form input[type="email"] {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: white;
    width: 100%;
    margin-bottom: 12px;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #C83803;
    box-shadow: 0 0 0 3px rgba(200, 56, 3, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .site-footer {
        padding: 60px 0 30px;
    }
}

/* WordPress Specific Styles */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.wp-caption {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.wp-caption-text {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 8px;
}
