/* =========================================
   CUDA STUDIO — CUSTOM SIMPLYBOOK STYLES
========================================= */
.ada-compliance__wrapper {
display: none !important
}

/* =========================================
   VARIABLES
========================================= */

:root {
    --bg-light: #fffbf0;
    --accent: #ff9372;
    --accent-light: #8cd3f7;
    --header: #38b6ff;
    --text-dark: #16274b;
    --radius: 15px;
    --btn-radius: 8px;
}


/* =========================================
   HEADER
========================================= */

#header.header {
    background: var(--header) !important;
}

#header .header__navigation-link {
    color: var(--bg-light) !important;
}


/* =========================================
   HERO SECTION (Desktop)
========================================= */
#main-buttons {
    position: relative;
    overflow: hidden;
    width: 100%;
    
    /* Maintains aspect ratio based on width */
    height: 42vw; 
    
    /* Desktop: Fill width, keep ratio */
    background-repeat: no-repeat !important;
    background-size: 100% auto !important; 
    background-position: center center !important;
}


/* Hide logo text */
.company-logo-and-name {
    color: transparent !important;
    text-shadow: none !important;
}




/* =========================================
   HERO CONTENT POSITIONING
========================================= */

#main-buttons .container-fluid {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

#main-buttons .wrapper {
    text-align: center;
}


/* =========================================
   BUTTONS
========================================= */

#main-buttons .btn.book,
.btn.select,
.btn.btn-success,
.btn.btn-primary,
.btn.btn-has-icon,
.scroll-top-button {
    background: var(--accent) !important;
    color: var(--bg-light) !important;
    border-radius: var(--btn-radius);
}

.btn.btn--action {
    color: black !important;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    background: white !important;
    color: black !important;
    border-radius: var(--radius) !important;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1 {
    color: var(--bg-light) !important;
}

h2 {
    color: black !important;
}


/* =========================================
   CATEGORY / SERVICE CARDS
========================================= */

.item__tab {
    background: white !important;
    border-radius: var(--radius);
    overflow: hidden;
}

.category-item .item__picture {
    background: white !important;
}

.category-item .title {
    color: var(--text-dark) !important;
}

.category-item .item__read-more {
    color: var(--accent-light) !important;
}


/* =========================================
   TIME SLOT STATES
========================================= */

.sb_time_flexible_hour_container .cell:hover,
.sb_time_flexible_hour_container .cell.hovered,
.sb_time_flexible_hour_container .cell.selected {
    background: var(--accent) !important;
    color: white !important;
}

/* =========================================
   FULL OVERLAY LAYER
========================================= */

#main-buttons .container-fluid {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    /* desktop position */
    padding-bottom: 5%;
}


/* =========================================
   CONTENT
========================================= */

#main-buttons .wrapper {

    /* IMPORTANT:
       prevents wrapper from stretching vertically */
    width: auto;
    height: auto;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}


/* remove default spacing from hidden title */
#main-buttons .company-logo-and-name {
    display: none !important;
}

@media (max-width: 1024px) {
    .header__menu-container {
background: var(--header) !important;
}
/* =========================================
   MOBILE CROP (Media Query)
========================================= */
@media (max-width: 425px) {
    #main-buttons {
        
        height: 450px; 

        background-size: cover !important;

        
        background-position: 94% center !important; 
    }

    #main-buttons .container-fluid {
        padding-bottom: 20px; 
    }
}

