/* Tiger Voicing — Custom Styles */

/* Base reset and typography */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    line-height: 1.6;
}

/* Selection color */
::selection {
    background: rgba(20, 184, 166, 0.3);
    color: #f0fdf9;
}

/* Smooth focus styles */
:focus-visible {
    outline: 2px solid #14b8a6;
    outline-offset: 2px;
}

/* Custom select arrow override for broader compatibility */
select option {
    background: #102a43;
    color: #f0f4f8;
    padding: 0.5rem 1rem;
}

/* Print styles */
@media print {
    .hero-gradient,
    .float-animation,
    .float-animation-delay,
    .pulse-dot {
        animation: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
}

/* Large screens */
@media (min-width: 1920px) {
    html {
        font-size: 18px;
    }
}
