/* GDPR Compliance CSS - No External Fonts or Resources */

/* System Font Stack - GDPR Compliant */
:root {
    --font-family-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* Override all fonts to use system fonts */
* {
    font-family: var(--font-family-system) !important;
}

/* Specific overrides for code elements */
code, kbd, pre, samp, .code, .monospace {
    font-family: var(--font-family-monospace) !important;
}

/* Ensure no external resources are loaded */
*[src*="googleapis"],
*[src*="gstatic"],
*[href*="googleapis"],
*[href*="gstatic"],
*[src*="fonts.google"],
*[href*="fonts.google"] {
    display: none !important;
}

/* Alternative styles for commonly used external fonts */
.font-awesome,
.fa,
.fas,
.far,
.fal,
.fab {
    font-family: var(--font-family-system) !important;
}

.font-awesome:before,
.fa:before,
.fas:before,
.far:before,
.fal:before,
.fab:before {
    content: "★" !important; /* Fallback symbol */
}

/* GDPR Cookie Consent Banner */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 3px solid #3498db;
}

.gdpr-banner.show {
    transform: translateY(0);
}

.gdpr-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.gdpr-banner-text {
    flex: 1;
    min-width: 300px;
}

.gdpr-banner-text h4 {
    margin: 0 0 8px 0;
    color: #3498db;
    font-size: 1.1rem;
    font-weight: 600;
}

.gdpr-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9;
}

.gdpr-banner-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.gdpr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.gdpr-btn-accept {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.gdpr-btn-accept:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.gdpr-btn-essential {
    background: transparent;
    color: #bdc3c7;
    border: 2px solid #7f8c8d;
}

.gdpr-btn-essential:hover {
    background: #7f8c8d;
    color: white;
    border-color: #95a5a6;
}

.gdpr-btn-settings {
    background: transparent;
    color: #3498db;
    border: 1px solid #3498db;
    font-size: 0.8rem;
    padding: 8px 16px;
    min-width: auto;
}

.gdpr-btn-settings:hover {
    background: #3498db;
    color: white;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .gdpr-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gdpr-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .gdpr-btn {
        flex: 1;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .gdpr-banner {
        padding: 15px;
    }
    
    .gdpr-banner-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .gdpr-btn {
        width: 100%;
        margin-bottom: 8px;
    }
}

/* GDPR Compliance Notice */
.gdpr-notice {
    background: #f8f9fa;
    border-left: 4px solid #28a745;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.gdpr-notice h5 {
    color: #155724;
    margin-bottom: 10px;
}

.gdpr-notice p {
    color: #155724;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Privacy-first design indicators */
.privacy-badge {
    display: inline-flex;
    align-items: center;
    background: #e8f5e8;
    color: #155724;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 8px;
}

.privacy-badge i {
    margin-right: 4px;
}
