/* Root variables for our new theme, inspired by Lavanya The Label */
:root {
    --brand-primary: #D4A29C; /* A soft, elegant pink/rose */
    --brand-primary-dark: #b88b85;
    --brand-text: #3a3a3a; /* A dark gray for text */
    --brand-background: #F9F8F6; /* A very light beige/off-white background */
    --brand-light-gray: #EAEAEA;
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--brand-background);
    color: var(--brand-text);
}

.font-playfair {
    font-family: var(--font-heading);
}

/* Custom button style to match the new theme */
.btn-primary {
    background-color: var(--brand-primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--brand-primary-dark);
}

/* Custom text color */
.text-brand {
    color: var(--brand-text);
}
