/* Explain: Theme styles with primary, secondary, and accent colors for branding. */
:root {
    --primary-color: #2b5c47;
    --primary-hover: #1e4533;
    --secondary-color: #e4e9e7;
    --accent-color: #a66a5e; /* Culoare caldă/structurală pentru Arhitectură */
    --accent-hover: #8b564c;
    --background-color: #f8f9f9;
    --surface-color: #ffffff;
    --text-color: #1e2925;
    --text-muted: #67756f;
    --border-color: #e5e9e8;
    
    /* Culori specifice pentru elementele florale si decorative */
    --wine-color: #1b3829;
    --sage-color: #7b9489;
    --petal-pink: #edf2f0;
    --cream-color: #f4f7f6;

    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', sans-serif;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.06);
}