﻿/* ======== Font Imports ======== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Great+Vibes&family=Cormorant+Garamond:wght@400;500;700&display=swap');

/* ======== Font Variables (Optional, cleaner CSS) ======== */
:root {
 

 
    --font-title: 'Libre Baskerville', serif; /* Elegant & legible for product titles */
    --font-script: 'Dancing Script', cursive; /* Modern script for names/signatures */
    --font-body: 'Crimson Text', serif; /* Clean, soft classic for paragraphs */
}

 

/* ======== Usage Examples ======== */

/* For main headings or product titles */
.title,
h1, h2, h3 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* For perfume names or calligraphy-style highlights */
.perfume-name,
.signature {
    font-family: var(--font-script);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #c8a128;
}

/* For descriptions, body text */
body,
.description,
.text {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
}
