/*
Theme Name: St. Nicholas Custom Tailwind Theme
Theme URI: https://nicholas.if.ua/
Description: Преміальна, високопродуктивна, адаптивна тема з використанням Tailwind CSS для Храму та Дому Милосердя Святого Миколая.
Author: Antigravity
Author URI: https://gemini.google.com/
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: st-nicholas-tailwind
*/

/* Custom CSS components that extend Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #faf8f5;
    color: #1a1f1c;
}

/* Custom styles for Gutenberg block wrapper on frontend */
.wp-block-group {
    margin-bottom: 2rem;
}
.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
@media (min-width: 768px) {
    .wp-block-columns {
        flex-wrap: nowrap;
    }
}
.wp-block-column {
    flex: 1;
    min-width: 0;
}
.wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (min-width: 768px) {
    .wp-block-gallery {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.wp-block-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.2s ease-in-out;
}
.wp-block-gallery img:hover {
    transform: scale(1.05);
}
.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
