/*
Theme Name: Bootstrap Vintage Elegant
Author: Your Name
Description: A vintage, elegant WordPress theme built with Bootstrap.
Version: 1.0
Layout: Responsive
*/

/* Vintage Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Yesteryear:wght@400;700&family=Lora:wght@400;500;700&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
    --vintage-bg: #fdfbf7;       /* Warm paper/cream background */
    --vintage-dark: #2c2523;     /* Muted charcoal instead of harsh black */
    --vintage-burgundy: #6b2d2d; /* Elegant accent color */
    --vintage-gold: #c5a059;     /* Subtle secondary accent */
}

body {
    background-color: var(--vintage-bg);
    color: var(--vintage-dark);
    font-family: 'Lora', serif; /* Elegant, highly readable body font */
    font-size: 1.1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-title {
    font-family: 'Yesteryear', cursive;
    letter-spacing: 0.1em;
}

/* Custom Vintage Elegant Button Overrides */
.btn-vintage {
    background-color: var(--vintage-burgundy);
    color: #fff;
    font-family: 'Playfair Display', serif;
    border: 1px solid var(--vintage-gold);
    border-radius: 0; /* Sharp edges feel more traditional */
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-vintage:hover {
    background-color: var(--vintage-dark);
    color: var(--vintage-gold);
    border-color: var(--vintage-gold);
}
