/*
Theme Name:  Hurricane Pivot Doors
Version:     1.0
Author:      Camilo Serrato
Text Domain: hurricane
*/

body {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
}

.title {
    font-family: "Montserrat", sans-serif;
}

.header {
    box-shadow: 0 3px 45px rgba(0, 0, 0, 0.15);
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
}

.phone-btn {
    color: black;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid black;
    text-align: center;
    padding: 10px 20px;
    transition: all 250ms ease-in-out;
}

.phone-btn:hover {
    color: blue;
    border-color: blue;
}

.home .page {
    padding-top: 75px;
}

body:not(.home) .page {
   padding-top: 79px;
}

.divider {
    width: 20%;
    height: 3px;
    margin: 20px auto 40px auto;
    background: linear-gradient(to right, #ff1053, #3452ff);
}

.overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.4);
}

.wrapper-page {
    z-index: 10;
    position: relative;
    /*box-shadow: rgb(0, 0, 0) 0px 70px 110px -30px;*/
    /*margin-bottom: 422px;*/
    background-color: white;
}

.banner-caption h1 {
    font-size: 50px;
}

.home-banner-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    z-index: 3;
    right: 0;
    left: 0;
    margin: auto;
}

.home-banner-carousel .owl-dots .owl-dot {
}

.home-banner-carousel .owl-dots .owl-dot span {
    width: 30px;
    border: 0;
    background-color: white !important;
}

.home-banner-carousel .owl-dots .owl-dot.active span {
    background-color: #ff1053 !important; 
}

.banner-caption p {
    font-size: 20px;
}

.banner-cta {
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    background-color: #ff1053;
}

.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
}

.testimonial-image {
    width: 60px;
}

.placeholder-image {
    height: 300px;
    background-color: #f4f3f3;
}

.placeholder-image img {
    width: 70px;
    height: auto;
}

.breadcrumb {
    margin: 0;
    padding: 20px;
    font-size: 13px;
    background-color: #f8f8f8;
}

.breadcrumb a {
    padding: 0 10px;
    background-color: #f8f8f8;
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb .breadcrumb_last {
    padding: 0 10px;
}

.collection-item {
    background-color: #f9f9f9;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 1px 1px 10px #e9e9e9;
    font-size: 13px;
    transition: all 250ms ease-in-out;
}

.collection-item .bx-wrapper {
	border: 0;
	box-shadow: none;
	margin-bottom: 0;
}

.collection-item .bx-wrapper .bx-controls-direction a {
    width: 20px;
    height: 20px;
	color: black;
    background-image: none;
    background-color: white;
    border-radius: 100%;
	text-align: center;
    vertical-align: middle;
    line-height: 21px;
	text-indent: unset;
    box-shadow: 0px 0px 3px -1px var(--bs-gray);
}

.collection-item .bx-wrapper .bx-prev {
	left: -10px;
}

.collection-item .bx-wrapper .bx-next {
	right: -10px;
}

.collection-item h3 {
    font-weight: 700;
    font-size: 18px;
}

.collection-item a {
    color: gray;
}

.collection-item:hover {
    background-color: #e9ecef;
}

.collection-item:hover a {

}

.collection-gallery-carousel .item img {
    transition: all 250ms ease-in-out; 
}

.collection-gallery-carousel .item:hover img {
    transform: scale(1.1);
}

.skeleton-image-placeholder {
    width: 100%;
    height: 300px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skeleton-image-placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%; /* Start off-screen to the left */
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%; /* Move across to the right */
    }
}

/* Header  */

.header .custom-logo-link {
    display: inline-block;
}

.header .custom-logo-link img {
    max-width: 350px;
    height: auto;
}

/* Main Menu  */

.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-menu ul li a { 
    color: black;
    display: block;
    border-bottom: 2px solid transparent;
    text-decoration: none;
    padding:10px 20px;
    transition: all 250ms ease-in-out;
}

.main-menu ul li a:hover,
.main-menu .current-menu-item a,
.main-menu .current-menu-parent a {
    border-bottom: 2px solid #3452ff;
}

.mobile-menu {
    height: 0;
    overflow: hidden;
    transition: all 250ms ease-in-out;
}

