/*
Theme Name:   Storefront Child (NIPSCO)
Theme URI:    https://nipsco.mirmillo.com
Description:  Child theme of Storefront holding all NIPSCO customizations. Edit this theme — never the parent — so Storefront updates don't overwrite your changes.
Author:       Mirmillo
Author URI:   https://mirmillo.com
Template:     storefront
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:  storefront-child
*/

/* Add custom styles below. */

/* "a Mirmillo project" footer badge — shared pattern across Mirmillo sites. */
.mirmillo-credit-bar {
	background-color: #212329;
	text-align: center;
	padding: 40px 20px 48px;
}
.mirmillo {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.8rem;
	line-height: 1;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	opacity: 0.75;
	transition: opacity 0.2s ease;
}
.mirmillo:hover {
	opacity: 1;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}
.mirmillo img {
	height: 1.5em;
	width: auto;
	display: block;
	animation: mirmillo-float 6s ease-in-out infinite;
}
@keyframes mirmillo-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-3px); }
}
@media (prefers-reduced-motion: reduce) {
	.mirmillo img { animation: none; }
}
