/* Custom Styles for Comanche Tax Shield Services */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
}

h1, h2, h3, h4, .font-display {
    font-family: 'Syne', sans-serif;
}

/* Geometric pattern overlay for specific sections if needed */
.geometric-bg {
    background-image: radial-gradient(#500015 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
}

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

::-webkit-scrollbar-track {
    background: #FFFBF5;
}

::-webkit-scrollbar-thumb {
    background: #500015;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #38000e;
}

/* Mobile menu animation */
.mobile-link {
    position: relative;
}

.mobile-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #FADADD;
    transition: width 0.3s ease;
}

.mobile-link:hover::after {
    width: 100%;
}

/* Service card hover effect */
.service-card:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.service-card svg {
    transition: transform 0.3s ease;
}
