/* Reset and base styles */
:root {
    --color-primary: #2d6a4f;
    --color-primary-hover: #1b4332;
    --color-bg-light: #Fdfcfb;
    --color-text: #2c3e50;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text);
    font-family: var(--font-sans);
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-serif);
}

/* Custom Utilities */
.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(45, 106, 79, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(45, 106, 79, 0.3);
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}
