/*
Theme Name: 203 Creates Minimal
Theme URI: https://www.203creates.com
Description: High-performance minimalist theme for Agency.
Author: 203 Creates
Version: 1.0
*/

:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #000000; /* Bold, agency black */
    --secondary-color: #4a4a4a;
    --ct-blue: #003366; /* Nod to CT professionalism */
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --container-width: 1200px;
}

/* Reset & Basics */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-main); color: var(--text-color); line-height: 1.6; font-size: 18px; -webkit-font-smoothing: antialiased; }
a { color: var(--accent-color); text-decoration: none; transition: 0.3s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; display: block; }

/* Layout Utilities */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.btn { display: inline-block; background: var(--accent-color); color: #fff; padding: 15px 30px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 20px; }
.btn-outline { background: transparent; border: 2px solid var(--accent-color); color: var(--accent-color); }

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; margin-bottom: 20px; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

/* Header */
.site-header { padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px); z-index: 100; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.site-title { font-size: 1.5rem; font-weight: 900; letter-spacing: -1px; }
.main-navigation ul { display: flex; list-style: none; gap: 30px; }
.main-navigation a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }

/* Hero */
.hero { padding: 120px 0; text-align: left; }
.hero-content { max-width: 800px; }
.hero p { font-size: 1.25rem; color: var(--secondary-color); margin-bottom: 30px; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.service-card { border: 1px solid #eee; padding: 40px; transition: transform 0.2s; }
.service-card:hover { transform: translateY(-5px); border-color: var(--accent-color); }

/* Footer */
.site-footer { background: #000; color: #fff; padding: 60px 0; margin-top: 80px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* Mobile */
@media (max-width: 768px) {
    .main-navigation { display: none; } /* Use a plugin for mobile menu for speed */
    .section { padding: 50px 0; }
}