/*
Theme Name: Rockcrete 2026
Author: Russell Nagel
Author URI: www.lionmarketing.com
Description: Theme Created For Rockcrete
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: 
Text Domain: Rockcrete
*/

/* Full page overlay */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff; /* background color during load */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Spinner */
#page-loader .spinner {
    border: 5px solid #f3f3f3; /* Light gray */
    border-top: 5px solid #ff6600; /* Accent color */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide overlay when loaded */
body.loaded #page-loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/*-----------------------------------*/
/*------- Global Styles Start -------*/
/*-----------------------------------*/

h1, h2{
	text-decoration: underline;
	text-decoration-color: currentcolor;
	text-decoration-thickness: auto;
	text-decoration-color: currentcolor;
	text-decoration-thickness: auto;
	text-decoration-color: currentcolor;
	text-decoration-thickness: auto;
	text-decoration-color: var(--color-orange);
	font-weight: 800;
}
h1{	text-decoration-thickness: 4px;}
h2{text-decoration-thickness: 3px;}

html {scroll-behavior: smooth;}

.orange-hr{
    color: var(--color-orange);
    opacity: 1;
    height: 4px !important;
}

.image-scale img{transition: transform 0.3s ease-in-out;}
.image-scale:hover img {transform: scale(1.1);}

:root {
    /* Brand Colors */
    --color-orange: #f26222;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-grey:  #f2f2f2;
    --color-dark-grey: #333333;

    /* Typography */
    --font-weight-bold: 700;
}

.text-orange { color: var(--color-orange); }
.text-black  { color: var(--color-black); }
.text-white  { color: var(--color-white); }
.text-bold   { font-weight: var(--font-weight-bold); }

.bg-grey   { background-color: var(--color-grey); }
.bg-dgrey  { background-color: var(--color-dark-grey); }
.bg-orange { background-color: var(--color-orange) !important; }
.bg-black  { background-color: var(--color-black); }
.bg-white  { background-color: var(--color-white); }

.mobile-hide { display: block !important; }
.mobile-show { display: none !important; }

@media (max-width: 767px) {
    .mobile-hide { display: none !important; }
    .mobile-show { display: block !important; }
}

#stadard-page a{
	color: black;
	text-decoration: underline;
	text-decoration-color: currentcolor;
	text-decoration-thickness: auto;
	text-decoration-color: var(--color-orange);
	text-decoration-thickness: 2px;
}
#stadard-page a:hover{
	color: var(--color-orange);
}
img{
    max-width: 100%;
    height: auto;
}
.btn-outline{
    padding: 2px 10px 6px;
    font-weight: var(--font-weight-bold);
    transition: all 0.2s ease-in-out;
}

.wp-block-button__link, .btn-orange-outline {
    border: 2px solid var(--color-orange);
    background: white;
    color: var(--color-orange);
}

.wp-block-button__link:hover, .btn-orange-outline:hover {
    background: var(--color-orange) !important;
    color: var(--color-white) !important;
}

.btn-white-outline {
    border: 2px solid var(--color-white);
    background: var(--color-orange);
    color: var(--color-white);
}

.btn-white-outline:hover {
    background: var(--color-white);
    color: var(--color-orange) !important;
}

.cover-image{
    background-position: center;
    background-size: 100%;
    transition: all 0.2s ease-in-out;
}
.cover-image:hover{
    background-size: 110%;
}

#to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

#to-top a {
  color: #f26222;
  font-size: 40px;
}

.main-header h1{
    text-decoration: underline;
    text-decoration-color: var(--color-orange);
    text-decoration-thickness: 10px;
    font-weight: 800;
}

.swiper-button-prev,
.swiper-button-next{
    background-color: rgba(0,0,0,0.6);
    color: var(--color-orange) !important;
}
.swiper-button-prev::after, 
.swiper-button-next::after{
    font-size: 28px !important;
}
.vp-filter__item{
    gap: 10px !important;
    margin: 2px 3px;
}
.archive-pagination {margin-top: 3rem;}
.archive-pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.vp-pagination__load-more, .vp-filter__item a, .archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;

    background: var(--color-black);
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;

    border-radius: 10px;
    border: 1px solid #222;

    transition: all 0.25s ease;
}
.vp-pagination__load-more:hover, .vp-filter__item a:hover, .archive-pagination .page-numbers:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color:  var(--color-black) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 122, 0, 0.35);
}
.vp-filter__item-active a, .archive-pagination .page-numbers.current {
    background: var(--color-orange);
    color:  var(--color-black);
    border-color: var(--color-orange);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.4);
    cursor: default;
}
.archive-pagination .prev,
.archive-pagination .next {
    padding: 0 18px;
    font-weight: 600;
}
.archive-pagination .dots {
    color: #666;
    padding: 0 6px;
}
.swiper-pagination-bullet {background: var(--color-orange) !important;}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    background: rgba(255,255,255,0.3);
    bottom: 0 !important;
}

.wp-block-file a{color: white !important;}
/*-------- Global Styles end --------*/


