/* Paint n Dec - Main Stylesheet */
:root {
    --color-sage: #7a9e8f;
    --color-sage-light: #b8d4c5;
    --color-charcoal: #1a1a2e;
    --color-charcoal-light: #2d2d44;
}
body { font-family: 'Lato', sans-serif; color: #4b5563; }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: var(--color-charcoal); }
a { transition: color 0.3s ease; }
img { max-width: 100%; height: auto; }
.btn-primary {
    background: var(--color-sage); color: white; font-weight: 600;
    padding: 12px 28px; border-radius: 6px; text-decoration: none;
    display: inline-block; transition: all 0.3s ease;
    border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--color-sage-light); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(122,158,143,0.4); }
.btn-outline {
    border: 2px solid var(--color-sage); color: var(--color-sage);
    padding: 12px 28px; border-radius: 6px; text-decoration: none;
    display: inline-block; font-weight: 600; cursor: pointer;
}
.btn-outline:hover { background: var(--color-sage); color: white; }
.section-padding { padding: 4rem 1rem; }
.container-custom { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.service-card {
    background: white; border-radius: 12px; padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
}
.service-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,0.12); transform: translateY(-4px); }
.nav-link { color: #4b5563; text-decoration: none; font-weight: 500; }
.nav-link:hover { color: var(--color-sage); }
.form-input {
    width: 100%; padding: 12px 16px; border: 1px solid #d1d5db;
    border-radius: 6px; font-size: 1rem; transition: all 0.2s ease;
}
.form-input:focus { outline: none; border-color: var(--color-sage); ring: 2px solid var(--color-sage); }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 0.5rem; }
.testimonial-card {
    background: #f9fafb; border-radius: 12px; padding: 2rem;
    border-left: 4px solid var(--color-sage); margin: 1.5rem 0;
}
.gallery-item {
    background: white; border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s ease;
}
.gallery-item:hover { box-shadow: 0 12px 24px rgba(0,0,0,0.12); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-item .caption { padding: 1rem; }
.gallery-item .caption p:first-child { font-size: 0.75rem; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 0.25rem; }
.gallery-item .caption h4 { margin: 0 0 0.125rem; font-size: 1.125rem; }
.gallery-item .caption p { margin: 0; color: #9ca3af; font-size: 0.875rem; }
.filter-btn {
    padding: 8px 20px; border-radius: 9999px; border: 1px solid #d1d5db;
    background: transparent; cursor: pointer; transition: all 0.2s ease;
    font-size: 0.875rem;
}
.filter-btn.active { background: var(--color-sage-light); color: var(--color-sage); border-color: var(--color-sage); font-weight: 600; }
.filter-btn:hover:not(.active) { border-color: var(--color-sage); color: var(--color-sage); }
.mobile-menu { display: none; }
/* Mobile */
@media (max-width: 768px) {
    .container-custom { padding: 0 1rem; }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
}
