/*
Theme Name: Bao Duong Photography
Theme URI: https://example.com/bao-duong
Author: Bao Duong Theme Developer
Description: A native WordPress photography portfolio theme converted from React. Features portfolio lightbox, dark mode, and seamless section transitions.
Version: 1.0.0
Text Domain: baoduong
Tags: portfolio, photography, dark-mode, responsive-layout, translation-ready
*/

/* Custom supplemental styles for animations lost from Motion/React */
html {
    scroll-behavior: smooth;
}

body.modal-open {
    overflow: hidden;
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hide inactive SPA sections natively */
.spa-section {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.spa-section.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-overlay {
    display: none;
}
.gallery-modal-overlay.active {
    display: flex;
}

