<?php
/**
 * Register Step Layout Block Pattern
 */

function bw_register_step_layout_pattern() {
    register_block_pattern(
        'kadence-child/step-layout',
        array(
            'title'       => __('Step Layout', 'kadence-child'),
            'description' => __('A three-column stepped layout with hover effects', 'kadence-child'),
            'categories'  => array('featured', 'columns'),
            'content'     => '<!-- wp:group {"className":"bw-step-layout bw-step-layout--low-to-high","layout":{"type":"constrained"}} -->
<div class="wp-block-group bw-step-layout bw-step-layout--low-to-high">
    <!-- wp:columns {"className":"bw-step-layout__inner"} -->
    <div class="wp-block-columns bw-step-layout__inner">
        <!-- wp:column {"className":"bw-step-layout__card bw-step-layout__card--1"} -->
        <div class="wp-block-column bw-step-layout__card bw-step-layout__card--1">
            <!-- wp:cover {"dimRatio":70,"minHeight":400,"className":"bw-step-layout__cover"} -->
            <div class="wp-block-cover bw-step-layout__cover" style="min-height:400px">
                <span aria-hidden="true" class="wp-block-cover__background has-background-dim-70 has-background-dim"></span>
                <div class="wp-block-cover__inner-container">
                    <!-- wp:heading {"level":3} -->
                    <h3>Dining</h3>
                    <!-- /wp:heading -->
                    <!-- wp:paragraph -->
                    <p>Hartling Group Resorts showcase the very best in Turks and Caicos restaurant experiences.</p>
                    <!-- /wp:paragraph -->
                    <!-- wp:buttons -->
                    <div class="wp-block-buttons">
                        <!-- wp:button {"className":"is-style-outline"} -->
                        <div class="wp-block-button is-style-outline">
                            <a class="wp-block-button__link">DISCOVER MORE</a>
                        </div>
                        <!-- /wp:button -->
                    </div>
                    <!-- /wp:buttons -->
                </div>
            </div>
            <!-- /wp:cover -->
        </div>
        <!-- /wp:column -->

        <!-- wp:column {"className":"bw-step-layout__card bw-step-layout__card--2"} -->
        <div class="wp-block-column bw-step-layout__card bw-step-layout__card--2">
            <!-- wp:cover {"dimRatio":70,"minHeight":400,"className":"bw-step-layout__cover"} -->
            <div class="wp-block-cover bw-step-layout__cover" style="min-height:400px">
                <span aria-hidden="true" class="wp-block-cover__background has-background-dim-70 has-background-dim"></span>
                <div class="wp-block-cover__inner-container">
                    <!-- wp:heading {"level":3} -->
                    <h3>Retail & Spa</h3>
                    <!-- /wp:heading -->
                    <!-- wp:paragraph -->
                    <p>Each of the Hartling Group resorts comes complete with exceptional, on-site shopping opportunities for guests, island visitors and residents.</p>
                    <!-- /wp:paragraph -->
                    <!-- wp:buttons -->
                    <div class="wp-block-buttons">
                        <!-- wp:button {"className":"is-style-outline"} -->
                        <div class="wp-block-button is-style-outline">
                            <a class="wp-block-button__link">EXPLORE</a>
                        </div>
                        <!-- /wp:button -->
                    </div>
                    <!-- /wp:buttons -->
                </div>
            </div>
            <!-- /wp:cover -->
        </div>
        <!-- /wp:column -->

        <!-- wp:column {"className":"bw-step-layout__card bw-step-layout__card--3"} -->
        <div class="wp-block-column bw-step-layout__card bw-step-layout__card--3">
            <!-- wp:cover {"dimRatio":70,"minHeight":400,"className":"bw-step-layout__cover"} -->
            <div class="wp-block-cover bw-step-layout__cover" style="min-height:400px">
                <span aria-hidden="true" class="wp-block-cover__background has-background-dim-70 has-background-dim"></span>
                <div class="wp-block-cover__inner-container">
                    <!-- wp:heading {"level":3} -->
                    <h3>PRIVE Fine Ocean Charters</h3>
                    <!-- /wp:heading -->
                    <!-- wp:paragraph -->
                    <p>Offering a variety of exclusive services like offshore fishing, romantic beach getaways and diving.</p>
                    <!-- /wp:paragraph -->
                    <!-- wp:buttons -->
                    <div class="wp-block-buttons">
                        <!-- wp:button {"className":"is-style-outline"} -->
                        <div class="wp-block-button is-style-outline">
                            <a class="wp-block-button__link">LEARN MORE</a>
                        </div>
                        <!-- /wp:button -->
                    </div>
                    <!-- /wp:buttons -->
                </div>
            </div>
            <!-- /wp:cover -->
        </div>
        <!-- /wp:column -->
    </div>
    <!-- /wp:columns -->
</div>
<!-- /wp:group -->',
        )
    );
}
add_action('init', 'bw_register_step_layout_pattern');