/* Custom Styles for Joe's Plumbing */
:root {
    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'Fraunces', serif;
}

body {
    font-family: var(--font-sans);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
}

/* Smooth scroll offset for fixed header */
html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 5rem;
}

/* Custom blob animation for hero */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Mobile menu transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}