.mobile-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu.open {
    height: 246px;
}

.mobile-menu ul li {
    display: block;
    text-align: center;
}

.mobile-menu ul li a {
    color: black;
    display: block;
    padding: 10px;
    text-decoration: none;
    font-size: 14px;
}

/*  Home */

.banner-item {
    height: 600px;
    position: relative;
    background-size: 100%;
    background-position: center;
}

.category-card {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.category-card a {
    position: absolute;
}

.category-card .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.4);
}

.category-card .content {
    padding: 20px;
    box-sizing: content-box;
    aspect-ratio: 1 / 1;
    background-size: contain;
    background-position: center;
}

.category-card .content h2 {
    z-index: 2;
}

.bg-gray {
    background-color: #f2f2f2;
}

.highlight-card {
    border-radius: 10px;
    box-sizing: content-box;
    /*aspect-ratio: 1 / 1;*/
    background-color: white;
    transition: all 250ms ease-in-out;
}

.highlight-card:hover {
    color: white;
    background-color: blue;
    transform: translateY(-4px);
    box-shadow: 0 17px 25px rgba(0, 0, 0, .13);
}

.owl-dot span {
    width: 12px;
    height: 12px;
    background: black !important;
    border: 2px solid transparent;
    transition: all 250ms ease-in-out;
}

.owl-dot:hover span,
.owl-dot.active span {
    border: 2px solid black;
    background: transparent !important;
    width: 12px;
    height: 12px;
}

.owl-nav.disabled+.owl-dots {
    margin-top: 40px !important;
}

.padding-section {
    padding: 90px 0;
}

.quote {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.icon-default-style {
    font-size: 60px;
    margin-bottom: 30px;
    display: inline-block;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Pages */

.banner-page {
    height: 400px;
    background-size: cover !important; 
    background-position: center !important;
    background-attachment: fixed !important;
}


/* About us */


.banner-page h1 {
    font-size: 70px;
    font-weight: 600;
}

#map {
    height: 600px;
    width: 100%;
    border-radius: 10px;
}

/* FAQs  */

.accordion-item {
    border: 0;
}

.accordion-button.collapsed {
    border-top: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    border-right: 0;
    border-left: 0;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: transparent;
    box-shadow: none;
}

.accordion-collapse {
    transition: all 250ms ease-in-out;
}

.accordion-collapse.show {
    box-shadow: 0 30px 90px rgba(0,0,0,.14);
}

.accordion-button.collapsed {

}

.accordion-header .accordion-button {
    font-weight: 500;
    font-size: 20px;
    background-color: #fbfbfb;
    outline: 0;
}

/* Estilo para cuando está CERRADO */
.accordion-button[aria-expanded="true"] {

}

.accordion-button[aria-expanded="false"] {
  
}

/* Products */

.wrapper-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px; 
}

.product-card {
    border-radius: 0.25rem;
    background-color: white;
    box-shadow: 0 30px 90px rgba(0,0,0,.14);
}

.product-card figure {
    margin: 0;
    overflow: hidden;
    flex: 1;
}

.product-card figure img {
    transition: all 250ms ease-in-out;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
    flex: 2;
}

.product-image {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.products-inner-carousel .product-card {
    box-shadow: 1px 1px 5px rgba(0,0,0,.14);
}


/* Blog */

.category-wrapper {
    background-color: #f9f9f9;
}

.wrapper-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px; 
}

.post-card {
    border-radius: 0.25rem;
    background-color: white;
    box-shadow: 0 30px 90px rgba(0,0,0,.14);
}

.post-card figure {
    margin: 0;
    overflow: hidden;
}

.post-card figure img {
    transition: all 250ms ease-in-out;
}

.post-card:hover img {
    transform: scale(1.1);
}

.post-info {
    padding: 15px;
}

/* Contact Page */

.map-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative; 
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.full .block {
    width: 50%;
    aspect-ratio: 1/1;
}

.full .wrapper-form {
    padding: 40px;
}

.full .form-title {
    padding: 40px 40px 0 40px;
}

