/*
Theme Name:     Thincb2b2025-total-theme-child
Theme URI:      
Description:    Total child theme with ThinCB2B 2025 demo styling.
Author:         WordPress Development Team
Author URI:     
Template:       Total
Version:        1.0.0
*/

/*
ThinCB2B 2025 Child Theme - Custom Styles
Description: Additional CSS styles that cannot be mapped to Total theme settings
Generated: 2025-07-14T21:13:58.909Z
Source: https://purrly-thincb2b-2025.pages.dev/
*/

:root {
    /* =============================================================================
       TYPOGRAPHY VARIABLES
       ============================================================================= */

    --thincb2b-body-font-family: Inter, sans-serif;
    --thincb2b-h1-font-family: IBM Plex Serif, serif;
    --thincb2b-h2-font-family: IBM Plex Serif, serif;
    --thincb2b-h3-font-family: Inter, sans-serif;

    --thincb2b-body-font-size: 1.000rem;
    --thincb2b-h1-font-size: 3.000rem;
    --thincb2b-h2-font-size: 2.250rem;
    --thincb2b-h3-font-size: 1.500rem;

    --thincb2b-h1-font-weight: 600;
    --thincb2b-h2-font-weight: 600;
    --thincb2b-h3-font-weight: 600;

    --thincb2b-body-line-height: 1.50;
    --thincb2b-h1-line-height: 3.75;
    --thincb2b-h2-line-height: 2.81;
    --thincb2b-h3-line-height: 2.06;

    --thincb2b-h1-letter-spacing: -1.2px;
    --thincb2b-h2-letter-spacing: -0.9px;

    /* =============================================================================
       COLOR VARIABLES
       ============================================================================= */

    --thincb2b-body-font-color: #ffffff;
    --thincb2b-accent-color: rgba(111,44,255,0.9);
    --thincb2b-site-background-color: #111111;
    --thincb2b-wpex-surface-1-color: #111111;
    --thincb2b-wpex-surface-2-color: #1e1e22;
    --thincb2b-wpex-text-1-color: #ffffff;
    --thincb2b-accent-on-color: #ffffff;

    /* =============================================================================
       LAYOUT VARIABLES
       ============================================================================= */

    --thincb2b-container-max-width: 1280px;
}

/* =============================================================================
   UNMAPPABLE STYLES - CUSTOM IMPLEMENTATIONS
   ============================================================================= */

/* Responsive Styles - Complex responsive breakpoint styles */
/* Implement via custom CSS in child theme */

/* Mobile styles */
@media (max-width: 767px) {
    /* Add responsive adjustments here based on extracted data */
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Add responsive adjustments here based on extracted data */
}

/* Desktop styles */
@media (min-width: 1024px) {
    /* Add responsive adjustments here based on extracted data */
}

/* =============================================================================
   CUSTOM COMPONENT STYLES
   ============================================================================= */

/* Custom container spacing to match demo site */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section padding adjustments */
.site-content section {
    padding: 80px 0;
}

/* Custom button styles if not fully mappable via theme settings */
body .theme-button.minimal-border.purple,
body .vcex-button.theme-button.inline,
.wpex-button,
.button,
.btn {
    /* Additional button customizations if needed */
    background-color: var(--thincb2b-accent-color);
    color: #ffffff;
    border-radius: 0;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    border: 1px solid var(--thincb2b-accent-color);
}

@media (max-width: 768px) {
    body .theme-button.minimal-border.purple,
    body .vcex-button.theme-button.inline,
    .wpex-button,
    .button,
    .btn {
        padding: 1rem 1.5rem;
    }
}

body .theme-button.minimal-border.purple:hover,
body .vcex-button.theme-button.inline:hover,
.wpex-button:hover,
.button:hover,
.btn:hover {
    background-color: #ffffff;
    color: var(--thincb2b-accent-color);

}

