/*
Theme Name: Blocksy Child
Theme URI: https://creativethemes.com/blocksy/
Description: Child theme for Blocksy to control compositions (patterns) and keep the front-end clean and maintainable.
Author: Local
Template: blocksy
Text Domain: blocksy-child
*/

/* --------------------------------------------------
   Fluent Booking – Calendar styling
-------------------------------------------------- */

/* Main calendar container: rounded corners and theme border color */
.fluent-booking-calendar-block .fcal_wrap .fcal_calendar_inner {
	border-radius: 15px;
	--fcal_slot_border: var(--theme-border-color);
}

/* Side panel spacing inside the calendar */
.fcal_wrap .fcal_calendar_inner .fcal_side {
	padding: 50px;
}

/* --------------------------------------------------
   Page & layout adjustments
-------------------------------------------------- */

/* Hide default page title */
.page .page-title {
	display: none;
}

/* Reduce global content spacing */
:root {
	--theme-content-spacing: 0.8rem;
}

/* Reduce bottom spacing for H2 headings */
h2 {
	margin-bottom: 0.3rem !important;
}

/* Adjust animated submenu vertical position */
[class*=animated-submenu] > .sub-menu {
	top: 95%;
}

body.stk--is-blocksy-theme .stk-block{
  width: fit-content;
}

/* --------------------------------------------------
   Disable constrained layout width (Gutenberg)
-------------------------------------------------- */

/* Remove max-width on constrained layouts */
.is-layout-constrained {
	max-width: none !important;
}

/* Force full width for all children inside constrained layouts */
.is-layout-constrained > * {
	max-width: none !important;
	width: 100% !important;
}

/* --------------------------------------------------
   Icon & SVG styling
-------------------------------------------------- */

/* Force orange color for custom icon list SVGs */
.icon-list-orange svg {
	fill: #F79A58 !important;
}

/* Normalize SVG size for Stackable icon lists */
.stk-block-icon-list 
.stk-block-icon-list__ul 
.stk-block-icon-list-item 
.stk-block-icon-list-item__content 
.stk--svg-wrapper 
.stk--inner-svg svg {
	width: 25px;
	height: 25px;
}

/* --------------------------------------------------
   Post card – category badge styling
-------------------------------------------------- */

.post-card .entry-meta .meta-categories a {
	display: inline-block;
	padding: 6px 12px;
	background-color: #FEF5EE;
	color: #AF6D3E;
	border-radius: 10px;
	border: 1px solid #FBD1B2;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
}

/* --------------------------------------------------
   Image with text overlay
-------------------------------------------------- */

/* Parent container for image overlays */
.image-overlay {
	position: relative;
	z-index: 1;
}

/* Stackable image / figure layer */
.image-overlay .stk-block-image,
.image-overlay figure {
	position: relative;
	z-index: 1;
}

/* Text overlay block */
.image-overlay p {
	position: absolute;
	left: -40px;
	top: 70%;
	transform: translateY(-50%);
	max-width: 350px;
	background: #ffffff;
	padding: 20px 24px;
	border-radius: 12px;
	border: 2px solid #F79A58;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
	z-index: 5;
}

/* Decorative quotation mark before overlay text */
.image-overlay > p::before {
	content: "“";
	position: absolute;
	top: -47px;
	left: 16px;
	font-size: 130px;
	line-height: 1;
	color: #F79A58;
	font-weight: 700;
}



