/* Grayscale hidden blocks in editor */
.block-editor-block-list__block.hide-editor {
	filter: grayscale(1);
	opacity: 0.5;
	transition: all 0.3s ease;
	position: relative;
}

/* Overlay text showing “Hidden Block – Line X” */
.block-editor-block-list__block.hide-editor::after {
	content: "Visibility Setting Active";
	position: absolute;
	top: 5px;
	left: 5px;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 3px;
	pointer-events: none;
}


/*buttons responsive alignment*/
@media (min-width: 601px) and (max-width: 900px) {
	.wp-block-buttons.align-tablet-left { justify-content: flex-start !important; }
	.wp-block-buttons.align-tablet-center { justify-content: center !important; }
	.wp-block-buttons.align-tablet-right { justify-content: flex-end !important; }
	.wp-block-buttons.align-tablet-space-between { justify-content: space-between !important; }
}


@media (max-width: 600px) {
	.wp-block-buttons.align-mobile-left { justify-content: flex-start !important; }
	.wp-block-buttons.align-mobile-center { justify-content: center !important; }
	.wp-block-buttons.align-mobile-right { justify-content: flex-end !important; }
	.wp-block-buttons.align-mobile-space-between { justify-content: space-between !important; }
}


/*paragraph and heading responsive alignment*/
@media (min-width: 601px) and (max-width: 900px) {
	.align-tablet-left { text-align: left !important; }
	.align-tablet-center { text-align: center !important; }
	.align-tablet-right { text-align: right !important; }
}


@media (max-width: 600px) {
	.align-mobile-left { text-align: left !important; }
	.align-mobile-center { text-align: center !important; }
	.align-mobile-right { text-align: right !important; }
}

/*SECONDARY BUTTON*/
.secondary-button.button, 
.secondary-button .wp-block-button__link, 
.secondary-button .button-outline, 
.secondary-button .is-style-outline .wp-block-button__link {
	background-color: var(--wp--custom--secondary--main);
	border-color: var(--wp--custom--secondary--main);
	color: white;
}

.secondary-button.button:hover, 
.secondary-button .wp-block-button__link:hover, 
.secondary-button .button-outline:hover,
.secondary-button .is-style-outline .wp-block-button__link:hover {
	color: white;
	border-color: var(--wp--custom--secondary--dark);
	background-color: var(--wp--custom--secondary--dark);
}

/*TERTIARY BUTTON
.tertiary-button.button, 
.tertiary-button .wp-block-button__link, 
.tertiary-button .button-outline, 
.tertiary-button .is-style-outline .wp-block-button__link {
	background-color: var(--wp--custom--tertiary--main);
	border-color: var(--wp--custom--tertiary--main);
	color: white;
}

.tertiary-button.button:hover, 
.tertiary-button .wp-block-button__link:hover, 
.tertiary-button .button-outline:hover,
.tertiary-button .is-style-outline .wp-block-button__link:hover {
	color: white;
	border-color: var(--wp--custom--tertiary--light);
	background-color: var(--wp--custom--tertiary--light);
}*/

/*WHITE BUTTON*/
.white-button.button, 
.white-button .wp-block-button__link, 
.white-button .button-outline, 
.white-button .is-style-outline .wp-block-button__link {
	border-color: white;
	background-color: white;
	color: var(--wp--custom--dark--1);
}

.white-button.button:hover, 
.white-button .wp-block-button__link:hover, 
.white-button .button-outline:hover,
.white-button .is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--custom--secondary--main);
	background-color: var(--wp--custom--secondary--main);
	color: white;
}

/*OUTLINE BUTTON SECONDARY*/
.secondary-button.button-outline, 
.secondary-button.is-style-outline .wp-block-button__link {
	color: var(--wp--custom--secondary--main);
	border-color: var(--wp--custom--secondary--main);
}

.secondary-button.button-outline:hover,
.secondary-button.is-style-outline .wp-block-button__link:hover {
	background-color:var(--wp--custom--secondary--main);
}

/*OUTLINE BUTTON TERTIARY
.tertiary-button.button-outline, 
.tertiary-button.is-style-outline .wp-block-button__link {
	color: var(--wp--custom--tertiary--main);
	border-color: var(--wp--custom--tertiary--main);
}

.tertiary-button.button-outline:hover,
.tertiary-button.is-style-outline .wp-block-button__link:hover {
	background-color: var(--wp--custom--tertiary--main);
}*/

/*OUTLINE BUTTON WHITE*/
.white-button.button-outline, 
.white-button.is-style-outline .wp-block-button__link {
	border-color:white;
	color: white;
}

.white-button.button-outline:hover,
.white-button.is-style-outline .wp-block-button__link:hover {
	color: var(--wp--custom--primary--main);
	background-color: white;
}

/*BUTTON SIZES*/
.button--sm .wp-block-button__link{
	padding: .25em .5em;
}

.button--md .wp-block-button__link{
	padding: .5em .75em;
}

.button--lg .wp-block-button__link{
	padding: 1em 2.5em;
    font-size: 1.2em;	
}

/*COLUMNS RESPONSIVE ORDER*/
@media (min-width:601px) and (max-width:900px) {
	.wp-block-columns.tablet-reverse-order{flex-direction: column-reverse;}
}

@media screen and (max-width: 600px) {
	.wp-block-columns.mobile-reverse-order{flex-direction: column-reverse;}
}

body:not(.block-editor-page) [class*="animate-on-scroll"]:not(.animate__animated){opacity: 0!important;}