/* Custom form field styles */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select,
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="search"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="range"],
.gform_wrapper input[type="date"],
.gform_wrapper input[type="month"],
.gform_wrapper input[type="week"],
.gform_wrapper input[type="time"],
.gform_wrapper input[type="datetime"],
.gform_wrapper input[type="datetime-local"],
.gform_wrapper input[type="color"],
.gform_wrapper textarea,
.gform_wrapper select {
    background-color: var(--thincb2b-background-color);
    border: 1px solid var(--thincb2b-border-color);
    color: var(--thincb2b-body-font-color);
    padding: 0.75rem 1rem;
    border-radius: 0;
    font-size: 1rem;
    font-family: var(--thincb2b-body-font-family);
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus,
.gform_wrapper input[type="text"]:focus,
.gform_wrapper input[type="email"]:focus,
.gform_wrapper input[type="url"]:focus,
.gform_wrapper input[type="password"]:focus,
.gform_wrapper input[type="search"]:focus,
.gform_wrapper input[type="number"]:focus,
.gform_wrapper input[type="tel"]:focus,
.gform_wrapper input[type="range"]:focus,
.gform_wrapper input[type="date"]:focus,
.gform_wrapper input[type="month"]:focus,
.gform_wrapper input[type="week"]:focus,
.gform_wrapper input[type="time"]:focus,
.gform_wrapper input[type="datetime"]:focus,
.gform_wrapper input[type="datetime-local"]:focus,
.gform_wrapper input[type="color"]:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    border-color: var(--thincb2b-accent-color);
    outline: none;
}

