
/* Global Styles for Photography Portfolio */

/* Merriweather Typography for Titles */
h1, h2, h3, h4, h5, h6, .font-heading, .font-merriweather {
    font-family: 'Merriweather', serif !important;
}

/* Enhancing global transitions */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
