/*
 Theme Name: Mosaic Blocksy Child
 Theme URI: https://mosaicphotobooths.ca
 Author: Mosaic Photobooths
 Description: Child theme for Blocksy. Provides a dark aesthetic with gold accents matching the Mosaic Photobooths brand. The lighter gold used on primary call‑to‑action buttons helps draw visitor attention.
 Template: blocksy
 Version: 1.2.0
*/

:root {
    /* Colour palette */
    --mp-gold: #C7A34B;        /* deep gold */
    --mp-gold-light: #DDBC63;  /* lighter gold used for Book Now buttons */
    --mp-charcoal: #111111;
    --mp-background: #0B0B0B;
    --mp-text: #ECECEC;
}

/* Base colours */
body {
    background: var(--mp-background);
    color: var(--mp-text);
}

/* Rounded corners on buttons */
.wp-block-button__link {
    border-radius: 12px;
}

/* Highlight primary call‑to‑action buttons with the lighter gold */
.wp-block-button__link.book-now,
a.book-now,
.ct-button.book-now {
    background: var(--mp-gold-light) !important;
    color: var(--mp-charcoal) !important;
    border-color: #C9A84F !important;
}