/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* Add your custom styles here */

/* Base Styles */
body, html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #ebe0c3;
}

::-webkit-scrollbar-thumb {
    background: #788cfe;
}

/* Text Selection */
::-moz-selection, ::selection {  
    color: #B8D5CB;
    background: #1d3b31;
}

/* Breadcrumb Arrow Separator */
.rank-math-breadcrumb .separator {
    display: inline-block;
    width: 16px;
    height: 8px;
    background-image: url('/wp-content/uploads/2025/05/arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    margin: 0 5px;
    transform: rotate(-90deg) scale(0.8);
}

/* Typography - Desktop (Default) */
h1 {
    font-size: 48px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 26px;
}

p, a, li, td {
    font-size: 18px;
}



/* Responsive Typography */
@media (max-width: 1366px) {
    h1 {
        font-size: 46px;
    }
    h2 {
        font-size: 36px;
    }
    h3 {
        font-size: 32px;
    }
    h4 {
        font-size: 28px;
    }
    h5 {
        font-size: 26px;
    }
    h6 {
        font-size: 24px;
    }
    p, a, li, td {
        font-size: 17px;
    }
    
   
}

@media (max-width: 1200px) {
    h1 {
        font-size: 44px;
    }
    h2 {
        font-size: 34px;
    }
    h3 {
        font-size: 28px;
    }
    h4 {
        font-size: 26px;
    }
    h5 {
        font-size: 24px;
    }
    h6 {
        font-size: 22px;
    }
    p, a, li, td {
        font-size: 16px;
    }
    
    
}

@media (max-width: 1024px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 32px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 24px;
    }
    h5 {
        font-size: 22px;
    }
    h6 {
        font-size: 22px;
    }
    p, a, li, td {
        font-size: 16px;
    }

}

@media (max-width: 880px) {
    h1 {
        font-size: 38px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 24px;
    }
    h4 {
        font-size: 22px;
    }
    h5 {
        font-size: 20px;
    }
    h6 {
        font-size: 18px;
    }
    p, a, li, td {
        font-size: 15px;
    }
    
    
}

@media (max-width: 767px) {
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    h6 {
        font-size: 16px;
    }
}

/* Highlighted Text Effect */
h2.highlighted-text {
    position: relative;
}

h2.highlighted-text:before {
    content: "";
    position: absolute;
    top: 50%;
    z-index: -1;
    width: 100%;
    height: 70%;
    display: block;
    background-image: linear-gradient(to top, #e1d5f5 0 0), linear-gradient(to top, transparent 0, #00000000 0);
    background-repeat: no-repeat;
    background-position: bottom 0 left 0;
    background-size: 100%;
    filter: blur(15px);
    transform: translateY(-50%);
}

/* Container Overrides */
.container, 
.container-fluid, 
.wd-content-layout {
    padding-block: 0;
    padding: 0;
    padding-inline: 0;
}

