/* Custom styles that complement Tailwind */

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

/* Selection color */
::selection {
    background: #99f6e4;
    color: #134e4a;
}

/* Image lazy loading fade */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Subtle pattern for section backgrounds */
.section-pattern {
    background-image: radial-gradient(circle, #14b8a6 1px, transparent 1px);
    background-size: 24px 24px;
    background-opacity: 0.1;
}

/* Animation keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Print styles */
@media print {
    nav, .animate-bounce, #contact-form, #form-success { display: none; }
    body { background: white; }
    .gradient-hero { background: #0f766e !important; }
}
