/* Premium Paint Theme Styles */
:root {
    --primary-blue: #1e40af;
    --secondary-gray: #64748b;
    --accent-orange: #ea580c;
    --gradient-start: #1e3a8a;
    --gradient-end: #475569;
}

* {
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    font-feature-settings: 'liga' 1, 'kern' 1;
}

/* Typography Enhancements */
.hero-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Button Enhancements */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), #f97316);
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #dc2626, var(--accent-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}

/* Service Card Hover Effects */
.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Navigation Enhancements */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.current-page::after {
    width: 100%;
}

/* Form Styling */
.form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease;
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner Styling */
.privacy-consent-overlay {
    backdrop-filter: blur(10px);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-spacing {
        padding: 3rem 0;
    }
    
    .privacy-consent-overlay {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

/* Accessibility Improvements */
.focus-visible {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Loading Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .privacy-consent-overlay,
    .mobile-menu-button,
    .btn-primary {
        display: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid;
    }
    
    .nav-link {
        text-decoration: underline;
    }
}