/* Custom form label and legend styles */
label,
.gform_wrapper label,
.gfield_label,
.gform_wrapper legend.gfield_label {
    color: var(--thincb2b-body-font-color);
    font-family: var(--thincb2b-body-font-family);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.gform_wrapper .gfield_required {
    color: var(--thincb2b-accent-color);
    font-size: 1.1rem;
}

.gform_validation_errors {
    background-color: var(--thincb2b-body-font-color) !important;
    color: var(--thincb2b-body-bg-color, #111111) !important;
    font-size: 1.25rem !important;
    padding: 1.5rem 1rem !important;
    border-radius: 0.5rem !important;
    border: none !important;
}

.gform_body .validation_message {
    background-color: var(--thincb2b-body-font-color) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
    padding: 0.75rem 1rem !important;
    border-radius: 0.4rem !important;
    display: block !important;
}


/* Navigation customizations if needed */
.main-navigation {
    /* Custom navigation styles */
}

.main-navigation-ul > .menu-item > a > .link-inner {
    color: var(--thincb2b-body-font-color);
}

.main-navigation-ul > .menu-item.current-menu-item > a > .link-inner {
    color: var(--thincb2b-accent-color);
}

/* Custom dark theme adjustments */
body {
    background-color: #111111;
    color: #ffffff;
}

/* Ensure proper contrast for accessibility */
a {
    color: #6f2cff;
}

a:hover {
    color: #8b4dff;
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */

/* Add any utility classes that match the demo site */
.text-center {
    text-align: center;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.vc_section:not(:last-of-type) {
    margin-bottom: 2rem;
}

body .page-hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

body .page-hero h1 {
    font-size: 2.5rem;
}

body .page-hero p,
body .page-hero a {
    font-size: 1.25rem;
}
/* =============================================================================
   HERO SECTION BACKGROUND FILTER
   ============================================================================= */

/* Target VC rows that have background images in the hero/first section */
.vc_row.vc_row-has-fill:first-of-type {
    position: relative;
    overflow: hidden;
}

/* Create a pseudo-element for the background image with grayscale filter */
.vc_row.vc_row-has-fill:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    background-attachment: inherit;
    filter: grayscale(100%) brightness(0.7);
    z-index: 1;
    pointer-events: none;
}

/* Ensure content in the hero row stays above the filtered background */
.vc_row.vc_row-has-fill:first-of-type > .wpb_column,
.vc_row.vc_row-has-fill:first-of-type > .vc_column_container,
.vc_row.vc_row-has-fill:first-of-type > .vc_col-sm-12 {
    position: relative;
    z-index: 2;
}

/* =============================================================================
   PAGE HERO BACKGROUND OVERLAY
   ============================================================================= */

/* Add transparent overlay to page hero sections */
.page-hero {
    position: relative;
    overflow: hidden; /* Ensure background images are clipped to this section */
}


.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 0; /* Move behind all content */
    pointer-events: none;
}

/* =============================================================================
   HERO IMAGE COLUMN STYLES
   ============================================================================= */

/* Position the hero image column on the right side */
.hero-image-column {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

/* Style the image within the hero image column */
.hero-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    display: block;
}

/* Ensure the image widget container doesn't interfere */
.hero-image-column .vcex-image,
.hero-image-column .wpb_single_image {
    width: 100%;
    height: 100%;
}

.hero-image-column .vcex-image img,
.hero-image-column .wpb_single_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    margin-top: -5.5rem;
}

.page-hero.the-book .hero-image-column .vcex-image img,
.page-hero.the-book .hero-image-column .wpb_single_image img {
    width: 30%;
    margin-left: 25%;
    margin-right:auto;
    margin-top: 0;
}

@media (max-width: 1024px) {

    .page-hero .vc_row {
        margin-left: 0;
        margin-right: 0;
    }

    .page-hero .hero-image-column {
        z-index: 0; /* Behind content */
    }

    .page-hero .vc_row:not(.hero-image-column) * {
        z-index: 1;
    }

    .hero-image-column img,
    .hero-image-column .vcex-image img,
    .hero-image-column .wpb_single_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        margin-top: 33%;
        margin-left: 0;
        transform: none;
        transform-origin: center bottom;
        scale: 1.5;
        z-index: 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) { 
    .vc_section.page-hero {
        padding-left: 2rem;
    }
}

/* Mobile responsive styles for hero image column */
@media (max-width: 768px) {


    .hero-image-column {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .page-hero .vc_row:first-of-type {
        margin-top:4.5em;
    }
    
    .hero-image-column img,
    .hero-image-column .vcex-image img,
    .hero-image-column .wpb_single_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
        margin-top: 100%;
        margin-left: 0;
        transform: none;
        transform-origin: center bottom;
        scale: 2.25;
    }

    /* @TODO: center tony in the hero image column on hom */

    .page-hero.the-book .hero-image-column img,
    .page-hero.the-book .hero-image-column .vcex-image img,
    .page-hero.the-book .hero-image-column .wpb_single_image img {
        display: none;
    }
}

/* Add more utility classes as needed based on the extracted styles */

.highlights-icons {
    padding-bottom:1.5rem;
    gap: 2.5rem;
}

.highlights-icons .vcex-module:after,
.highlights-icons .vcex-module:before {
    box-sizing: border-box;
    border: 0 solid #e5e7eb;
}

.highlights-icons .vcex-module {
    box-shadow:0 0 #0000,0 0 #0000, 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    border-color: rgb(55 65 81/1);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-width: 1px;
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: 200ms;
    border-style: solid;
}

.highlights-icons .vcex-module .vcex-icon-box-icon {
    color: rgb(111,44,255);
    font-size: 1.5rem;
}

.highlights-icons .vcex-module p {
    padding: 0 0.25rem;
}

@media (max-width: 768px) {
    .highlights-icons {
        grid-template-columns: 1fr;
    }
}

/* =============================================================================
   Blog filter styles
   ============================================================================= */

.vcex-blog-filter li a {
    color: var(--thincb2b-body-font-color);
    text-decoration: none;
    background-color: var(--thincb2b-accent-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: 1px solid var(--thincb2b-accent-color) !important;
}

.vcex-blog-filter li.active a {
    background-color: var(--thincb2b-body-font-color) !important;
    color: var(--thincb2b-accent-color) !important;
}

.vcex-blog-filter li a:hover {
    background-color: var(--thincb2b-body-font-color) !important;
    color: var(--thincb2b-accent-color) !important;
}

.vcex-blog-filter li a:hover {
    background-color: var(--thincb2b-body-font-color) !important;
    color: var(--thincb2b-accent-color) !important;
}

.vcex-blog-filter li.active a:hover {
    background-color: var(--thincb2b-body-font-color) !important;
    color: var(--thincb2b-accent-color) !important;
}

.vcex-blog-filter li.active a:hover {
    background-color: var(--thincb2b-body-font-color) !important;
    color: var(--thincb2b-accent-color) !important;
}

/* =============================================================================
   FOOTER CALLOUT STYLES
   ============================================================================= */

.callout-custom.vc_row:not(#footer-callout-wrap .callout-custom.vc_row) {
    border-color: rgb(238,238,238);
    border-width: 1px 0;
    border-style: solid;
    padding-top: 2rem;
}

@media (min-width: 1024px) {
    .callout-custom .templatera-shortcode,
    #footer-callout .templatera-shortcode {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }
}

.callout-custom .vcex-heading,
.callout-custom p,
#footer-callout .vcex-heading,
#footer-callout p {
    margin-bottom: 1.5rem;
}

.callout-custom p,
#footer-callout p {
    color: var(--thincb2b-body-font-color);
}

