/*
Theme Name: Uku
Theme URI: https://getuku.com
Author: Artify OÜ
Author URI: https://getuku.com/about-us
Description: Custom block theme for Uku — Accounting Practice Management Software. Built for AI-first content management via the WordPress REST API.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://getuku.com/terms-of-use-and-privacy-policy
Text Domain: uku
Tags: full-site-editing, block-patterns, custom-colors, custom-fonts, translation-ready
*/

/* ==========================================================================
   Uku Block Theme — Minimal CSS
   Most styling is handled by theme.json design tokens.
   This file only contains what theme.json cannot express.
   ========================================================================== */

/* Checkmark lists (replicating Elementor icon-list with check icons) */
.is-style-checkmark-list {
	list-style: none;
	padding-left: 0;
}

.is-style-checkmark-list li {
	position: relative;
	padding-left: 1.75em;
	margin-bottom: 0.5em;
}

.is-style-checkmark-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--wp--preset--color--primary);
	font-weight: 700;
}

/* Star ratings (used in testimonial badges) */
.uku-stars {
	display: inline-flex;
	gap: 2px;
	color: #F4511E;
	font-size: 1.25rem;
}

/* Image boxes (icon/image + text side by side) */
.uku-image-box {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.uku-image-box img {
	flex-shrink: 0;
	border-radius: var(--wp--preset--spacing--20);
}

/* Smooth scroll for anchor links */
html {
	scroll-behavior: smooth;
}

/* Focus styles for accessibility */
:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
}

/* ==========================================================================
   Section gap elimination for full-width landing pages
   WordPress blockGap (via CSS gap on .wp-site-blocks) adds unwanted spacing
   between adjacent full-width sections. These rules remove it so sections
   can flow seamlessly (cream → dark purple → white → etc).
   ========================================================================== */
.wp-site-blocks > * + *,
.entry-content > * + * {
	margin-block-start: 0 !important;
}

.wp-site-blocks,
.entry-content {
	gap: 0 !important;
}