/*-----------------------------------*/
/*----- Front Page Styles Start -----*/
/*-----------------------------------*/

#front-products .single-front-product img {
    transition: transform 0.3s ease-in-out; /* Apply transition on normal state */
}

#front-products .single-front-product:hover img {
    transform: scale(1.1); /* Only scale on hover */
}

#values .value-image {
    max-width: 200px;
    margin: -50% auto 0;
}

.values-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    letter-spacing: 0.2em;
}


/*------ Front Page Styles end ------*/

/*-----------------------------------*/
/*------- Footer Styles Start -------*/
/*-----------------------------------*/

.footer-nav{list-style: none;}
#footer-section img{max-width: 100px;}
#footer-section ul{padding-left: 0;}
#footer-section li a{
    background: var(--color-black) !important;
    color: white !important;
}
#menu-footer-home li a{
    font-weight: bold;
}
#menu-social-menu{
    display: flex;
    flex-wrap: wrap;
}
#menu-social-menu svg{font-size: 30px;}
#menu-social-menu a{padding: 5px !important;}

#bottom-contact .contact-item{ margin-bottom: 10px;}
#bottom-contact .contact-text{
    font-size: inherit;
    color: white;
}
#bottom-contact .contact-item i{
    width: 30px;
    height: 30px;
}
/*-------- Footer Styles end --------*/

/*-----------------------------------*/
/*------- Header Styles Start -------*/
/*-----------------------------------*/
.navbar .navbar-brand{max-width: 300px;}

#menu-main-contact li a{
    color: var(--color-orange);
    text-decoration: none;
    margin: 10px;
    padding-bottom: 10px;
}
#menu-main-contact li a:hover{
    color: var(--color-dark-grey);
}
#menu-main-menu .sub-menu {
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 33px;
    z-index: 9;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    width: max-content;
    transition:
        opacity 0.3s ease,
        transform 0.35s ease;
}
#menu-main-menu .menu-item-has-children{position: relative;}
#menu-main-menu .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#footer-section li a, 
#menu-main-menu li a, 
#menu-main-menu .sub-menu li a{
    text-decoration: none;
    display: block;
    background: white;
    color: var(--color-dark-grey);
    padding: 5px 20px;
    font-weight: bold;
}
/* base link */
.footer-nav > li > a,
#menu-main-menu > li > a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.25s ease;
}

/* overlay */
.footer-nav > li > a::before,
#menu-main-menu > li > a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

/* entry/exit horizontal */
#menu-main-menu > li.in-left  > a::before  { transform-origin: left;  transform: scaleX(0); }
#menu-main-menu > li.in-right > a::before  { transform-origin: right; transform: scaleX(0); }
#menu-main-menu > li.out-left  > a::before { transform-origin: left;  transform: scaleX(0); }
#menu-main-menu > li.out-right > a::before { transform-origin: right; transform: scaleX(0); }

/* hovered */
#menu-main-menu > li.hovered > a::before { transform: scaleX(1); }
#menu-main-menu > li.hovered > a { color: var(--color-white); }

#menu-main-menu .sub-menu li > a {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.25s ease;
}

/* overlay */
#menu-main-menu .sub-menu li > a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--color-orange);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
    z-index: -1;
}

/* entry top/bottom */
.footer-nav li.in-top> a::before, #menu-main-menu .sub-menu li.in-top    > a::before { transform-origin: top;    transform: scaleY(0); }
.footer-nav li.in-bottom> a::before,#menu-main-menu .sub-menu li.in-bottom > a::before { transform-origin: bottom; transform: scaleY(0); }

/* exit top/bottom */
.footer-nav li.out-top> a::before, #menu-main-menu .sub-menu li.out-top    > a::before { transform-origin: top;    transform: scaleY(0); }
.footer-nav li.out-bottom> a::before, #menu-main-menu .sub-menu li.out-bottom > a::before { transform-origin: bottom; transform: scaleY(0); }

/* hovered */
.footer-nav li.hovered > a::before, #menu-main-menu .sub-menu li.hovered > a::before { transform: scaleY(1); }
.footer-navs li.hovered > a, #menu-main-menu .sub-menu li.hovered > a { color: var(--color-white); }

.offcanvas-body li a{
    color: var(--color-white);
    text-decoration: none;
    font-size: 18px;
    padding: 2px 6px;
    display: block;
    text-align: end;
    font-weight: bold;
}
.offcanvas-body .sub-menu li a{
    margin-right: 20px;
    font-size: 16px;
}
.offcanvas-body li a:hover{
    background: var(--color-white);
    color: var(--color-orange);
}
.offcanvas-body ul{
    list-style: none;
}
#mobileMenu{
    max-height: 100vh;
  overflow: scroll;
}
/*-------- Header Styles End --------*/

/*-----------------------------------*/
/*------- News Styles Start ---------*/
/*-----------------------------------*/

.news-swiper .swiper-slide{ height: 400px !important;}

.news-swiper .swiper-slide img{ 
   object-fit: cover !important;
    object-position: center !important;
}

/*-------- News Styles End ----------*/