.callout-custom a.vcex-button.theme-button {
    margin-top: 1.5rem;
}

.vc_section .vc_row:first-of-type h2,
.vc_section .vc_row:first-of-type h3,
.vc_section .vc_row:first-of-type h4,
.vc_section .vc_row:first-of-type h5,
.vc_section .vc_row:first-of-type h6 {
    padding-top: 1.5rem;
}

.vc_section.page-hero + .vc_section .vc_row:first-of-type h2,
.vc_section.page-hero + .vc_section .vc_row:first-of-type h3,
.vc_section.page-hero + .vc_section .vc_row:first-of-type h4,
.vc_section.page-hero + .vc_section .vc_row:first-of-type h5,
.vc_section.page-hero + .vc_section .vc_row:first-of-type h6 {
    padding-top: 0 !important;
}

/* =============================================================================
   Expertise Section STYLES
   ============================================================================= */

.section-expertise .vc_column-inner {
    margin-bottom: 0 !important;
}

.section-expertise h2.vcex-heading {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

/* Add a dynamic underline to main headings */
.section-expertise h2.vcex-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--thincb2b-accent-color), #8b4dff);
    border-radius: 2px;
}

/* Enhanced header hierarchy */
.section-expertise h3 {
    font-size: 1.75rem;
    color: var(--thincb2b-accent-color);
    font-weight: 700;
    position: relative;
    padding-left: 1rem;
}

.section-expertise h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--thincb2b-accent-color);
    border-radius: 2px;
}

/* Punchy blockquote styling */
blockquote {
    position: relative;
    background: rgba(111, 44, 255, 0.08);
    border: none;
    border-left: 4px solid var(--thincb2b-accent-color);
    padding: 2rem 2rem 2rem 3rem;
    border-radius: 0 0.75rem 0.75rem 0;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e5e7eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

blockquote::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--thincb2b-accent-color);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.7;
}

blockquote::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 20px solid rgba(111, 44, 255, 0.15);
    border-top: 20px solid transparent;
}

/* Content sections with better spacing */
.section-expertise .wpb_text_column {
    margin-bottom: 2rem;
}

.section-expertise p {
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

/* Enhanced list styling in expertise sections */
.section-expertise ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.section-expertise ul li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.section-expertise ul li:hover {
    background: rgba(111, 44, 255, 0.05);
    padding-left: 2.5rem;
}

.section-expertise ul li::before {
    content: '▶';
    position: absolute;
    left: 0.5rem;
    top: 0.75rem;
    color: var(--thincb2b-accent-color);
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.section-expertise ul li:hover::before {
    transform: scale(1.2);
}

/* Highlight boxes for key content */
.section-expertise .highlight-box {
    background: linear-gradient(135deg, rgba(111, 44, 255, 0.1) 0%, rgba(139, 77, 255, 0.05) 100%);
    border: 1px solid rgba(111, 44, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.section-expertise .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--thincb2b-accent-color), transparent);
}

/* Section dividers */
.section-expertise + .section-expertise {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 4rem;
    position: relative;
}

.section-expertise + .section-expertise::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--thincb2b-accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-expertise h2.vcex-heading {
        font-size: 2rem;
    }
    
    .section-expertise h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .section-expertise blockquote {
        padding: 1.5rem 1.5rem 1.5rem 2.5rem;
        margin: 2rem 0;
    }
    
    .section-expertise blockquote::before {
        font-size: 2.5rem;
        top: 0.25rem;
        left: 0.75rem;
    }
}