/**
 * Brandpack: Bella Press on Nails
 * Luxurious blush pink and rose gold aesthetic
 * 
 * This file ONLY defines brand colors.
 * All enhancement styles come from Campaign Engine plugin.
 */

:root {
    /* ===== BRAND COLORS (Required) ===== */
    --brand-primary: #E8A4B8;      /* Blush Pink */
    --brand-secondary: #8B1E3F;    /* Wine/Burgundy */
    --brand-accent: #D4A574;       /* Rose Gold */
    --brand-surface: #FFF0EC;      /* Light Pink Tint */
    --brand-bg: #FFFAF8;           /* Off-White Warm */
    --brand-text: #2D2327;         /* Dark Brown */
    --brand-muted: #8A7B7F;        /* Muted Mauve */
    
    /* ===== DERIVED COLORS (Auto-calculated) ===== */
    --brand-primary-rgb: 232, 164, 184;
    --brand-glow: rgba(232, 164, 184, 0.4);
    --brand-focus: rgba(232, 164, 184, 0.3);
    
    /* ===== TYPOGRAPHY (Optional Override) ===== */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* ===== BRAND-SPECIFIC OVERRIDES ===== */
/* Only add rules here that are UNIQUE to this brand */

/* Bella uses dark text on primary buttons (pink bg needs dark text) */
.wp-block-button__link,
.ce-btn-gradient {
    color: var(--brand-secondary) !important;
}

/* Rose gold accent on feature icons */
.feature-card .wp-block-paragraph:first-of-type {
    color: var(--brand-accent);
}

/* Elegant slower animations for luxury feel */
.ce-reveal,
.ce-card-hover {
    transition-duration: 0.5s;
}
