/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./website/assets/css/esco-brand.css ***!
  \*************************************************************************************/
/* ESCO Forest & Gold Brand System */

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

/* CSS Variables - Brand Colors */
:root {
    --forest-primary: #0d3b2e;
    --forest-light: #1a5c48;
    --gold-primary: #d4af37;
    --gold-dark: #b08d20;
    --sage: #5a7a71;
    --mint-cream: #f9faf8;
    --white: #ffffff;
    --light-border: #e5e5e5;
}

/* Typography System */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--mint-cream);
    color: var(--forest-primary);
    line-height: 1.6;
    margin: 0;
}

/* Logo Component */
.esco-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.esco-logo-dots {
    width: 40px;
    height: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 2px;
}

.esco-logo-dot {
    background: var(--forest-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.esco-logo-dot.gold {
    background: var(--gold-primary);
}

.esco-logo:hover .esco-logo-dot {
    transform: scale(0.8);
}

.esco-logo:hover .esco-logo-dot.gold {
    transform: scale(1.3);
}

.esco-logo-text {
    font-family: 'SF Mono', 'Monaco', monospace;
    font-size: 28px;
    font-weight: 600;
    color: var(--forest-primary);
}

.esco-logo-reversed .esco-logo-dot {
    background: var(--white);
}

.esco-logo-reversed .esco-logo-text {
    color: var(--white);
}

/* Header Styles */
.esco-header {
    background: linear-gradient(135deg, var(--forest-primary) 0%, var(--forest-light) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.esco-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.esco-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.esco-header-minimal {
    background: var(--white);
    color: var(--forest-primary);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-border);
}

.esco-header-minimal h1 {
    font-size: 2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.esco-header-minimal p {
    font-size: 1rem;
    color: var(--sage);
}

/* Container System */
.esco-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.esco-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Card Components */
.esco-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(13, 59, 46, 0.08);
    border: 1px solid var(--light-border);
}

.esco-card-compact {
    padding: 24px;
    margin-bottom: 20px;
}

.esco-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.esco-card-title {
    font-size: 1.5rem;
    color: var(--forest-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Button System */
.esco-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
}

.esco-btn-primary {
    background: var(--forest-primary);
    color: var(--white);
}

.esco-btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 59, 46, 0.2);
}

.esco-btn-accent {
    background: var(--gold-primary);
    color: var(--forest-primary);
}

.esco-btn-accent:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.esco-btn-outline {
    background: var(--white);
    color: var(--forest-primary);
    border: 2px solid var(--forest-primary);
}

.esco-btn-outline:hover {
    background: var(--forest-primary);
    color: var(--white);
}

.esco-btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Form Components */
.esco-form-group {
    margin-bottom: 24px;
}

.esco-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-primary);
    margin-bottom: 8px;
}

.esco-input,
.esco-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.esco-input:focus,
.esco-textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.esco-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Message System */
.esco-message {
    padding: 16px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

.esco-message-success {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    border: 1px solid var(--gold-primary);
}

.esco-message-error {
    background: rgba(13, 59, 46, 0.1);
    color: var(--forest-primary);
    border: 1px solid var(--forest-light);
}

/* Badge Component */
.esco-badge {
    background: var(--gold-primary);
    color: var(--forest-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Metric Display */
.esco-metric {
    font-family: 'SF Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-primary);
    margin: 10px 0;
}

.esco-metric-label {
    font-size: 0.85rem;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }

.text-forest { color: var(--forest-primary); }
.text-sage { color: var(--sage); }
.text-gold { color: var(--gold-primary); }
.text-white { color: var(--white); }

/* Responsive Design */
@media (max-width: 768px) {
    .esco-header h1 {
        font-size: 2rem;
    }
    
    .esco-header p {
        font-size: 1rem;
    }
    
    .esco-card {
        padding: 24px;
        margin: 0 10px 20px;
    }
    
    .esco-container,
    .esco-container-narrow {
        padding: 20px;
    }
    
    .esco-btn-large {
        width: 100%;
    }
}

/* Pattern Backgrounds (optional decorative elements) */
.esco-pattern-dots {
    background-image: radial-gradient(circle, var(--gold-primary) 2px, transparent 2px);
    background-size: 20px 20px;
    background-color: var(--mint-cream);
}

.esco-pattern-grid {
    background-image: 
        linear-gradient(var(--sage) 1px, transparent 1px),
        linear-gradient(90deg, var(--sage) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: var(--mint-cream);
    opacity: 0.1;
}
