/*
Theme Name: Yoga School Theme
Theme URI: http://yogaschool.test/
Author: Antigravity
Author URI: https://google.com/
Description: A serene, premium, and responsive static/dynamic theme for Yoga School, using Tailwind CSS and local high-resolution assets.
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: yogatheme
*/

/* Custom Theme Styles */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.hero-gradient {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 1));
}

.card-soft-shadow {
    box-shadow: 0 10px 40px -10px rgba(20, 66, 45, 0.08);
}

.transition-slow {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Masonry Gallery Styles */
.masonry-grid {
    column-count: 1;
    column-gap: 24px;
}

@media (min-width: 640px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    display: inline-block;
    width: 100%;
}

.yoga-overlay {
    background: linear-gradient(to top, rgba(20, 66, 45, 0.9) 0%, rgba(20, 66, 45, 0.4) 60%, transparent 100%);
}