/* Pager Centro - Custom Styles
   Warm, friendly, rounded design with charcoal + coral palette
*/

:root {
    --charcoal-900: #1a1a1a;
    --charcoal-800: #2d2d2d;
    --charcoal-700: #404040;
    --charcoal-600: #525252;
    --charcoal-500: #666666;
    --coral-500: #FF6B6B;
    --coral-600: #FF5252;
    --coral-100: #FFF0F0;
    --warm-50: #FAFAFA;
    --warm-100: #F5F5F5;
    --warm-200: #EEEEEE;
}

/* Base styles are handled in index.html inline styles */
/* This file contains additional utility and component styles */

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--coral-500);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection color */
::selection {
    background: var(--coral-500);
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--warm-100);
}

::-webkit-scrollbar-thumb {
    background: var(--charcoal-500);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--charcoal-700);
}

/* Print styles */
@media print {
    .nav,
    .mobile-menu,
    .hero-buttons {
        display: none !important;
    }
    
    body {
        color: #000;
        background: white;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .feature-card,
    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid currentColor;
    }
    
    .feature-card {
        border: 2px solid var(--charcoal-800);
    }
}

/* Reduced motion - ensure content is always visible */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Large screen optimizations */
@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover {
        transform: none;
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .about-img:hover img {
        transform: none;
    }
}
