/* Custom styles for editorial look and animations */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    line-height: 1.6;
}

.serif-heading {
    font-family: 'Playfair Display', serif;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8));
}

.fade-in-section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* For reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .fade-in-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Additional custom styles for specific elements if needed */
.contact-form input,
.contact-form textarea {
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #14b8a6; /* teal-500 */
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.3);
}

.service-card img {
    transition: transform 0.5s ease-in-out;
}

.service-card:hover img {
    transform: scale(1.1);
}