/*-----------------------------------*/
/*------- Product Styles Start ------*/
/*-----------------------------------*/

/* .drawn-image {height: 15vh;} */
.drawn-image img{margin-bottom: -7vw;}
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath fill-rule='evenodd' d='M1.5 5.5l6 6 6-6-.7-.7L8 10.3 2.2 4.8l-.7.7z'/%3E%3C/svg%3E") !important;
}
.prod-content{padding-bottom: 20px !important;}
.prod-content h2{font-weight: bold;}

/* .product-right .drawn-image{bottom: -15vh;} */

#accordionInfo .accordion-item {border:none !important;}
#accordionInfo .accordion-item  button{
    background: no-repeat;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 4px;
    border: 0px;
    border-bottom: 2px solid;
}
#accordionInfo .accordion-body {
    padding: 10px 4px;
}
.cat-filter{
    border: 2px solid var(--color-orange);
    background: white;
    color: var(--color-orange);
    padding: 5px 10px;
}

.swiper{overflow-y: visible !important;}
.swiper .value-image{margin-top: -20%;}
.swiper-slide{
    height: auto !important;
    display: flex !important;
    overflow-y: visible !important;
}
/* .swiper .value-image img{max-width: 200px;} */
#product-cat-sider .values-swiper{margin-top: -30px;}
.carousel-item {
    min-height: 300px;
    height: 40vw;
    max-height: 550px;
    background-size: cover;
    background-position: center;
}
.backround-absolute{
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
/* .product-gallery-swiper img {
    width: 100%;
    height: auto;
    object-fit: cover;
} */
/* .product-gallery-swiper {
    min-height: 600px;
    max-height: 80vh;
} */

#related{min-height:7vw;}

/*-------- Product Styles End -------*/

/*-----------------------------------*/
/*------ About us Styles Start ------*/
/*-----------------------------------*/

/*------- About us Styles End -------*/

/*-----------------------------------*/
/*------ Contact Styles Start -------*/
/*-----------------------------------*/

.contact-top-image img{transform: rotatey(180deg);}


.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 14px;
    /* padding: 14px 18px; */
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.contact-item i{
    background: var(--color-orange);
    color: white;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}
.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 1.2rem;
    color: var(--bs-primary);
    /* min-width: 24px; */
}

.contact-text {
    color: #212529;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-text strong {
    font-weight: 600;
}

.map iframe{filter: grayscale();}

/*------- Contact Styles End --------*/


/*-----------------------------------*/
/*-------- Guides Styles Start ------*/
/*-----------------------------------*/

.guide-card {
    background: var(--color-black);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #222;
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
}
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,.45);
}
.guide-link {
    position: relative;
    display: block;
}
.guide-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.guide-card:hover img {
    transform: scale(1.05);
}
.guide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(2px);

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

    opacity: 0;
    transition: opacity .25s ease;
}
.guide-card:hover .guide-overlay {
    opacity: 1;
}
.download-btn {
    background: var(--color-orange);
    color: var(--color-black);
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease;
}
.guide-card:hover .download-btn {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(255,122,0,.45);
}

/*-------- Guides Styles End --------*/

/*-----------------------------------*/
/*--------- Galley Styles Start -----*/
/*-----------------------------------*/

/*--------- Gallery Styles End ------*/

/*-----------------------------------*/
/*-------- Page Styles Start --------*/
/*-----------------------------------*/
/* .video-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}
 */
#video-modal {
    display: none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

#video-modal iframe {
    width: 100%;
    height: 500px;
    max-height: 90vh;
}

.video-thumb .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    background: #FF0000;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    padding-left: 5px;
}

.video-thumb .play-btn::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
/*--------- Page Styles End ---------*/

/*-----------------------------------*/
/*------- Slider Styles Start -------*/
/*-----------------------------------*/

/*------- Slider Styles End ---------*/

/*-----------------------------------*/
/*-------- Form Styles Start --------*/
/*-----------------------------------*/

/*-------- Form Styles End ----------*/

/*-----------------------------------*/
/*----- Responsive Styles Start -----*/
/*-----------------------------------*/


@media only screen and (max-width: 991px){
	#values .value-image {
        max-width: 150px;
        margin: 0 auto;
    }
}

@media only screen and (max-width: 1200px){
    .backround-absolute{bottom: 0px;}
}

@media only screen and (max-width: 991px){
    .backround-absolute{bottom: 20vw;}
    .product-right .drawn-image{
        bottom: -5vh;
        position: relative !important;
    }
	
	.drawn-image {height: inherit !important;}
	.drawn-image img{position: relative !important;}
}

@media only screen and (max-width: 575px){
    .footer-col{
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-col img{padding-left: 0 !important;}
    #menu-social-menu, .footer-col .contact-item{justify-content: center;}
    #product-cat-sider .single-value {max-width: 420px;}
    #product-cat-sider .swiper-slide {justify-content: center;}
    
    .related-products .image-scale{
        align-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .archive-pagination .page-numbers {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

/*------ Responsive Styles End ------*/
