/* Custom Styles for Skinner Heating & Air */

:root {
    --brand-terracotta: #C05640;
    --brand-sand: #F5F0E6;
}

html {
    scroll-behavior: smooth;
}

body {
    /* Prevent layout shift on mobile */
    overflow-x: hidden;
}

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

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 86, 64, 0.2);
}

/* Smooth transition for mobile menu */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #A04030;
}

/* Ensure images don't overflow rounded containers */
img {
    max-width: 100%;
    height: auto;
}
