/*
Theme Name: KidsSpace
Theme URI: https://example.com/kidsspace
Author: KidsSpace Development Team
Author URI: https://example.com
Description: A modern, vibrant, Elementor-compatible WordPress theme for preschools, kindergartens, and child care centers.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kidsspace
Tags: kindergarten, preschool, kids, education, elementor, custom-post-types, responsive-layout
*/

/* Custom CSS overrides if needed */
.cpt-sortable-handle {
    cursor: move;
    color: #666;
    margin-right: 5px;
}
.notification-doc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Gallery Hover & Zoom Icon Styles */
.gallery-card-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.gallery-card-box .gallery-img {
    transition: transform 0.4s ease-in-out;
}
.gallery-card-box:hover .gallery-img {
    transform: scale(1.08);
}
.gallery-card-box:hover .gallery-overlay {
    opacity: 1 !important;
}
.gallery-zoom-btn {
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.gallery-zoom-btn:hover {
    transform: scale(1.18);
}