input[type="submit"] {
    all: unset;
    box-sizing: border-box;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: rgb(255, 16, 83);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    all: unset;
    box-sizing: border-box;
    background-color: #f0f0f0;
    padding: 10px;
    border: 0;
    border-radius: 5px;
    outline: 0;
    width: 100%;
    resize: none;
}

.wpcf7-not-valid {
    background-color: #ffd5d5 !important;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    display: block;
    padding: 5px 0;
    font-size: 13px;
    font-weight: normal;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: black;
    border: 0;
    margin: 0;
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 8px;
    background-color: #ffd5d5;
}

.page-template-page-quote .wrapper-form {
    border-radius: 10px;
    padding: 40px 0;
    box-shadow: 0 30px 90px rgba(0,0,0,.14);
}

/* Locations */

.title .city {
    display: inline-block;
    padding: 0 10px;
    transition: background-size .9s cubic-bezier(.15,.75,.4,1), opacity .25s ease;
    border-radius: 10px;
    background-image: linear-gradient(to right, #ff3030 0, #3552fe 100%);
    background-size: 100% 28%;
    background-repeat: no-repeat;
    background-position: left 90%;
}

.img-radius {
    border-radius: 10px;
    overflow: hidden;
}

.projects-by-city h2 span {
    color: #3951fb;
    font-weight: 800;
}

.benefit-item .number {
    width: 40px;
    height: 30px;
    border: 1px solid #dfdfdf;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
}

.project-location-item {
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
}

.project-location-gallery-carousel .owl-nav button {
    top: 0;
    width: 15px;
    height: 15px;
    bottom: 0;
    margin: auto !important;
    z-index: 3;
    position: absolute;
    background: #ffffff !important;
    border-radius: 100% !important;
    color: black !important;
    font-size: 20px !important;
    line-height: 10px !important;
    text-align: center;
}

.project-location-gallery-carousel .owl-nav .owl-prev {
    left: 5px;
}

.project-location-gallery-carousel .owl-nav .owl-next {
    right: 5px;
}

.locations-items {
    display: grid; 
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.location-item {
    overflow: hidden; 
    border-radius: 10px;
    transition: all 250ms ease-in-out;
}

.location-item a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    z-index: 5;
}

.location-item img {
    transition: all 250ms ease-in-out;
}

.location-item:hover {
    transform: scale(0.95);
}

.location-item:hover img {
    transform: scale(1.1);
}

.location-item .title-box {
    text-align: center;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 20px;
    transition: all 250ms ease-in-out;
}

.location-item .title-box h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 100;
}

.location-item .title-box h4 {
    font-size: 20px;
    font-weight: 100;
}

.locations-items .location-item figure {
    margin: 0;
}

/* Footer  */

.footer {
    padding: 60px 0 20px;
    /*position: fixed;*/
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    background-color: black;
}

.footer .custom-logo-link img {
    max-width: 100%;
    height: auto;
    filter: invert(1);
}

.footer-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu ul li {
    display: block;
}

.footer-menu ul li a {
    color: white;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 14px;
}

.footer .line {
    height: 1px;
    background: #282828;
    margin: 30px 0 0 0;
}

.footer h4 {
    color: #777777;
    font-size: 17px;
    font-weight: 800;
}

.footer h5 {
    color: #777777;
    font-size: 14px;
    font-weight: 400;
}

.footer .contact-data {
    font-size: 13px;
}

.footer .contact-data.last {
    margin-bottom: 20px;
}

.footer a {
    color: white;
    text-decoration: blink;
}

.footer .locations-list {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.footer .locations-list li {
    margin: 5px;
    flex-basis: calc(50% - 10px);
}

@media screen and (max-width: 600px) {
    .padding-section {
        padding: 50px 20px;
    }
    .full .block {
        width: 100%;
    }
    .wrapper-posts {
        grid-template-columns: repeat(1, 1fr);
    }
    .banner-page h1 {
        font-size: 35px;
    }
    .wrapper-products {
        grid-template-columns: repeat(1, 1fr);
    }
    .product-info,
    .product-card figure {
        flex: unset;
    }
    .product-card figure,
    .product-card figure img {
        width: 100%;
    }
} 