/*
Theme Name: FloodSeal Astra Child
Description: Child theme for FloodSeal Solutions WooCommerce and GoHighLevel integrations
Template: astra
Version: 1.0.0
Text Domain: floodseal-child
*/

/* Import parent theme styles */
@import url("../astra/style.css");

/* FloodSeal brand colors */
:root {
    --floodseal-navy: #1B365D;
    --floodseal-orange: #FF6B35;
    --floodseal-yellow: #FFD23F;
    --floodseal-white: #FFFFFF;
}

/* Custom FloodSeal styles will go below this line */
/* ============================================== */

/* Reserve form enhancements */
.floodseal-reserve-form {
    background: var(--floodseal-navy);
    padding: 40px;
    border-radius: 12px;
    color: var(--floodseal-white);
}

/* WooCommerce checkout customizations */
.woocommerce-checkout .floodseal-branding {
    background: var(--floodseal-navy);
    color: var(--floodseal-white);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}

/* Member dashboard styling */
.woocommerce-account .floodseal-member-badge {
    background: linear-gradient(135deg, var(--floodseal-navy), var(--floodseal-orange));
    color: var(--floodseal-white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}