/* Custom styles for Wayfinder Tech */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide logo image if it fails to load, show text instead */
.logo-fallback {
    display: none;
}

img.logo:not([src]), img.logo[src=""] {
    display: none;
}

img.logo:not([src]) + .logo-fallback,
img.logo[src=""] + .logo-fallback {
    display: inline;
}

/* Dropdown menu animation */
.group:hover .group-hover\:visible {
    visibility: visible;
    opacity: 1;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #0d9488;
    outline-offset: 2px;
}

/* Form input styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Testimonial card hover effect */
.testimonial-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
