/*
Theme Name: Hanuska
Theme URI: https://hanuska.hr
Author: Hanuska
Author URI: https://hanuska.hr
Description: Handmade crochet accessories webshop — clean minimal with warm accents. Built with WooCommerce and WordPress Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hanuska
Tags: woocommerce, e-commerce, responsive, tailwind, minimal
*/

/* Base resets — Tailwind handles most styling via CDN */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: #2c1810;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

/* Focus visible outline for accessibility */
:focus-visible {
    outline: 2px solid #6ea9e4;
    outline-offset: 2px;
}

/* Scroll animation base */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
