@import url('https://fonts.googleapis.com/css2?family=Bona+Nova:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --color-primary: #6F1D1B; /* Keep deep burgundy */
    --color-secondary: #D4A373; /* Lighter golden brown for warmth */
    --color-accent: #A66F3C; /* Softer amber for accents */
    --color-highlight: #432818; /* Dark chocolate remains */
    --bg-primary: #FFF8E1; /* Warmer, lighter cream */
    --bg-secondary: #F5E8C7; /* Light parchment for properties section */
    --bg-card: #FFFBF0; /* Very light cream for cards */
    --text-primary: #2E1A12; /* Slightly darker chocolate for readability */
    --text-secondary: #6F1D1B; /* Burgundy remains */
    --text-muted: #A66F3C; /* Softer amber for muted text */
    --border-color: #D4A373; /* Lighter golden borders */
    --shadow: rgba(67, 40, 24, 0.2); /* Slightly stronger shadow */
    --gradient-primary: linear-gradient(135deg, #6F1D1B, #D4A373);
    --gradient-accent: linear-gradient(135deg, #D4A373, #A66F3C);
    --gradient-hero: linear-gradient(135deg, rgba(111, 29, 27, 0.7), rgba(212, 163, 115, 0.4));
    --hover-color: rgba(212, 163, 115, 0.5);
}

[data-theme="dark"] {
    --bg-primary: #2E1A12; /* Darker chocolate for depth */
    --bg-secondary: #3B2C24; /* Keep deep burgundy */
    --bg-card: #4A2E1F; /* Warmer dark card background */
    --text-primary: #FFF8E1; /* Light cream for readability */
    --text-secondary: #D4A373; /* Golden brown for secondary text */
    --text-muted: #A66F3C; /* Softer amber */
    --border-color: #A66F3C; /* Amber borders */
    --shadow: rgba(0, 0, 0, 0.5); /* Stronger dark shadow */
    --gradient-primary: linear-gradient(135deg, #6F1D1B, #D4A373);
    --gradient-accent: linear-gradient(135deg, #D4A373, #A66F3C);
    --gradient-hero: linear-gradient(135deg, rgba(46, 26, 18, 0.85), rgba(111, 29, 27, 0.45));
    --hover-color: rgba(166, 111, 60, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, button, input, textarea, label {
    font-family: var(--serif-text) !important;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.cta-button {
    background: var(--color-secondary); /* Solid golden brown */
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--serif-text) !important;
}

.cta-button:hover {
    background: var(--color-accent); /* Softer amber on hover */
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
