/* Acme Corp Shared Styles */
/* Reusable across all Acme prototypes */

:root {
    --acme-primary: #1a5490;
    --acme-secondary: #ff6b35;
    --acme-dark: #0d3a6d;
    --acme-light: #f0f7ff;
    --acme-gray: #666;
    --acme-border: #ddd;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--acme-primary);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 48px; margin-bottom: 20px; }
h2 { font-size: 36px; margin-bottom: 18px; }
h3 { font-size: 28px; margin-bottom: 16px; }
h4 { font-size: 22px; margin-bottom: 14px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--acme-secondary);
    color: white;
}

.btn-primary:hover {
    background: #e55a28;
}

.btn-secondary {
    background: transparent;
    color: var(--acme-primary);
    border-color: var(--acme-primary);
}

.btn-secondary:hover {
    background: var(--acme-primary);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 18px;
    color: var(--acme-gray);
    margin-top: 15px;
}

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

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

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    .section { padding: 60px 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
