/* Label Codes - Base Styles */

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

:root {
    --primary-blue: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #f9fafb;
    --bg-lighter: #f3f4f6;
    --border-light: #e5e7eb;
    --border-lighter: #f3f4f6;
    --accent-purple: #7c3aed;
    --accent-indigo: #4f46e5;
    --accent-cyan: #06b6d4;
    --accent-teal: #14b8a6;
    --accent-green: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: white;
}

/* Material Symbols */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';
    vertical-align: middle;
}

/* Consent Banner */
.consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.consent-banner.show {
    transform: translateY(0);
}

.consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.consent-text {
    font-size: 14px;
    color: var(--text-secondary);
    flex: 1;
}

.consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.consent-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.consent-accept {
    background: var(--primary-blue);
    color: white;
}

.consent-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.consent-decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.consent-decline:hover {
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 20px;
    }
    
    .consent-buttons {
        justify-content: center;
    }
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lc-header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lc-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    transition: opacity 0.2s;
}

.lc-logo:hover {
    opacity: 0.8;
}

.lc-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lc-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.lc-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Container */
.lc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.lc-section-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    letter-spacing: -0.025em;
}

.lc-section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0 0 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: var(--text-primary);
    color: var(--text-muted);
    padding: 3rem 2rem 2rem;
}

.lc-footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.lc-footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.lc-footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.lc-footer-links a:hover {
    color: white;
}

.lc-footer-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.lc-footer-social a {
    color: var(--text-muted);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.lc-footer-social a:hover {
    color: white;
    transform: translateY(-2px);
}

.lc-footer-copy {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .lc-header-content {
        padding: 1rem;
    }
    
    .lc-container {
        padding: 0 1.25rem;
    }
    
    .lc-section-title {
        font-size: 2rem;
    }
    
    .lc-section-subtitle {
        font-size: 1rem;
    }
    
    .lc-footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .lc-cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .lc-logo {
        font-size: 1.25rem;
    }
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Utility classes */
.lc-text-center {
    text-align: center;
}

.lc-mt-4 {
    margin-top: 2rem;
}

.lc-mb-4 {
    margin-bottom: 2rem;
}

