/*
Theme Name: Southwest Steemer Corp
Theme URI: https://southweststeemer.com
Author: Southwest Steemer Corp
Author URI: https://southweststeemer.com
Description: Professional carpet, furniture, and tile cleaning services theme for Southwest Steemer Corp. A modern, responsive theme built with Tailwind CSS.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: southweststeemer
Tags: one-page, custom-logo, custom-menu, featured-images, threaded-comments

Southwest Steemer Corp - Professional Cleaning Services in Miami-Dade, FL
*/

/* Base styles - Most styling handled by Tailwind CSS */
:root {
    --brand-orange: #EC681C;
    --brand-dark: #252422;
    --brand-light: #E4E5E4;
}

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

/* Custom animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fade-in-up 0.6s ease-out;
}

/* WhatsApp button pulse animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.whatsapp-pulse::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: pulse-ring 2s ease-out infinite;
    z-index: -1;
}
