/*
Theme Name: GeneratePress Child
Theme URI: 
Description: Custom child theme for Neerings Plumbing PPC Landing Pages
Author: 
Author URI: 
Template: generatepress
Version: 1.0.0
*/

/* ==========================================================================
   BRAND COLORS
   ========================================================================== */
.brand-red { color: #EE3043; }
.bg-brand-red { background-color: #EE3043; }
.brand-blue { color: #003bc9; }
.bg-brand-blue { background-color: #003bc9; }
.border-brand-blue { border-color: #003bc9; }
.border-brand-red { border-color: #EE3043; }

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
body { 
    font-family: 'Montserrat', sans-serif; 
}

html { 
    scroll-behavior: smooth; 
}

/* ==========================================================================
   FORM FOCUS STATES
   ========================================================================== */
.focus-ring-blue:focus {
    --tw-ring-color: #003bc9;
    --tw-ring-opacity: 1;
    --tw-ring-offset-width: 2px;
    box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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