/*
Theme Name: Chef Privé YM
Theme URI: https://votre-site.com
Author: Votre Nom
Description: Un thème sur mesure pour prestation culinaire, style Art Déco.
Version: 1.0
*/

/* Import des polices (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500&display=swap');

/* Styles globaux */
:root {
    --color-bg: #051a15;
    --color-gold: #d4af37;
    --color-text: #e5d5bc;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
}

.font-heading {
    font-family: 'Playfair Display', serif;
}

.font-body {
    font-family: 'Montserrat', sans-serif;
}

/* Bordure Art Déco */
.art-deco-border {
    border: 1px solid var(--color-gold);
    position: relative;
}

.art-deco-border::before {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

/* Texte Doré Dégradé */
.gold-gradient-text {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}