/*
 * Alexandra Farms — Collection Web Fonts
 * Upload the woff2 files to /wp-content/themes/YOUR-THEME/fonts/
 * and enqueue this CSS via functions.php
 */

/* ── DELUXE GARDEN ROSES ─────────────────────────────────────── */
@font-face {
    font-family: 'Palatino';
    src: url('../fonts/palatino-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Palatino';
    src: url('../fonts/palatino-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Palatino';
    src: url('../fonts/palatino-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Palatino';
    src: url('../fonts/palatino-bold-italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* ── DAVID AUSTIN WEDDING ROSES ──────────────────────────────── */
@font-face {
    font-family: 'White Garden';
    src: url('../fonts/white-garden-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* EB Garamond loaded via Google Fonts in functions.php */

/* ── PRINCESS GARDEN ROSES ───────────────────────────────────── */
@font-face {
    font-family: 'Brandon Grotesque';
    src: url('../fonts/brandon-grotesque-regular.woff2?v=20260623') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Brandon Grotesque';
    src: url('../fonts/brandon-grotesque-bold.woff2?v=20260623') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
/* Simonetta loaded via Google Fonts in functions.php */

/* ── WABARA GARDEN ROSES ─────────────────────────────────────── */
@font-face {
    font-family: 'Galano Grotesque';
    src: url('../fonts/galano-grotesque-bold.woff2?v=20260623b') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/proxima-nova-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ── COLLECTION CSS VARIABLES ────────────────────────────────── */
:root {
    /* Deluxe */
    --af-deluxe-color:       #0D3727;
    --af-deluxe-accent:      #0D3727;
    --af-deluxe-gold:        #0D3727;
    --af-deluxe-font-title:  'Palatino', 'Palatino Linotype', serif;
    --af-deluxe-font-script: 'Palatino', 'Palatino Linotype', 'EB Garamond', Georgia, serif;

    /* David Austin */
    --af-da-color:           #051C2C;
    --af-da-lilac:           #BAA0A5;
    --af-da-sage:            #C1CDC4;
    --af-da-font-title:      'EB Garamond', Georgia, serif;
    --af-da-font-display:    'White Garden', cursive;

    /* Princess */
    --af-princess-color:     #A20067;
    --af-princess-black:     #2C2A29;
    --af-princess-pink:      #DFC2C3;
    --af-princess-font-title:'Simonetta', serif;
    --af-princess-font-sub:  'Brandon Grotesque', sans-serif;

    /* Wabara */
    --af-wabara-color:       #1F150A;
    --af-wabara-font-title:  'Galano Grotesque', sans-serif;
    --af-wabara-font-body:   'Proxima Nova', sans-serif;
}
