/*
Theme Name: Affinite Block Theme
Theme URI: https://affinite.io
Author: Affinite.io
Author URI: https://affinite.io
Description: Minimalistická FSE starter šablona s čistým designem. Postaveno na WordPress Site Editor s podporou všech moderních block funkcí.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: affinite-block-theme
Tags: full-site-editing, block-patterns, block-styles, wide-blocks, editor-style, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Remove default margin from main element */
main {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* Remove default margin from elements inside main */
main > * {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* Remove default margin from elements inside .wp-site-blocks within main */
main :where(.wp-site-blocks) > * {
	margin-block-start: 0;
	margin-block-end: 0;
}

/* Scroll to top button - fixed position */
.scroll-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-to-top.show {
	display: block;
	opacity: 1;
}

.scroll-to-top .wp-block-button__link {
	border-radius: 50%;
	width: 50px;
	height: 50px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	line-height: 1;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-to-top .wp-block-button__link:hover {
	opacity: 0.9;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 781px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {
        padding-left: 10px;
        padding-right: 10px;
    }
}