/*
Theme Name: Insurance Team
Theme URI: https://junayed.dev/insurance-team
Author: Muhammad Junayed
Author URI: https://junayed.dev
Description: Custom WordPress theme for Nazim & Saima Insurance Advisors.
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: insurance-team
*/

/* 
 * NOTE: The original plan was to compile Tailwind CSS into this file, 
 * but local npx/npm execution is failing on the environment. 
 * The theme is currently using the Tailwind CDN script in header.php 
 * along with this stylesheet for custom theme logic. 
 * Once Tailwind is configured locally, you can compile and replace this file. 
 */

:root {
    --color-primary: #1A3D2F;
    --color-primary-hover: #145032;
    --color-accent: #C8A75D;
    --color-whatsapp: #25D366;
}

body {
    color: #555555;
    line-height: 1.7;
    font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1A1A1A;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light p {
    color: #FFFFFF;
}

/* Card Hover Effects */
.service-card {
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

/* Responsive padding classes */
.section-pad {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .section-pad {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* Customizer Preview Styles */
.customize-partial-edit-shortcut {
    z-index: 99 !important;
}
