/* Custom Styles for Davis Electric Service */

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

/* Typography Overrides */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #9f1239; /* Burgundy */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7f1d1d;
}

/* Mobile Menu Transition */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(159, 18, 57, 0.1);
}

/* Subtle Pattern for Hero */
.hero-pattern {
    background-image: radial-gradient(#9f1239 0.5px, transparent 0.5px), radial-gradient(#9f1239 0.5px, #fff1f2 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
}
