/* Lakelife Integrative Health — Custom Styles */
/* All primary styles are in index.html; this file provides supplementary overrides and utility classes */

/* Smooth focus outlines for accessibility */
*:focus-visible {
    outline: 2px solid #ae3331;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: #fce7e7;
    color: #441110;
}

/* Print styles */
@media print {
    nav, .mobile-menu, .mobile-overlay, #hamburger {
        display: none !important;
    }
    
    .hero-bg {
        background: #7a2623 !important;
        min-height: auto !important;
        padding: 2rem !important;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card {
        border-width: 2px;
    }
    
    .btn-primary, .btn-burgundy {
        border: 2px solid currentColor;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-circle-1 {
        width: 300px;
        height: 300px;
    }
    
    .hero-circle-2 {
        width: 200px;
        height: 200px;
    }
}

/* Small mobile adjustments */
@media (max-width: 374px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.625rem;
    }
}
