/*!
Theme Name: Kadence Child
Theme URI: https://www.kadencewp.com/kadence-theme/
Template: kadence
Author: Kadence WP
Author URI: https://www.kadencewp.com/
Description: A child theme for the Kadence Theme.
Version: 1.0.0
License: GNU General Public License v3.0 (or later)
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: kadence-child
*/

/* Theme customization starts here
-------------------------------------------------------------- */
/* ==========================================
   SUITE CARDS
========================================== */
.suite-book-ribbon{
    position:absolute !important;
    top:15px;
    right:15px;
    z-index:20;
}

.suite-book-ribbon .kb-button{
padding-top:10px !important;
	padding-bottom:10px !important;
	padding-left:5px !important;
	padding-right:5px !important;

    
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Text only */
.suite-book-ribbon .kt-btn-inner-text{
    writing-mode:vertical-rl;
    text-orientation:mixed;
    transform:rotate(180deg);
}
.suite-card{
    position:relative;
    overflow:hidden;
}

/* Bottom overlay */
.suite-content p{font-size:0.8em;}
.suite-content{
    position:absolute !important;
    left:0;
    right:0;
    bottom:0;

    padding:20px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.75) 70%,
        rgba(0,0,0,0) 100%
    );

    /* Push almost everything below the card */
    transform:translateY(calc(100% - 85px));

    transition:transform .4s ease;
}

/* Slide entire block up */
.suite-card:hover .suite-content{
    transform:translateY(60px);
}

/* Heading */
.suite-content h3{
    margin:0;
    color:#c8a45a;
}

/* ====================================
   STICKY CTA
==================================== */

.sticky-cta {
    position: fixed;
    right: 15px;
    left: auto;
    bottom: 12px;

    transform: translateY(120%);

    z-index: 99999;

    display: flex;
    gap: 4px;

    padding: 4px;

    background: linear-gradient(
        135deg,
        #0d0d0d,
        #1b1b1b
    );

    border-radius: 10px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.05);

    transition: all .3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

/* ====================================
   BUTTONS
==================================== */

.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-width: 130px;
    height: 42px;

    padding: 0 12px;

    border-radius: 7px;

    color: #fff !important;
    text-decoration: none !important;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;

    transition: all .2s ease;
}

.sticky-cta a:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* ====================================
   BUTTON COLOURS
==================================== */

.cta-call {
    background: #2c2d2f;
}

.cta-whatsapp {
    background: #1d854a;
}

/* ====================================
   ICON CIRCLES
==================================== */

.icon-circle {
    width: 24px;
    height: 24px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.cta-call .icon-circle {
    background: #ed212d;
}

.cta-whatsapp .icon-circle {
    background: rgba(255,255,255,.12);
}

.icon-circle img {
    width: 17px;
    height: 17px;
    display: block;
	position: relative;
        top: 1px;
		right:1px;
}
.whatsapp-icon {
    width: 24px;
    height: 24px;
    display: block;
}	

/* ====================================
   MOBILE
==================================== */

@media (max-width: 767px) {

    .sticky-cta {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;

        transform: translateY(100%);

        border-radius: 0;
        padding: 0;
        gap: 0;
    }

    .sticky-cta.show {
        transform: translateY(0);
    }

    .sticky-cta a {
        width: 50%;
        min-width: auto;

        height: 54px;

        border-radius: 0;

        font-size: 14px;
    }

    .icon-circle {
        width: 26px;
        height: 26px;
    }

    .icon-circle img {
        width: 17px;
        height: 17px;
		position: relative;
        top: 1px;
		right:1px;
    }
	
.whatsapp-icon {
    width: 26px;
    height: 26px;
    display: block;
}	
}
